gnupg/m4 (ChangeLog libcurl.m4)
cvs user dshaw
cvs at cvs.gnupg.org
Wed Jul 20 22:19:45 CEST 2005
Date: Wednesday, July 20, 2005 @ 22:45:44
Author: dshaw
Path: /cvs/gnupg/gnupg/m4
Modified: ChangeLog libcurl.m4
* libcurl.m4: Check that our libcurl has curl_version_info(CURLINFO_NOW).
------------+
ChangeLog | 5 +++++
libcurl.m4 | 6 ++++--
2 files changed, 9 insertions(+), 2 deletions(-)
Index: gnupg/m4/ChangeLog
diff -u gnupg/m4/ChangeLog:1.19 gnupg/m4/ChangeLog:1.20
--- gnupg/m4/ChangeLog:1.19 Wed Jun 22 07:31:52 2005
+++ gnupg/m4/ChangeLog Wed Jul 20 22:45:44 2005
@@ -1,3 +1,8 @@
+2005-07-20 David Shaw <dshaw at jabberwocky.com>
+
+ * libcurl.m4: Check that our libcurl has
+ curl_version_info(CURLINFO_NOW).
+
2005-06-22 David Shaw <dshaw at jabberwocky.com>
* libcurl.m4: Only do the OS X linker fix on Panther. Tiger has a
Index: gnupg/m4/libcurl.m4
diff -u gnupg/m4/libcurl.m4:1.12 gnupg/m4/libcurl.m4:1.13
--- gnupg/m4/libcurl.m4:1.12 Wed Jun 22 07:31:52 2005
+++ gnupg/m4/libcurl.m4 Wed Jul 20 22:45:44 2005
@@ -1,7 +1,7 @@
# LIBCURL_CHECK_CONFIG ([DEFAULT-ACTION], [MINIMUM-VERSION],
# [ACTION-IF-YES], [ACTION-IF-NO])
# ----------------------------------------------------------
-# David Shaw <dshaw at jabberwocky.com> Jun-21-2005
+# David Shaw <dshaw at jabberwocky.com> Jul-20-2005
#
# Checks for libcurl. DEFAULT-ACTION is the string yes or no to
# specify whether to default to --with-libcurl or --without-libcurl.
@@ -32,7 +32,8 @@
# found is after version 7.7.2, the first version that included the
# curl-config script. Note that it is very important for people
# packaging binary versions of libcurl to include this script!
-# Without curl-config, we can only guess what protocols are available.
+# Without curl-config, we can only guess what protocols are available,
+# (or use curl_version_info to figure it out at runtime).
AC_DEFUN([LIBCURL_CHECK_CONFIG],
[
@@ -141,6 +142,7 @@
missing symbols or can't link. */
int x;
curl_easy_setopt(NULL,CURLOPT_URL,NULL);
+curl_version_info2(CURLINFO_NOW);
x=CURL_ERROR_SIZE;
x=CURLOPT_WRITEFUNCTION;
x=CURLOPT_FILE;
More information about the Gnupg-commits
mailing list