r15693 - gnucash/trunk/macros - Fix autogen.sh warning about PKG_CONFIG_MIN_VERSION.

Andreas Köhler andi5 at cvs.gnucash.org
Thu Mar 8 17:42:23 EST 2007


Author: andi5
Date: 2007-03-08 17:42:23 -0500 (Thu, 08 Mar 2007)
New Revision: 15693
Trac: http://svn.gnucash.org/trac/changeset/15693

Modified:
   gnucash/trunk/macros/pkg.m4
Log:
Fix autogen.sh warning about PKG_CONFIG_MIN_VERSION.

Lower-case that word in macros/pkg.m4 to avoid the need to run
autogen.sh twice.


Modified: gnucash/trunk/macros/pkg.m4
===================================================================
--- gnucash/trunk/macros/pkg.m4	2007-03-08 21:41:12 UTC (rev 15692)
+++ gnucash/trunk/macros/pkg.m4	2007-03-08 22:42:23 UTC (rev 15693)
@@ -20,8 +20,8 @@
      echo "*** to the full path to pkg-config."
      echo "*** Or see http://www.freedesktop.org/software/pkgconfig to get pkg-config."
   else
-     PKG_CONFIG_MIN_VERSION=0.9.0
-     if $PKG_CONFIG --atleast-pkgconfig-version $PKG_CONFIG_MIN_VERSION; then
+     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 --silence-errors --exists "$2" ; then
@@ -47,7 +47,7 @@
         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 "*** 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



More information about the gnucash-changes mailing list