From 157a0cf9364a9e60b29e5e88ca1783d9e174a635 Mon Sep 17 00:00:00 2001 From: Emmanuele Bassi Date: Mon, 1 Feb 2010 14:48:50 +0000 Subject: [PATCH] build: Retrieve X11 cflags and libraries When using pkg-config to check for the x11 package compiler flags and libraries we actually need to retrieve those values from the pc file. This should also fix the issue with non-canonical installations of the X11 headers and shared objects. http://bugzilla.openedhand.com/show_bug.cgi?id=1966 --- configure.ac | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/configure.ac b/configure.ac index 359532acd..7ad5be0e6 100644 --- a/configure.ac +++ b/configure.ac @@ -459,6 +459,11 @@ AS_IF([test "x$CLUTTER_WINSYS" = "xglx" || test "x$CLUTTER_WINSYS" = "xeglx"], AS_IF([test "x$have_x11" = "xyes"], [ X11_PC_FILES="x11" + + # we actually need to ask for CFLAGS and LIBS + X11_CFLAGS=`$PKG_CONFIG --cflags $X11_PC_FILES` + X11_LIBS=`$PKG_CONFIG --libs $X11_PC_FILES` + AC_MSG_RESULT([found]) ], [