View | Details | Raw Unified
Collapse All | Expand All

(-) configure.in (-1 / +1 lines)
 Lines 1576-1582    Link Here 
  AC_MSG_RESULT([        found libcurl version $CURL_VER])
  AC_MSG_RESULT([        found libcurl version $CURL_VER])
  
  
  dnl Need libcurl 7.10.1 or more recent
  dnl Need libcurl 7.10.1 or more recent
  if test -z "$CURL_VERNUM" -o `expr "0x$CURL_VERNUM" \< "0x070a01"` = 1; then
  if test $(expr "${CURL_VER}" \>= "7.10.1") = 0; then
    AC_MSG_ERROR([libcurl version 7.10.1 or more recent is required.])
    AC_MSG_ERROR([libcurl version 7.10.1 or more recent is required.])
  fi
  fi