mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-04-03 06:39:51 +00:00
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:
parent
835264e18d
commit
e501141c75
2 changed files with 15 additions and 2 deletions
|
@ -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:
|
||||
|
|
|
@ -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)
|
||||
|
||||
|
|
Loading…
Reference in a new issue