mirror of
git://git.gnupg.org/gnupg.git
synced 2024-12-23 10:29:58 +01:00
* libcurl.m4: OSX has a problem with their curl-config script.
This commit is contained in:
parent
7c67985457
commit
9756b0fc68
@ -1,5 +1,7 @@
|
||||
2004-12-23 David Shaw <dshaw@jabberwocky.com>
|
||||
|
||||
* libcurl.m4: OSX has a problem with their curl-config script.
|
||||
|
||||
* readline.m4: Make sure that readline is modern enough to
|
||||
understand rl_catch_signals.
|
||||
|
||||
|
@ -32,6 +32,15 @@ AC_DEFUN([GNUPG_CHECK_LIBCURL],
|
||||
fi
|
||||
if test x"$LIBCURL" = "x" ; then
|
||||
LIBCURL=`curl-config --libs`
|
||||
|
||||
# This is so silly, but Apple actually has a bug in their
|
||||
# curl-config script!
|
||||
|
||||
case "${host}" in
|
||||
powerpc-apple-darwin*)
|
||||
LIBCURL=`echo $LIBCURL | sed -e 's|-arch i386||g'`
|
||||
;;
|
||||
esac
|
||||
fi
|
||||
_have_config=yes
|
||||
else
|
||||
|
Loading…
x
Reference in New Issue
Block a user