summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-rw-r--r--Makefile.am6
-rw-r--r--configure.ac8
2 files changed, 13 insertions, 1 deletions
diff --git a/Makefile.am b/Makefile.am
index d90357fc..853ffea5 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -1,4 +1,8 @@
-SUBDIRS = common server client python_modules
+SUBDIRS = common server python_modules
+
+if SUPPORT_CLIENT
+SUBDIRS += client
+endif
pkgconfigdir = $(libdir)/pkgconfig
pkgconfig_DATA = spice-server.pc
diff --git a/configure.ac b/configure.ac
index c5f35348..a972470a 100644
--- a/configure.ac
+++ b/configure.ac
@@ -123,6 +123,12 @@ if test "x$enable_smartcard" = "xyes"; then
AC_DEFINE(USE_SMARTCARD, [1], [Define if supporting smartcard proxying])
fi
+AC_ARG_ENABLE(client,
+[ --enable-client Enable spice client],,
+[enable_client="yes"])
+AS_IF([test x"$enable_client" != "xno"], [enable_client="yes"])
+AM_CONDITIONAL(SUPPORT_CLIENT, test "x$enable_client" = "xyes")
+
dnl =========================================================================
dnl Check deps
@@ -517,6 +523,8 @@ echo "
c compiler: ${CC}
c++ compiler: ${CXX}
+ Build Spice client: ${enable_client}
+
Have XRANDR 1.2: ${have_xrandr12}
Support tunneling: ${enable_tunnel}