From: Dan Fandrich Date: Fri, 13 Jun 2008 00:03:12 +0000 (+0000) Subject: Fixed curl-config --ca which wasn't being exported by configure. X-Git-Tag: upstream/7.37.1~7723 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=c1a71ad14f0632d808bef081716838f89db2cad5;p=platform%2Fupstream%2Fcurl.git Fixed curl-config --ca which wasn't being exported by configure. --- diff --git a/CHANGES b/CHANGES index 7592212..b809be5 100644 --- a/CHANGES +++ b/CHANGES @@ -6,6 +6,8 @@ Changelog +Daniel Fandrich (12 Jun 2008) +- Fixed curl-config --ca which wasn't being exported by configure. Daniel Stenberg (11 Jun 2008) - I did a cleanup of the internal generic SSL layer and how the various SSL diff --git a/RELEASE-NOTES b/RELEASE-NOTES index 1b46d0b..fc085d0 100644 --- a/RELEASE-NOTES +++ b/RELEASE-NOTES @@ -18,7 +18,7 @@ This release includes the following changes: This release includes the following bugfixes: - o + o Fixed curl-config --ca This release includes the following known bugs: diff --git a/acinclude.m4 b/acinclude.m4 index 9d4ba3e..8800a88 100644 --- a/acinclude.m4 +++ b/acinclude.m4 @@ -3070,6 +3070,7 @@ AC_HELP_STRING([--without-ca-path], [Don't use a default CA path]), if test "x$ca" != "xno"; then CURL_CA_BUNDLE='"'$ca'"' AC_DEFINE_UNQUOTED(CURL_CA_BUNDLE, "$ca", [Location of default ca bundle]) + AC_SUBST(CURL_CA_BUNDLE) AC_MSG_RESULT([$ca]) elif test "x$capath" != "xno"; then CURL_CA_PATH="\"$capath\""