update configure script with new curl version test

git-svn-id: https://origsvn.digium.com/svn/asterisk/trunk@37680 65c4cc65-6c06-0410-ace0-fbb531ad65f3
This commit is contained in:
Kevin P. Fleming
2006-07-15 21:41:40 +00:00
parent d99e7d4f8e
commit 9947a0591e

20
configure vendored
View File

@@ -1,5 +1,5 @@
#! /bin/sh #! /bin/sh
# From configure.ac Revision: 37284 . # From configure.ac Revision: 37678 .
# Guess values for system-dependent variables and create Makefiles. # Guess values for system-dependent variables and create Makefiles.
# Generated by GNU Autoconf 2.60. # Generated by GNU Autoconf 2.60.
# #
@@ -27468,13 +27468,27 @@ fi
if test ! x"${CURL}" = xNo; then if test ! x"${CURL}" = xNo; then
# check for version # check for version
CURLLIB=$(${CURL} --libs) if test $PBX_OSTYPE = "SunOS"; then
PBX_CURL=1 if [ 0x`curl-config --vernum` -ge 0x70907 ]; then
CURLLIB=$(${CURL} --libs)
PBX_CURL=1
cat >>confdefs.h <<\_ACEOF cat >>confdefs.h <<\_ACEOF
#define HAVE_CURL 1 #define HAVE_CURL 1
_ACEOF _ACEOF
fi
else
if [[ 0x`curl-config --vernum` -ge 0x70907 ]]; then
CURLLIB=$(${CURL} --libs)
PBX_CURL=1
cat >>confdefs.h <<\_ACEOF
#define HAVE_CURL 1
_ACEOF
fi
fi
fi fi