tests/icles/Makefile.am: don't build the tests if we don't have the libs

Original commit message from CVS:

* tests/icles/Makefile.am:
don't build the tests if we don't have the libs
This commit is contained in:
Thomas Vander Stichele 2006-01-10 23:58:36 +00:00
parent feecf1b666
commit cd28c9672b
2 changed files with 13 additions and 1 deletions

View file

@ -1,3 +1,8 @@
2006-01-11 Thomas Vander Stichele <thomas at apestaart dot org>
* tests/icles/Makefile.am:
don't build the tests if we don't have the libs
2006-01-10 Tim-Philipp Müller <tim at centricular dot net>
* ext/cdparanoia/gstcdparanoiasrc.c: (gst_cd_paranoia_src_close),

View file

@ -1,7 +1,14 @@
noinst_PROGRAMS = stress-xoverlay
if USE_X
X_TESTS = stress-xoverlay
stress_xoverlay_SOURCES = stress-xoverlay.c
stress_xoverlay_CFLAGS = $(GST_CFLAGS) $(X_CFLAGS)
stress_xoverlay_LDFLAGS = $(GST_LIBS) $(X_LIBS)
stress_xoverlay_LDADD = \
$(top_builddir)/gst-libs/gst/interfaces/libgstinterfaces-$(GST_MAJORMINOR).la
else
X_TESTS =
endif
noinst_PROGRAMS = $(X_TESTS)