summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authorDavid Shaw <dshaw@jabberwocky.com>2006-01-16 21:22:58 +0100
committerDavid Shaw <dshaw@jabberwocky.com>2006-01-16 21:22:58 +0100
commitfa4b60403be2a52c4be985af483c01d43d3ac622 (patch)
treefb9e058ef2e5f0eab161dc53ee4f314e9e9c255c
parent* gpgkeys_hkp.c (send_key): Do not escape the '=' in the HTTP POST when (diff)
downloadgnupg2-fa4b60403be2a52c4be985af483c01d43d3ac622.tar.xz
gnupg2-fa4b60403be2a52c4be985af483c01d43d3ac622.zip
* libcurl.m4: Remove GOPHER, as that is not supported in libcurl any
longer.
-rw-r--r--m4/ChangeLog5
-rw-r--r--m4/libcurl.m47
2 files changed, 8 insertions, 4 deletions
diff --git a/m4/ChangeLog b/m4/ChangeLog
index c3f79fa4f..c0218b373 100644
--- a/m4/ChangeLog
+++ b/m4/ChangeLog
@@ -1,3 +1,8 @@
+2006-01-16 David Shaw <dshaw@jabberwocky.com>
+
+ * libcurl.m4: Remove GOPHER, as that is not supported in libcurl
+ any longer.
+
2005-11-05 David Shaw <dshaw@jabberwocky.com>
* libusb.m4: Check for libusb-config and if we find it, use --libs
diff --git a/m4/libcurl.m4 b/m4/libcurl.m4
index 689ea4d4e..8a07896db 100644
--- a/m4/libcurl.m4
+++ b/m4/libcurl.m4
@@ -1,7 +1,7 @@
# LIBCURL_CHECK_CONFIG ([DEFAULT-ACTION], [MINIMUM-VERSION],
# [ACTION-IF-YES], [ACTION-IF-NO])
# ----------------------------------------------------------
-# David Shaw <dshaw@jabberwocky.com> Aug-5-2005
+# David Shaw <dshaw@jabberwocky.com> Jan-16-2006
#
# Checks for libcurl. DEFAULT-ACTION is the string yes or no to
# specify whether to default to --with-libcurl or --without-libcurl.
@@ -33,7 +33,7 @@
# 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,
-# (or use curl_version_info to figure it out at runtime).
+# or use curl_version_info to figure it out at runtime.
AC_DEFUN([LIBCURL_CHECK_CONFIG],
[
@@ -47,7 +47,6 @@ AC_DEFUN([LIBCURL_CHECK_CONFIG],
AH_TEMPLATE([LIBCURL_PROTOCOL_HTTPS],[Defined if libcurl supports HTTPS])
AH_TEMPLATE([LIBCURL_PROTOCOL_FTP],[Defined if libcurl supports FTP])
AH_TEMPLATE([LIBCURL_PROTOCOL_FTPS],[Defined if libcurl supports FTPS])
- AH_TEMPLATE([LIBCURL_PROTOCOL_GOPHER],[Defined if libcurl supports GOPHER])
AH_TEMPLATE([LIBCURL_PROTOCOL_FILE],[Defined if libcurl supports FILE])
AH_TEMPLATE([LIBCURL_PROTOCOL_TELNET],[Defined if libcurl supports TELNET])
AH_TEMPLATE([LIBCURL_PROTOCOL_LDAP],[Defined if libcurl supports LDAP])
@@ -191,7 +190,7 @@ x=CURLOPT_VERBOSE;
# We don't have --protocols, so just assume that all
# protocols are available
- _libcurl_protocols="HTTP FTP GOPHER FILE TELNET LDAP DICT"
+ _libcurl_protocols="HTTP FTP FILE TELNET LDAP DICT"
if test x$libcurl_feature_SSL = xyes ; then
_libcurl_protocols="$_libcurl_protocols HTTPS"