configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) New commits: commit fa66ae3a739594da13fb78638ef98a2c8cc5ed2e Author: Douglas Mencken <dougmenc...@gmail.com> Date: Thu Dec 12 08:48:15 2013 -0500
Bump curl version check to 7.19.4 in configure.ac Constants CURLPROTO_HTTP, CURLPROTO_HTTPS, ... have been introduced in curl 7.19.4. With current requirement (>= 7.13.1), we would get build errors like "cmis/src/libcmis/base-session.cxx:841: error: CURLOPT_PROTOCOLS was not declared in this scope" in cases of using curl < 7.19.4. Change-Id: Ifa6c56fc71715cceb19d30bb2d6f48f0b1dbd7da Reviewed-on: https://gerrit.libreoffice.org/7050 Reviewed-by: Norbert Thiebaud <nthieb...@gmail.com> Tested-by: Norbert Thiebaud <nthieb...@gmail.com> diff --git a/configure.ac b/configure.ac index 687965c..0c58a9c 100644 --- a/configure.ac +++ b/configure.ac @@ -8675,12 +8675,12 @@ if test "$with_system_curl" = "yes"; then curl_version=`$CURLCONFIG --version | $SED -e 's/^libcurl //'` fi - AC_MSG_CHECKING([whether libcurl is >= 7.13.1]) + AC_MSG_CHECKING([whether libcurl is >= 7.19.4]) case $curl_version in dnl brackets doubled below because Autoconf uses them as m4 quote characters, dnl so they need to be doubled to end up in the configure script - 7.13.1|7.1[[4-9]].*|7.[[2-9]]?.*|7.???.*|[[8-9]].*|[[1-9]][[0-9]].*) + 7.19.4|7.19.[[5-9]]|7.[[2-9]]?.*|7.???.*|[[8-9]].*|[[1-9]][[0-9]].*) AC_MSG_RESULT([yes, you have $curl_version]) ;; *) _______________________________________________ Libreoffice-commits mailing list libreoffice-comm...@lists.freedesktop.org http://lists.freedesktop.org/mailman/listinfo/libreoffice-commits