[Spice-commits] configure.ac

GitLab Mirror gitlab-mirror at kemper.freedesktop.org
Wed May 8 07:29:22 UTC 2019


 configure.ac |    2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)

New commits:
commit 47ad2179f084092e67abef04e4b5d919b693269c
Author: Frediano Ziglio <fziglio at redhat.com>
Date:   Tue May 7 14:49:07 2019 +0100

    build: Fix M4 macros quoting
    
    The PKG_CHECK_MODULES macro were not expanded correctly causing
    the gio-unix module not to be detected and these warnings:
    
    ../configure: line 15133: GIO_UNIX_CFLAGS: command not found
    ../configure: line 15134: C: command not found
    ../configure: line 15135: GIO_UNIX_LIBS: command not found
    ../configure: line 15136: linker: command not found
    
    Signed-off-by: Frediano Ziglio <fziglio at redhat.com>
    Acked-by: Victor Toso <victortoso at redhat.com>

diff --git a/configure.ac b/configure.ac
index 8bcb22ce..e12d7e85 100644
--- a/configure.ac
+++ b/configure.ac
@@ -194,7 +194,7 @@ AS_VAR_APPEND([SPICE_REQUIRES], [" gobject-2.0 >= $GLIB2_REQUIRED"])
 
 #used only by tests
 AS_IF([test "x$os_win32" != "xyes"],
-      PKG_CHECK_MODULES([GIO_UNIX], [gio-unix-2.0 >= $GLIB2_REQUIRED]))
+      [PKG_CHECK_MODULES([GIO_UNIX], [gio-unix-2.0 >= $GLIB2_REQUIRED])])
 
 PIXMAN_REQUIRED=0.17.7
 PKG_CHECK_MODULES(PIXMAN, pixman-1 >= $PIXMAN_REQUIRED)


More information about the Spice-commits mailing list