mirror of
https://github.com/php/php-src.git
synced 2024-11-26 19:33:55 +08:00
8a26918ed1
# Heads up people! I tested this before committing but you never know..
47 lines
1.0 KiB
Plaintext
47 lines
1.0 KiB
Plaintext
dnl $Id$
|
|
|
|
|
|
|
|
PHP_ARG_WITH(zlib,whether to include zlib support,
|
|
[ --with-zlib[=DIR] Include zlib support (requires zlib >= 1.0.9).
|
|
DIR is the zlib install directory,
|
|
defaults to /usr.])
|
|
|
|
AC_DEFUN(AC_TEMP_LDFLAGS,[
|
|
old_LDFLAGS="$LDFLAGS"
|
|
LDFLAGS="$1 $LDFLAGS"
|
|
$2
|
|
LDFLAGS="$old_LDFLAGS"
|
|
])
|
|
|
|
if test "$PHP_ZLIB" != "no"; then
|
|
PHP_EXTENSION(zlib, $ext_shared)
|
|
for i in /usr/local /usr $PHP_ZLIB; do
|
|
if test -f $i/include/zlib/zlib.h; then
|
|
ZLIB_DIR=$i
|
|
ZLIB_INCDIR=$i/include/zlib
|
|
elif test -f $i/include/zlib.h; then
|
|
ZLIB_DIR=$i
|
|
ZLIB_INCDIR=$i/include
|
|
fi
|
|
done
|
|
|
|
if test -z "$ZLIB_DIR"; then
|
|
AC_MSG_ERROR(Cannot find libz)
|
|
fi
|
|
|
|
ZLIB_LIBDIR=$ZLIB_DIR/lib
|
|
|
|
AC_TEMP_LDFLAGS(-L$ZLIB_LIBDIR,[
|
|
AC_CHECK_LIB(z, gzgets, [AC_DEFINE(HAVE_ZLIB,1,[ ])],
|
|
[AC_MSG_ERROR(Zlib module requires zlib >= 1.0.9.)])
|
|
])
|
|
|
|
PHP_SUBST(ZLIB_SHARED_LIBADD)
|
|
PHP_ADD_LIBRARY_WITH_PATH(z, $ZLIB_LIBDIR, ZLIB_SHARED_LIBADD)
|
|
|
|
PHP_ADD_INCLUDE($ZLIB_INCDIR)
|
|
|
|
PHP_FOPENCOOKIE
|
|
fi
|