Give a better URL for pkgconfig.

2001-08-02  Jason Leach  <jleach@ximian.com>

	* configure.in: Give a better URL for pkgconfig.
This commit is contained in:
Jason Leach 2001-08-02 15:23:17 +00:00 committed by Jacob Leach
parent 412f0953c9
commit b06b8131b5
2 changed files with 5 additions and 1 deletions

View file

@ -1,3 +1,7 @@
2001-08-02 Jason Leach <jleach@ximian.com>
* configure.in: Give a better URL for pkgconfig.
2001-07-30 Bradford Hovinen <hovinen@ximian.com>
* RELEASE : 1.5.4

View file

@ -76,7 +76,7 @@ dnl Check for pkg-config
dnl ==============================================
AC_PATH_PROG(PKGCONFIG, pkg-config, no)
if test "$PKGCONFIG" = no ; then
AC_MSG_ERROR(pkg-config was not found. Please install version 0.8.0 or newer from http://www.freedesktop.org/software.)
AC_MSG_ERROR(pkg-config was not found. Please install version 0.8.0 or newer from http://www.freedesktop.org/software/pkgconfig.)
fi
AC_MSG_CHECKING(for pkg-config >= 0.8.0)
vers=`$PKGCONFIG --version | awk 'BEGIN { FS = "."; } { print $1 * 1000000 + $2 * 1000 + $3}'`