tests/check/Makefile.am: Don't try to run annodex unit tests if the annodex plugin has not been built (Fixes #351116).

Original commit message from CVS:
* tests/check/Makefile.am:
Don't try to run annodex unit tests if the annodex
plugin has not been built (Fixes #351116).
This commit is contained in:
Tim-Philipp Müller 2006-08-16 12:02:48 +00:00
parent 835264e18d
commit e501141c75
2 changed files with 15 additions and 2 deletions

View file

@ -1,3 +1,9 @@
2006-08-16 Tim-Philipp Müller <tim at centricular dot net>
* tests/check/Makefile.am:
Don't try to run annodex unit tests if the annodex
plugin has not been built (Fixes #351116).
2006-08-16 Tim-Philipp Müller <tim at centricular dot net>
* gst/autodetect/gstautoaudiosink.c:

View file

@ -15,6 +15,14 @@ CLEANFILES = core.* test-registry.xml
clean-local: clean-local-check
if USE_ANNODEX
check_annodex = \
elements/cmmldec \
elements/cmmlenc
else
check_annodex =
endif
if USE_TAGLIB
check_taglib = \
elements/id3v2mux \
@ -24,11 +32,10 @@ check_taglib =
endif
check_PROGRAMS = \
$(check_annodex) \
elements/avimux \
elements/level \
elements/matroskamux \
elements/cmmldec \
elements/cmmlenc \
elements/icydemux \
$(check_taglib)