mirror of
git://git.gnupg.org/gnupg.git
synced 2025-01-10 13:04:23 +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>
|
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
|
* readline.m4: Make sure that readline is modern enough to
|
||||||
understand rl_catch_signals.
|
understand rl_catch_signals.
|
||||||
|
|
||||||
|
@ -32,6 +32,15 @@ AC_DEFUN([GNUPG_CHECK_LIBCURL],
|
|||||||
fi
|
fi
|
||||||
if test x"$LIBCURL" = "x" ; then
|
if test x"$LIBCURL" = "x" ; then
|
||||||
LIBCURL=`curl-config --libs`
|
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
|
fi
|
||||||
_have_config=yes
|
_have_config=yes
|
||||||
else
|
else
|
||||||
|
Loading…
x
Reference in New Issue
Block a user