10000 Haiku support by extrowerk · Pull Request #2697 · php/php-src · GitHub
[go: up one dir, main page]

Skip to content

Haiku support #2697

New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Closed
wants to merge 27 commits into from
Closed
Changes from 1 commit
Commits
Show all changes
27 commits
Select commit Hold shift + click to select a range
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
Prev Previous commit
Next Next commit
curl patches
  • Loading branch information
extrowerk committed Aug 20, 2017
commit 7a3589c6fe7e718dc4bb2dd72cd9d21a10c6923b
4 changes: 2 additions & 2 deletions ext/curl/config.m4
Original file line number Diff line number Diff line change
Expand Up @@ -6,11 +6,11 @@ PHP_ARG_WITH(curl, for cURL support,
[ --with-curl[=DIR] Include cURL support])

if test "$PHP_CURL" != "no"; then
if test -r $PHP_CURL/include/curl/easy.h; then
if test -r $PHP_CURL/include/curl/easy.h || test -r $PHP_CURL/develop/headers/curl/easy.h; then
CURL_DIR=$PHP_CURL
else
AC_MSG_CHECKING(for cURL in default path)
for i in /usr/local /usr; do
for i in /usr/local /usr /system; do
if test -r $i/include/curl/easy.h; then
CURL_DIR=$i
AC_MSG_RESULT(found in $i)
Expand Down
0