curl headers are now in a multiarch include directory, so the current check no longer succeeds. Check for curl-config instead, which is provided by the same. Patch provided by Reiner Herrmann.

pull/75/merge
Micah Snyder 7 years ago
parent d507b58a91
commit b9885dbd81
  1. 4
      m4/reorganization/libs/curl.m4

@ -21,12 +21,12 @@ fi
if test "X$find_curl" = "Xyes"; then
LIBCURL_HOME=/usr/local
fi
if test -f "$LIBCURL_HOME/include/curl/curl.h"; then
if test -f "$LIBCURL_HOME/bin/curl-config"; then
have_curl="yes"
else
if test "X$find_curl" = "Xyes"; then
LIBCURL_HOME=/usr
if test -f "$LIBCURL_HOME/include/curl/curl.h"; then
if test -f "$LIBCURL_HOME/bin/curl-config"; then
have_curl="yes"
fi
fi

Loading…
Cancel
Save