From 1a5dab8037c33f0188df86ab56eeab09c0c5a5ef Mon Sep 17 00:00:00 2001 From: osmiy Date: Tue, 3 Apr 2007 13:18:32 +0000 Subject: - fixed support of 'curl' library (Eugene) - added suport of 'automake' v1.6 (Eugene) - fixed oracle support (Eugene) - added support of MySQL v3.23 (Eugene) - fixed 'gen.pl' for UTF8 (Eugene) - more minor fixes git-svn-id: svn://svn.zabbix.com/trunk@3971 97f52cf1-0a1b-0410-bd0e-c28be96e8082 --- m4/libcurl.m4 | 4 ++++ 1 file changed, 4 insertions(+) (limited to 'm4/libcurl.m4') diff --git a/m4/libcurl.m4 b/m4/libcurl.m4 index 2043a848..a53a07e7 100644 --- a/m4/libcurl.m4 +++ b/m4/libcurl.m4 @@ -61,10 +61,13 @@ AC_DEFUN([LIBCURL_CHECK_CONFIG], AC_HELP_STRING([--with-libcurl@<:@=DIR@:>@],[use cURL library @<:@default=yes@:>@, look for the curl library in DIR])], [ if test "$withval" = "no"; then + want_curl="no" _libcurl_with="no" elif test "$withval" = "yes"; then + want_curl="yes" _libcurl_with="yes" else + want_curl="yes" _libcurl_with=$withval fi ], @@ -203,6 +206,7 @@ x=CURLOPT_VERBOSE; [Define to 1 if you have a functional curl library.]) AC_SUBST(LIBCURL_CPPFLAGS) AC_SUBST(LIBCURL_LDFLAGS) + found_curl="yes" for _libcurl_feature in $_libcurl_features ; do AC_DEFINE_UNQUOTED(AS_TR_CPP(libcurl_feature_$_libcurl_feature),[1]) -- cgit