1
0
mirror of git://git.gnupg.org/gnupg.git synced 2024-06-25 01:42:45 +02:00

* libcurl.m4: Only do the OS X linker fix on Panther. Tiger has a

clean curl-config.
This commit is contained in:
David Shaw 2005-06-22 05:31:52 +00:00
parent 7f4d49b470
commit b0ba0c6314
2 changed files with 9 additions and 3 deletions

View File

@ -1,3 +1,8 @@
2005-06-22 David Shaw <dshaw@jabberwocky.com>
* libcurl.m4: Only do the OS X linker fix on Panther. Tiger has a
clean curl-config.
2005-04-24 David Shaw <dshaw@jabberwocky.com>
* libcurl.m4: Add a check for curl_free() since older versions of

View File

@ -1,7 +1,7 @@
# LIBCURL_CHECK_CONFIG ([DEFAULT-ACTION], [MINIMUM-VERSION],
# [ACTION-IF-YES], [ACTION-IF-NO])
# ----------------------------------------------------------
# David Shaw <dshaw@jabberwocky.com> Apr-21-2005
# David Shaw <dshaw@jabberwocky.com> Jun-21-2005
#
# Checks for libcurl. DEFAULT-ACTION is the string yes or no to
# specify whether to default to --with-libcurl or --without-libcurl.
@ -99,9 +99,10 @@ AC_DEFUN([LIBCURL_CHECK_CONFIG],
LIBCURL=`$_libcurl_config --libs`
# This is so silly, but Apple actually has a bug in their
# curl-config script!
# curl-config script. Fixed in Tiger, but there are still
# lots of Panther installs around.
case "${host}" in
powerpc-apple-darwin*)
powerpc-apple-darwin7*)
LIBCURL=`echo $LIBCURL | sed -e 's|-arch i386||g'`
;;
esac