diff --git a/m4/ChangeLog b/m4/ChangeLog index b864cb74f..e77ef1992 100644 --- a/m4/ChangeLog +++ b/m4/ChangeLog @@ -1,3 +1,8 @@ +2005-06-22 David Shaw + + * libcurl.m4: Only do the OS X linker fix on Panther. Tiger has a + clean curl-config. + 2005-04-24 David Shaw * libcurl.m4: Add a check for curl_free() since older versions of diff --git a/m4/libcurl.m4 b/m4/libcurl.m4 index 8ade5445c..882770924 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 Apr-21-2005 +# David Shaw 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