diff --git a/ChangeLog b/ChangeLog index 9a842a7cd..39699a73c 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +2001-08-02 Jason Leach + + * configure.in: Give a better URL for pkgconfig. + 2001-07-30 Bradford Hovinen * RELEASE : 1.5.4 diff --git a/configure.in b/configure.in index ac47e07f6..35b075bfc 100644 --- a/configure.in +++ b/configure.in @@ -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}'`