Commit aab5d679 authored by Gustavo Zacarias's avatar Gustavo Zacarias Committed by Peter Korsgaard
Browse files

minidlna: fix build failure

With the 1.0.26 version bump a new routine was added to find newer
versions of ffmpeg and/or libav on different include paths.
Unfortunately this uses absolute pathnames hence when there's no
matching ffmpeg/libav headers on the host it fails to build. Fixes:
http://autobuild.buildroot.net/results/20a/20a1b3a9f040d2207b6c533a158e9747054ddd2d/



Signed-off-by: default avatarGustavo Zacarias <gustavo@zacarias.com.ar>
Signed-off-by: default avatarPeter Korsgaard <peter@korsgaard.com>
parent a2bdef65
Loading
Loading
Loading
Loading
+5 −0
Original line number Diff line number Diff line
@@ -35,10 +35,15 @@ endif

MINIDLNA_MAKE_OPTS += LIBS='$(MINIDLNA_COMMON_LIBS)'

# genconfig.sh uses absolute paths to find libav, so help it out
define MINIDLNA_BUILD_CMDS
	PREFIX=$(STAGING_DIR)/usr \
		$(TARGET_MAKE_ENV) $(MAKE) $(TARGET_CONFIGURE_OPTS) \
		CFLAGS="$(MINIDLNA_CFLAGS)" -C $(@D) depend
	$(SED) '/HAVE_LIBAV/d' $(@D)/config.h
	echo "#define HAVE_LIBAVUTIL_AVUTIL_H 1" >>$(@D)/config.h
	echo "#define HAVE_LIBAVFORMAT_AVFORMAT_H 1" >>$(@D)/config.h
	echo "#define HAVE_LIBAVCODEC_AVCODEC_H 1" >>$(@D)/config.h
	$(TARGET_MAKE_ENV) $(MAKE) $(TARGET_CONFIGURE_OPTS) \
		CFLAGS="$(MINIDLNA_CFLAGS)" $(MINIDLNA_MAKE_OPTS) -C $(@D) all
endef