8000 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
bz2 Haiku patch
  • Loading branch information
extrowerk committed Aug 19, 2017
commit bc457bb9b8f6a3ee97f336598e012d81fb2e8c54
3 changes: 3 additions & 0 deletions ext/bz2/config.m4
Original file line number Diff line number Diff line change
Expand Up @@ -8,6 +8,9 @@ PHP_ARG_WITH(bz2, for BZip2 support,
if test "$PHP_BZ2" != "no"; then
if test -r $PHP_BZ2/include/bzlib.h; then
BZIP_DIR=$PHP_BZ2
else
if test -r $PHP_BZ2/develop/headers/bzlib.h; then
BZIP_DIR=$PHP_BZ2
else
AC_MSG_CHECKING(for BZip2 in default path)
for i in /usr/local /usr; do
Expand Down
0