diff options
author | Werner Koch <[email protected]> | 2008-04-01 15:08:57 +0000 |
---|---|---|
committer | Werner Koch <[email protected]> | 2008-04-01 15:08:57 +0000 |
commit | 80f77d79c516ca636cfc9382effa5f224f31f0f4 (patch) | |
tree | ada520eaf81592573a79719d51bc9a1dda42f0d4 /configure.ac | |
parent | Fix problem when using the fallback dirmngr. (diff) | |
download | gnupg-80f77d79c516ca636cfc9382effa5f224f31f0f4.tar.gz gnupg-80f77d79c516ca636cfc9382effa5f224f31f0f4.zip |
Fix a problem with dirmngr looked up certificates.
Typo fixes.
Diffstat (limited to 'configure.ac')
-rw-r--r-- | configure.ac | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index 717aa5921..4f0881a81 100644 --- a/configure.ac +++ b/configure.ac @@ -831,8 +831,9 @@ fi # # Check for curl. We fake the curl API if libcurl isn't installed. +# We require 7.10 or later as we use curl_version_info(). # -LIBCURL_CHECK_CONFIG([yes],,,[fake_curl=yes]) +LIBCURL_CHECK_CONFIG([yes],[7.10],,[fake_curl=yes]) AM_CONDITIONAL(FAKE_CURL,test x"$fake_curl" = xyes) # Generic, for us, means curl |