mirror of
https://github.com/php/php-src.git
synced 2024-11-27 03:44:07 +08:00
39 lines
1.1 KiB
Plaintext
39 lines
1.1 KiB
Plaintext
dnl $Id$
|
|
|
|
AC_MSG_CHECKING(whether to include zlib support)
|
|
AC_ARG_WITH(zlib,
|
|
[ --with-zlib[=DIR] Include zlib support (requires zlib >= 1.0.9).
|
|
DIR is the zlib install directory,
|
|
defaults to /usr.],
|
|
[
|
|
case "$withval" in
|
|
no)
|
|
AC_MSG_RESULT(no) ;;
|
|
yes)
|
|
AC_MSG_RESULT(yes)
|
|
PHP_EXTENSION(zlib)
|
|
AC_CHECK_LIB(z, gzgets, [AC_DEFINE(HAVE_ZLIB)],
|
|
[AC_MSG_ERROR(Zlib module requires zlib >= 1.0.9.)])
|
|
AC_ADD_LIBRARY(z)
|
|
;;
|
|
*)
|
|
test -f $withval/include/zlib/zlib.h && ZLIB_INCLUDE="$withval/include/zlib"
|
|
test -f $withval/include/zlib.h && ZLIB_INCLUDE="$withval/include"
|
|
if test -n "$ZLIB_INCLUDE" ; then
|
|
AC_MSG_RESULT(yes)
|
|
PHP_EXTENSION(zlib)
|
|
old_LIBS=$LIBS
|
|
LIBS="$LIBS -L$withval/lib"
|
|
AC_CHECK_LIB(z, gzgets, [AC_DEFINE(HAVE_ZLIB)],
|
|
[AC_MSG_ERROR(Zlib module requires zlib >= 1.0.9.)])
|
|
LIBS=$old_LIBS
|
|
AC_ADD_LIBRARY_WITH_PATH(z, $withval/lib)
|
|
AC_ADD_INCLUDE($ZLIB_INCLUDE)
|
|
else
|
|
AC_MSG_RESULT(no)
|
|
fi ;;
|
|
esac
|
|
],[
|
|
AC_MSG_RESULT(no)
|
|
])
|