[Spice-devel] [linux-vdagent 2/4] build-sys: fix summary with yes/no info on --with-gtk
Victor Toso
victortoso at redhat.com
Tue Jun 5 09:29:13 UTC 2018
From: Victor Toso <me at victortoso.com>
Before this patch, the summary would have 'auto' instead of yes or no
for building with gtk.
Signed-off-by: Victor Toso <victortoso at redhat.com>
---
configure.ac | 7 ++++++-
1 file changed, 6 insertions(+), 1 deletion(-)
diff --git a/configure.ac b/configure.ac
index aa1751a..bac5219 100644
--- a/configure.ac
+++ b/configure.ac
@@ -82,9 +82,14 @@ AC_ARG_WITH([gtk],
[],
[with_gtk="auto"])
if test "x$with_gtk" != "xno"; then
+ with_gtk_enabled="yes"
PKG_CHECK_MODULES([GTK], [gtk+-3.0 >= 3.10],
[AC_DEFINE([WITH_GTK], [1], [If defined, vdagent will favor GTK+ over Xlib])],
- [AS_IF([test "x$with_gtk" = "xyes"], [AC_MSG_ERROR([GTK+ requested but not found])])])
+ [with_gtk_enabled="no"])
+ if test "$with_gtk" = "yes" && test "$with_gtk_enabled" = "no"; then
+ AC_MSG_ERROR([GTK+ requested but not found])
+ fi
+ with_gtk="$with_gtk_enabled"
fi
AC_ARG_ENABLE([pciaccess],
--
2.17.0
More information about the Spice-devel
mailing list