From: Tim-Philipp Müller Date: Mon, 3 Apr 2006 11:08:44 +0000 (+0000) Subject: tests/check/Makefile.am: Only run the id3v2mux check if taglib is available and the... X-Git-Tag: 1.19.3~507^2~21631 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=9c10d61e50fa75852ea5fb80e3bad0b7a9d8a4de;p=platform%2Fupstream%2Fgstreamer.git tests/check/Makefile.am: Only run the id3v2mux check if taglib is available and the taglib plugin has been built. Original commit message from CVS: * tests/check/Makefile.am: Only run the id3v2mux check if taglib is available and the taglib plugin has been built. --- diff --git a/ChangeLog b/ChangeLog index f48906c..81b08e2 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,11 @@ 2006-04-03 Tim-Philipp Müller + * tests/check/Makefile.am: + Only run the id3v2mux check if taglib is available and + the taglib plugin has been built. + +2006-04-03 Tim-Philipp Müller + * ext/swfdec/Makefile.am: Don't set plugindir. diff --git a/tests/check/Makefile.am b/tests/check/Makefile.am index d363750..ba7b0de 100644 --- a/tests/check/Makefile.am +++ b/tests/check/Makefile.am @@ -26,8 +26,15 @@ SUPPRESSIONS = $(top_srcdir)/common/gst.supp clean-local: clean-local-check -check_PROGRAMS = \ - elements/tagid3v2mux + +if USE_TAGLIB +check_taglib = elements/tagid3v2mux +else +check_taglib = +endif + +check_PROGRAMS = $(check_taglib) + TESTS = $(check_PROGRAMS) AM_CFLAGS = $(GST_OBJ_CFLAGS) $(GST_CHECK_CFLAGS) $(CHECK_CFLAGS)