[Spice-devel] [PATCH 2/3] autotools: compile gst-test only if gstreamer is available

Snir Sheriber ssheribe at redhat.com
Sun Jan 15 16:12:21 UTC 2017


Needed in order to avoid compilation error when gstreamer is
unavailable
---
 server/tests/Makefile.am | 8 +++++++-
 1 file changed, 7 insertions(+), 1 deletion(-)

diff --git a/server/tests/Makefile.am b/server/tests/Makefile.am
index f696f9f..55ace5b 100644
--- a/server/tests/Makefile.am
+++ b/server/tests/Makefile.am
@@ -47,6 +47,10 @@ check_PROGRAMS =				\
 	test-stat-file				\
 	$(NULL)
 
+if HAVE_GSTREAMER
+TEST_GST=test-gst
+endif
+
 noinst_PROGRAMS =				\
 	test-display-no-ssl			\
 	test-display-streaming			\
@@ -59,7 +63,7 @@ noinst_PROGRAMS =				\
 	test-vdagent				\
 	test-display-width-stride		\
 	spice-server-replay			\
-	test-gst				\
+	$(TEST_GST)				\
 	$(check_PROGRAMS)			\
 	$(NULL)
 
@@ -109,6 +113,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 +121,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