From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from eggs.gnu.org ([2001:4830:134:3::10]:47727) by lists.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WAB7O-0006Za-U0 for qemu-devel@nongnu.org; Sun, 02 Feb 2014 23:26:53 -0500 Received: from Debian-exim by eggs.gnu.org with spam-scanned (Exim 4.71) (envelope-from ) id 1WAB7I-0007rn-CA for qemu-devel@nongnu.org; Sun, 02 Feb 2014 23:26:46 -0500 Received: from nskntmtas02p.mx.bigpond.com ([61.9.168.140]:29347) by eggs.gnu.org with esmtp (Exim 4.71) (envelope-from ) id 1WAB7H-0007rK-Vh for qemu-devel@nongnu.org; Sun, 02 Feb 2014 23:26:40 -0500 From: Chris Johns Date: Mon, 3 Feb 2014 15:26:15 +1100 Message-Id: <1391401575-52256-1-git-send-email-chrisj@rtems.org> Subject: [Qemu-devel] [PATCH] configure: use glib in glib pkg-config check. List-Id: List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Chris Johns Building against with a recent glib in a custom prefix fails because the gthread cflags in the pkg-config file do not have the correct path while the glib pc file does. Signed-off-by: Chris Johns --- configure | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/configure b/configure index b472694..12f730f 100755 --- a/configure +++ b/configure @@ -2343,9 +2343,9 @@ if test "$mingw32" = yes; then else glib_req_ver=2.12 fi -if $pkg_config --atleast-version=$glib_req_ver gthread-2.0; then - glib_cflags=`$pkg_config --cflags gthread-2.0` - glib_libs=`$pkg_config --libs gthread-2.0` +if $pkg_config --atleast-version=$glib_req_ver glib-2.0; then + glib_cflags=`$pkg_config --cflags glib-2.0` + glib_libs=`$pkg_config --libs glib-2.0` LIBS="$glib_libs $LIBS" libs_qga="$glib_libs $libs_qga" else -- 1.8.3.4 (Apple Git-47)