Skip to content

Commit 7a3589c

Browse files
committed
curl patches
1 parent 3e44856 commit 7a3589c

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

ext/curl/config.m4

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -6,11 +6,11 @@ PHP_ARG_WITH(curl, for cURL support,
66
[ --with-curl[=DIR] Include cURL support])
77

88
if test "$PHP_CURL" != "no"; then
9-
if test -r $PHP_CURL/include/curl/easy.h; then
9+
if test -r $PHP_CURL/include/curl/easy.h || test -r $PHP_CURL/develop/headers/curl/easy.h; then
1010
CURL_DIR=$PHP_CURL
1111
else
1212
AC_MSG_CHECKING(for cURL in default path)
13-
for i in /usr/local /usr; do
13+
for i in /usr/local /usr /system; do
1414
if test -r $i/include/curl/easy.h; then
1515
CURL_DIR=$i
1616
AC_MSG_RESULT(found in $i)

0 commit comments

Comments
 (0)