libcurl.m4
上传用户:coffee44
上传日期:2018-10-23
资源大小:12304k
文件大小:9k
源码类别:

TAPI编程

开发平台:

Visual C++

  1. # LIBCURL_CHECK_CONFIG ([DEFAULT-ACTION], [MINIMUM-VERSION],
  2. #                       [ACTION-IF-YES], [ACTION-IF-NO])
  3. # ----------------------------------------------------------
  4. #      David Shaw <dshaw@jabberwocky.com>   May-09-2006
  5. #
  6. # Checks for libcurl.  DEFAULT-ACTION is the string yes or no to
  7. # specify whether to default to --with-libcurl or --without-libcurl.
  8. # If not supplied, DEFAULT-ACTION is yes.  MINIMUM-VERSION is the
  9. # minimum version of libcurl to accept.  Pass the version as a regular
  10. # version number like 7.10.1. If not supplied, any version is
  11. # accepted.  ACTION-IF-YES is a list of shell commands to run if
  12. # libcurl was successfully found and passed the various tests.
  13. # ACTION-IF-NO is a list of shell commands that are run otherwise.
  14. # Note that using --without-libcurl does run ACTION-IF-NO.
  15. #
  16. # This macro #defines HAVE_LIBCURL if a working libcurl setup is
  17. # found, and sets @LIBCURL@ and @LIBCURL_CPPFLAGS@ to the necessary
  18. # values.  Other useful defines are LIBCURL_FEATURE_xxx where xxx are
  19. # the various features supported by libcurl, and LIBCURL_PROTOCOL_yyy
  20. # where yyy are the various protocols supported by libcurl.  Both xxx
  21. # and yyy are capitalized.  See the list of AH_TEMPLATEs at the top of
  22. # the macro for the complete list of possible defines.  Shell
  23. # variables $libcurl_feature_xxx and $libcurl_protocol_yyy are also
  24. # defined to 'yes' for those features and protocols that were found.
  25. # Note that xxx and yyy keep the same capitalization as in the
  26. # curl-config list (e.g. it's "HTTP" and not "http").
  27. #
  28. # Users may override the detected values by doing something like:
  29. # LIBCURL="-lcurl" LIBCURL_CPPFLAGS="-I/usr/myinclude" ./configure
  30. #
  31. # For the sake of sanity, this macro assumes that any libcurl that is
  32. # found is after version 7.7.2, the first version that included the
  33. # curl-config script.  Note that it is very important for people
  34. # packaging binary versions of libcurl to include this script!
  35. # Without curl-config, we can only guess what protocols are available,
  36. # or use curl_version_info to figure it out at runtime.
  37. AC_DEFUN([LIBCURL_CHECK_CONFIG],
  38. [
  39.   AH_TEMPLATE([LIBCURL_FEATURE_SSL],[Defined if libcurl supports SSL])
  40.   AH_TEMPLATE([LIBCURL_FEATURE_KRB4],[Defined if libcurl supports KRB4])
  41.   AH_TEMPLATE([LIBCURL_FEATURE_IPV6],[Defined if libcurl supports IPv6])
  42.   AH_TEMPLATE([LIBCURL_FEATURE_LIBZ],[Defined if libcurl supports libz])
  43.   AH_TEMPLATE([LIBCURL_FEATURE_ASYNCHDNS],[Defined if libcurl supports AsynchDNS])
  44.   AH_TEMPLATE([LIBCURL_FEATURE_IDN],[Defined if libcurl supports IDN])
  45.   AH_TEMPLATE([LIBCURL_FEATURE_SSPI],[Defined if libcurl supports SSPI])
  46.   AH_TEMPLATE([LIBCURL_FEATURE_NTLM],[Defined if libcurl supports NTLM])
  47.   AH_TEMPLATE([LIBCURL_PROTOCOL_HTTP],[Defined if libcurl supports HTTP])
  48.   AH_TEMPLATE([LIBCURL_PROTOCOL_HTTPS],[Defined if libcurl supports HTTPS])
  49.   AH_TEMPLATE([LIBCURL_PROTOCOL_FTP],[Defined if libcurl supports FTP])
  50.   AH_TEMPLATE([LIBCURL_PROTOCOL_FTPS],[Defined if libcurl supports FTPS])
  51.   AH_TEMPLATE([LIBCURL_PROTOCOL_FILE],[Defined if libcurl supports FILE])
  52.   AH_TEMPLATE([LIBCURL_PROTOCOL_TELNET],[Defined if libcurl supports TELNET])
  53.   AH_TEMPLATE([LIBCURL_PROTOCOL_LDAP],[Defined if libcurl supports LDAP])
  54.   AH_TEMPLATE([LIBCURL_PROTOCOL_DICT],[Defined if libcurl supports DICT])
  55.   AH_TEMPLATE([LIBCURL_PROTOCOL_TFTP],[Defined if libcurl supports TFTP])
  56.   AC_ARG_WITH(libcurl,
  57.      AC_HELP_STRING([--with-libcurl=DIR],[look for the curl library in DIR]),
  58.      [_libcurl_with=$withval],[_libcurl_with=ifelse([$1],,[yes],[$1])])
  59.   if test "$_libcurl_with" != "no" ; then
  60.      AC_PROG_AWK
  61.      _libcurl_version_parse="eval $AWK '{split($NF,A,"."); X=256*256*A[[1]]+256*A[[2]]+A[[3]]; print X;}'"
  62.      _libcurl_try_link=yes
  63.      if test -d "$_libcurl_with" ; then
  64.         LIBCURL_CPPFLAGS="-I$withval/include"
  65.         _libcurl_ldflags="-L$withval/lib"
  66.         AC_PATH_PROG([_libcurl_config],[curl-config],["$withval/bin"],
  67.                      ["$withval/bin"])
  68.      else
  69. AC_PATH_PROG([_libcurl_config],[curl-config])
  70.      fi
  71.      if test x$_libcurl_config != "x" ; then
  72.         AC_CACHE_CHECK([for the version of libcurl],
  73.    [libcurl_cv_lib_curl_version],
  74.            [libcurl_cv_lib_curl_version=`$_libcurl_config --version | $AWK '{print $[]2}'`])
  75. _libcurl_version=`echo $libcurl_cv_lib_curl_version | $_libcurl_version_parse`
  76. _libcurl_wanted=`echo ifelse([$2],,[0],[$2]) | $_libcurl_version_parse`
  77.         if test $_libcurl_wanted -gt 0 ; then
  78.    AC_CACHE_CHECK([for libcurl >= version $2],
  79.       [libcurl_cv_lib_version_ok],
  80.               [
  81.           if test $_libcurl_version -ge $_libcurl_wanted ; then
  82.          libcurl_cv_lib_version_ok=yes
  83.              else
  84.          libcurl_cv_lib_version_ok=no
  85.          fi
  86.               ])
  87.         fi
  88. if test $_libcurl_wanted -eq 0 || test x$libcurl_cv_lib_version_ok = xyes ; then
  89.            if test x"$LIBCURL_CPPFLAGS" = "x" ; then
  90.               LIBCURL_CPPFLAGS=`$_libcurl_config --cflags`
  91.            fi
  92.            if test x"$LIBCURL" = "x" ; then
  93.               LIBCURL=`$_libcurl_config --libs`
  94.               # This is so silly, but Apple actually has a bug in their
  95.       # curl-config script.  Fixed in Tiger, but there are still
  96.       # lots of Panther installs around.
  97.               case "${host}" in
  98.                  powerpc-apple-darwin7*)
  99.                     LIBCURL=`echo $LIBCURL | sed -e 's|-arch i386||g'`
  100.                  ;;
  101.               esac
  102.            fi
  103.    # All curl-config scripts support --feature
  104.    _libcurl_features=`$_libcurl_config --feature`
  105.            # Is it modern enough to have --protocols? (7.12.4)
  106.    if test $_libcurl_version -ge 461828 ; then
  107.               _libcurl_protocols=`$_libcurl_config --protocols`
  108.            fi
  109. else
  110.            _libcurl_try_link=no
  111. fi
  112. unset _libcurl_wanted
  113.      fi
  114.      if test $_libcurl_try_link = yes ; then
  115.         # we didn't find curl-config, so let's see if the user-supplied
  116.         # link line (or failing that, "-lcurl") is enough.
  117.         LIBCURL=${LIBCURL-"$_libcurl_ldflags -lcurl"}
  118.         AC_CACHE_CHECK([whether libcurl is usable],
  119.            [libcurl_cv_lib_curl_usable],
  120.            [
  121.            _libcurl_save_cppflags=$CPPFLAGS
  122.            CPPFLAGS="$LIBCURL_CPPFLAGS $CPPFLAGS"
  123.            _libcurl_save_libs=$LIBS
  124.            LIBS="$LIBCURL $LIBS"
  125.            AC_LINK_IFELSE(AC_LANG_PROGRAM([#include <curl/curl.h>],[
  126. /* Try and use a few common options to force a failure if we are
  127.    missing symbols or can't link. */
  128. int x;
  129. curl_easy_setopt(NULL,CURLOPT_URL,NULL);
  130. x=CURL_ERROR_SIZE;
  131. x=CURLOPT_WRITEFUNCTION;
  132. x=CURLOPT_FILE;
  133. x=CURLOPT_ERRORBUFFER;
  134. x=CURLOPT_STDERR;
  135. x=CURLOPT_VERBOSE;
  136. ]),libcurl_cv_lib_curl_usable=yes,libcurl_cv_lib_curl_usable=no)
  137.            CPPFLAGS=$_libcurl_save_cppflags
  138.            LIBS=$_libcurl_save_libs
  139.            unset _libcurl_save_cppflags
  140.            unset _libcurl_save_libs
  141.            ])
  142.         if test $libcurl_cv_lib_curl_usable = yes ; then
  143.    # Does curl_free() exist in this version of libcurl?
  144.    # If not, fake it with free()
  145.            _libcurl_save_cppflags=$CPPFLAGS
  146.            CPPFLAGS="$CPPFLAGS $LIBCURL_CPPFLAGS"
  147.            _libcurl_save_libs=$LIBS
  148.            LIBS="$LIBS $LIBCURL"
  149.            AC_CHECK_FUNC(curl_free,,
  150.          AC_DEFINE(curl_free,free,
  151. [Define curl_free() as free() if our version of curl lacks curl_free.]))
  152.            CPPFLAGS=$_libcurl_save_cppflags
  153.            LIBS=$_libcurl_save_libs
  154.            unset _libcurl_save_cppflags
  155.            unset _libcurl_save_libs
  156.            AC_DEFINE(HAVE_LIBCURL,1,
  157.              [Define to 1 if you have a functional curl library.])
  158.            AC_SUBST(LIBCURL_CPPFLAGS)
  159.            AC_SUBST(LIBCURL)
  160.            for _libcurl_feature in $_libcurl_features ; do
  161.       AC_DEFINE_UNQUOTED(AS_TR_CPP(libcurl_feature_$_libcurl_feature),[1])
  162.       eval AS_TR_SH(libcurl_feature_$_libcurl_feature)=yes
  163.            done
  164.    if test "x$_libcurl_protocols" = "x" ; then
  165.       # We don't have --protocols, so just assume that all
  166.       # protocols are available
  167.       _libcurl_protocols="HTTP FTP FILE TELNET LDAP DICT"
  168.       if test x$libcurl_feature_SSL = xyes ; then
  169.          _libcurl_protocols="$_libcurl_protocols HTTPS"
  170.  # FTPS wasn't standards-compliant until version
  171.  # 7.11.0
  172.  if test $_libcurl_version -ge 461568; then
  173.     _libcurl_protocols="$_libcurl_protocols FTPS"
  174.  fi
  175.       fi
  176.    fi
  177.    for _libcurl_protocol in $_libcurl_protocols ; do
  178.       AC_DEFINE_UNQUOTED(AS_TR_CPP(libcurl_protocol_$_libcurl_protocol),[1])
  179.       eval AS_TR_SH(libcurl_protocol_$_libcurl_protocol)=yes
  180.            done
  181. else
  182.    unset LIBCURL
  183.    unset LIBCURL_CPPFLAGS
  184.         fi
  185.      fi
  186.      unset _libcurl_try_link
  187.      unset _libcurl_version_parse
  188.      unset _libcurl_config
  189.      unset _libcurl_feature
  190.      unset _libcurl_features
  191.      unset _libcurl_protocol
  192.      unset _libcurl_protocols
  193.      unset _libcurl_version
  194.      unset _libcurl_ldflags
  195.   fi
  196.   if test x$_libcurl_with = xno || test x$libcurl_cv_lib_curl_usable != xyes ; then
  197.      # This is the IF-NO path
  198.      ifelse([$4],,:,[$4])
  199.   else
  200.      # This is the IF-YES path
  201.      ifelse([$3],,:,[$3])
  202.   fi
  203.   unset _libcurl_with
  204. ])dnl