From: Joachim Bauch Date: Sat, 4 Mar 2023 16:01:58 +0000 (+0000) Subject: Disable building of some internal tools that no longer link X-Git-Tag: archive/raspbian/1.0.11-0+deb10u4+rpi1^2~4 X-Git-Url: https://dgit.raspbian.org/?a=commitdiff_plain;h=3b04fd969edfbd0424e642b3cf25bf83c75384a8;p=libde265.git Disable building of some internal tools that no longer link because internal symbols are no longer exported. Gbp-Pq: Name disable_tools.patch --- diff --git a/Makefile.am b/Makefile.am index b4098f8..0d66934 100644 --- a/Makefile.am +++ b/Makefile.am @@ -8,13 +8,6 @@ if ENABLE_DEC265 SUBDIRS+=dec265 endif -if ENABLE_ENCODER -SUBDIRS+=enc265 -endif - -SUBDIRS+=tools -SUBDIRS+=acceleration-speed - if ENABLE_SHERLOCK265 SUBDIRS+=sherlock265 endif diff --git a/dec265/Makefile.am b/dec265/Makefile.am index a8198ed..9de463d 100644 --- a/dec265/Makefile.am +++ b/dec265/Makefile.am @@ -1,5 +1,5 @@ -bin_PROGRAMS = dec265 hdrcopy +bin_PROGRAMS = dec265 AM_CPPFLAGS = -I$(top_srcdir)/libde265 -I$(top_srcdir) @@ -9,12 +9,6 @@ dec265_LDFLAGS = dec265_LDADD = ../libde265/libde265.la -lstdc++ dec265_SOURCES = dec265.cc -hdrcopy_DEPENDENCIES = ../libde265/libde265.la -hdrcopy_CXXFLAGS = -hdrcopy_LDFLAGS = -hdrcopy_LDADD = ../libde265/libde265.la -lstdc++ -hdrcopy_SOURCES = hdrcopy.cc - if HAVE_VIDEOGFX dec265_CXXFLAGS += $(VIDEOGFX_CFLAGS) dec265_LDFLAGS += $(VIDEOGFX_LIBS)