Commit 822b3f0b authored by Peter Korsgaard's avatar Peter Korsgaard
Browse files

minidlna: fix static linking



The configure script / Makefile forgets to link with some of the dependent
libraries breaking static linking, so help it along.

Signed-off-by: default avatarPeter Korsgaard <peter@korsgaard.com>
parent 40ce4212
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -4,8 +4,6 @@ config BR2_PACKAGE_MINIDLNA
	depends on BR2_INET_IPV6 # ffmpeg
	depends on BR2_USE_MMU # fork
	depends on BR2_TOOLCHAIN_HAS_THREADS
	# static build is broken w.r.t libgcc_s
	depends on !BR2_PREFER_STATIC_LIB
	select BR2_PACKAGE_FFMPEG
	select BR2_PACKAGE_FLAC
	select BR2_PACKAGE_LIBVORBIS # selects libogg
+7 −1
Original line number Diff line number Diff line
@@ -13,8 +13,14 @@ MINIDLNA_DEPENDENCIES = \
	ffmpeg flac libvorbis libogg libid3tag libexif libjpeg sqlite \
	host-xutil_makedepend

# static build is broken w.r.t libgcc_s
ifeq ($(BR2_PREFER_STATIC_LIB),y)
# the configure script / Makefile forgets to link with some of the dependent
# libraries breaking static linking, so help it along
MINIDLNA_CONF_ENV = \
	LIBS='-lavformat -lavcodec -lavutil -logg -lz -lpthread -lm'
else
MINIDLNA_CONF_OPT = \
	--disable-static
endif

$(eval $(autotools-package))