From facffb7ea3e03d131a79486b80d4efc58c303b87 Mon Sep 17 00:00:00 2001 From: Behdad Esfahbod Date: Tue, 28 Nov 2006 19:41:52 -0500 Subject: [PATCH] [configure] Remove the pkg-config minimum version requirement It was added in commit 157663e1fdf120a71c6cc8222b88d2915a5a73eb because there was a serious bug in the pkg.m4 file from pkg-config 0.18. However, it was fixed two days later. So, instead of requireing 0.18.1 or greater which is not available on Nokia 770 SDK, we just ignore the broken pkg-config 0.18. The problem only happens if one runs autogen.sh with against a broken pkg-config. Configuring tarballs is not affected. --- configure.in | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/configure.in b/configure.in index a825b98a9..ea1de980c 100644 --- a/configure.in +++ b/configure.in @@ -90,8 +90,7 @@ AC_CHECK_LIB(z, compress, dnl =========================================================================== -PKGCONFIG_REQUIRED=0.19 -PKG_PROG_PKG_CONFIG($PKGCONFIG_REQUIRED) +PKG_PROG_PKG_CONFIG() if test "x$PKG_CONFIG" = x; then AC_MSG_ERROR([pkg-config >= $PKGCONFIG_REQUIRED required but not found (http://pkgconfig.freedesktop.org/)]) fi