mirror of
https://gitlab.freedesktop.org/gstreamer/gstreamer.git
synced 2025-06-07 07:58:51 +00:00
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:
parent
feecf1b666
commit
cd28c9672b
2 changed files with 13 additions and 1 deletions
|
@ -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>
|
2006-01-10 Tim-Philipp Müller <tim at centricular dot net>
|
||||||
|
|
||||||
* ext/cdparanoia/gstcdparanoiasrc.c: (gst_cd_paranoia_src_close),
|
* ext/cdparanoia/gstcdparanoiasrc.c: (gst_cd_paranoia_src_close),
|
||||||
|
|
|
@ -1,7 +1,14 @@
|
||||||
noinst_PROGRAMS = stress-xoverlay
|
if USE_X
|
||||||
|
X_TESTS = stress-xoverlay
|
||||||
|
|
||||||
stress_xoverlay_SOURCES = stress-xoverlay.c
|
stress_xoverlay_SOURCES = stress-xoverlay.c
|
||||||
stress_xoverlay_CFLAGS = $(GST_CFLAGS) $(X_CFLAGS)
|
stress_xoverlay_CFLAGS = $(GST_CFLAGS) $(X_CFLAGS)
|
||||||
stress_xoverlay_LDFLAGS = $(GST_LIBS) $(X_LIBS)
|
stress_xoverlay_LDFLAGS = $(GST_LIBS) $(X_LIBS)
|
||||||
stress_xoverlay_LDADD = \
|
stress_xoverlay_LDADD = \
|
||||||
$(top_builddir)/gst-libs/gst/interfaces/libgstinterfaces-$(GST_MAJORMINOR).la
|
$(top_builddir)/gst-libs/gst/interfaces/libgstinterfaces-$(GST_MAJORMINOR).la
|
||||||
|
else
|
||||||
|
X_TESTS =
|
||||||
|
endif
|
||||||
|
|
||||||
|
noinst_PROGRAMS = $(X_TESTS)
|
||||||
|
|
||||||
|
|
Loading…
Reference in a new issue