diff options
author | David I. Lehn <dlehn@users.sourceforge.net> | 2002-07-05 07:26:18 +0000 |
---|---|---|
committer | David I. Lehn <dlehn@users.sourceforge.net> | 2002-07-05 07:26:18 +0000 |
commit | 51a210d286885cc5acdb482aa18752dbdba4455a (patch) | |
tree | 4d62835229abe0a03cb346817080803fa3d0851b | |
parent | c6bd62c43f01b2012d81dfa61dd58777c41de07a (diff) |
update m4 (from HEAD)RELEASE-0_4_0-DESPERATELYSEEKINGSEXINESSBRANCH-RELEASE-0_4_0
Original commit message from CVS:
update m4 (from HEAD)
-rw-r--r-- | m4/pkg.m4 | 9 |
1 files changed, 5 insertions, 4 deletions
@@ -15,10 +15,8 @@ AC_DEFUN(PKG_CHECK_MODULES, [ echo "*** to the full path to pkg-config." echo "*** Or see http://www.freedesktop.org/software/pkgconfig to get pkg-config." else - if ! $PKG_CONFIG --atleast-pkgconfig-version 0.7.0; then - echo "*** Your version of pkg-config is too old. You need version 0.7.0 or newer." - echo "*** See http://www.freedesktop.org/software/pkgconfig" - else + PKG_CONFIG_MIN_VERSION=0.9.0 + if $PKG_CONFIG --atleast-pkgconfig-version $PKG_CONFIG_MIN_VERSION; then AC_MSG_CHECKING(for $2) if $PKG_CONFIG --exists "$2" ; then @@ -43,6 +41,9 @@ AC_DEFUN(PKG_CHECK_MODULES, [ AC_SUBST($1_CFLAGS) AC_SUBST($1_LIBS) + else + echo "*** Your version of pkg-config is too old. You need version $PKG_CONFIG_MIN_VERSION or newer." + echo "*** See http://www.freedesktop.org/software/pkgconfig" fi fi |