[Spice-devel] [PATCH v2 2/2] autotools: compile gst-test only if gstreamer is available
Snir Sheriber
ssheribe at redhat.com
Wed Jan 18 13:29:46 UTC 2017
Needed in order to avoid compilation error when gstreamer is
unavailable
---
server/tests/Makefile.am | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/server/tests/Makefile.am b/server/tests/Makefile.am
index f696f9f..af0bd20 100644
--- a/server/tests/Makefile.am
+++ b/server/tests/Makefile.am
@@ -59,10 +59,13 @@ noinst_PROGRAMS = \
test-vdagent \
test-display-width-stride \
spice-server-replay \
- test-gst \
$(check_PROGRAMS) \
$(NULL)
+if HAVE_GSTREAMER
+noinst_PROGRAMS += test-gst
+endif
+
TESTS = $(check_PROGRAMS) \
$(NULL)
@@ -109,6 +112,7 @@ libtest_stat4_a_CPPFLAGS = $(AM_CPPFLAGS) -DTEST_COMPRESS_STAT=1 -DTEST_RED_WORK
test_qxl_parsing_LDADD = ../libserver.la $(LDADD)
+if HAVE_GSTREAMER
test_gst_SOURCES = test-gst.c \
$(NULL)
test_gst_CPPFLAGS = \
@@ -116,3 +120,4 @@ test_gst_CPPFLAGS = \
$(GSTREAMER_0_10_CFLAGS) \
$(GSTREAMER_1_0_CFLAGS) \
$(NULL)
+endif
--
2.9.3
More information about the Spice-devel
mailing list