[vlc-devel] [RFC][PATCH] chromaprint: conditionally build the ffmpeg/libav target
Sean McGovern
gseanmcg at gmail.com
Fri Feb 20 01:21:12 CET 2015
Previously, this would forcibly build the ffmpeg contrib,
even if there was a locally installed version.
---
This is actually only half of the fix for this issue -- I need help from
someone who understands cmake enough to explain why it can not find
a system-installed libavcodec.
I tried on both my Solaris 11 box and a 64-bit Ubuntu Trusty VM.
Both of these machines have libav 9.16 currently installed.
I think it's something to do with contrib/<config>/toolchain.cmake, but
I'm not well versed enough with cmake to say why.
---
contrib/src/chromaprint/rules.mak | 4 +++-
1 file changed, 3 insertions(+), 1 deletion(-)
diff --git a/contrib/src/chromaprint/rules.mak b/contrib/src/chromaprint/rules.mak
index dcccd28..66d0d9f 100644
--- a/contrib/src/chromaprint/rules.mak
+++ b/contrib/src/chromaprint/rules.mak
@@ -20,9 +20,11 @@ chromaprint: chromaprint-$(CHROMAPRINT_VERSION).tar.gz .sum-chromaprint
$(APPLY) $(SRC)/chromaprint/osxpkgconfig.patch
$(MOVE)
+ifneq ($(call need_pkg,"libavcodec libavutil"),)
DEPS_chromaprint = ffmpeg $(DEPS_ffmpeg)
+endif
-.chromaprint: chromaprint .ffmpeg toolchain.cmake
+.chromaprint: chromaprint toolchain.cmake
cd $< && $(HOSTVARS_PIC) $(CMAKE) -DBUILD_SHARED_LIBS:BOOL=OFF
cd $< && $(MAKE) install
touch $@
--
1.7.9.2
More information about the vlc-devel
mailing list