configure: avoid $VERSION

To reduce the risk of variable name conflicts, use CURLVERSION instead
of VERSION.
This commit is contained in:
Daniel Stenberg 2011-03-20 19:32:54 +01:00
parent e765afccb6
commit 0355e33b5f
1 changed files with 3 additions and 3 deletions

View File

@ -120,10 +120,10 @@ if test -f ${srcdir}/include/curl/curlbuild.h; then
fi fi
dnl figure out the libcurl version dnl figure out the libcurl version
VERSION=`$SED -ne 's/^#define LIBCURL_VERSION "\(.*\)"/\1/p' ${srcdir}/include/curl/curlver.h` CURLVERSION=`$SED -ne 's/^#define LIBCURL_VERSION "\(.*\)"/\1/p' ${srcdir}/include/curl/curlver.h`
AM_INIT_AUTOMAKE AM_INIT_AUTOMAKE
AC_MSG_CHECKING([curl version]) AC_MSG_CHECKING([curl version])
AC_MSG_RESULT($VERSION) AC_MSG_RESULT($CURLVERSION)
dnl dnl
dnl we extract the numerical version for curl-config only dnl we extract the numerical version for curl-config only
@ -3066,7 +3066,7 @@ CURL_GENERATE_CONFIGUREHELP_PM
AC_MSG_NOTICE([Configured to build curl/libcurl: AC_MSG_NOTICE([Configured to build curl/libcurl:
curl version: ${VERSION} curl version: ${CURLVERSION}
Host setup: ${host} Host setup: ${host}
Install prefix: ${prefix} Install prefix: ${prefix}
Compiler: ${CC} Compiler: ${CC}