1999-12-30 10:59:53 +08:00
|
|
|
|
|
|
|
AC_INIT(Makefile.in)
|
|
|
|
|
|
|
|
AC_DEFUN(PHP_WITH_PHP_CONFIG,[
|
|
|
|
AC_ARG_WITH(php-config,
|
|
|
|
[ --with-php-config=[PATH]],[
|
|
|
|
PHP_CONFIG=$withval
|
|
|
|
],[
|
|
|
|
PHP_CONFIG=php-config
|
|
|
|
])
|
|
|
|
|
|
|
|
prefix=`$PHP_CONFIG --prefix 2>/dev/null`
|
|
|
|
INCLUDES=`$PHP_CONFIG --includes 2>/dev/null`
|
|
|
|
|
|
|
|
if test -z "$prefix"; then
|
|
|
|
AC_MSG_ERROR(Cannot find php-config. Please use --with-php-config=[PATH])
|
|
|
|
fi
|
|
|
|
AC_MSG_CHECKING(PHP prefix)
|
|
|
|
AC_MSG_RESULT($prefix)
|
|
|
|
AC_MSG_CHECKING(PHP includes)
|
|
|
|
AC_MSG_RESULT($INCLUDES)
|
|
|
|
])
|
|
|
|
|
|
|
|
php_always_shared=yes
|
|
|
|
|
|
|
|
AC_PROG_CC
|
|
|
|
AC_PROG_CC_C_O
|
|
|
|
|
|
|
|
PHP_WITH_PHP_CONFIG
|
|
|
|
|
|
|
|
AC_PREFIX_DEFAULT()
|
|
|
|
|
|
|
|
sinclude(config.m4)
|
|
|
|
|
|
|
|
enable_static=no
|
|
|
|
enable_shared=yes
|
|
|
|
|
|
|
|
AC_PROG_LIBTOOL
|
|
|
|
|
2000-05-03 04:10:46 +08:00
|
|
|
SHARED_LIBTOOL='$(LIBTOOL)'
|
1999-12-30 10:59:53 +08:00
|
|
|
PHP_COMPILE='$(LIBTOOL) --mode=compile $(COMPILE) -c $<'
|
|
|
|
phplibdir="`pwd`/modules"
|
|
|
|
|
|
|
|
test "$prefix" = "NONE" && prefix="/usr/local"
|
|
|
|
test "$exec_prefix" = "NONE" && exec_prefix='$(prefix)'
|
|
|
|
|
2000-05-03 04:10:46 +08:00
|
|
|
EXTENSION_DIR="$prefix/lib/php/modules"
|
|
|
|
|
1999-12-30 10:59:53 +08:00
|
|
|
PHP_SUBST(prefix)
|
|
|
|
PHP_SUBST(exec_prefix)
|
|
|
|
PHP_SUBST(libdir)
|
|
|
|
PHP_SUBST(prefix)
|
|
|
|
PHP_SUBST(phplibdir)
|
|
|
|
|
|
|
|
PHP_SUBST(PHP_COMPILE)
|
|
|
|
PHP_SUBST(CC)
|
|
|
|
PHP_SUBST(CFLAGS)
|
|
|
|
PHP_SUBST(CPP)
|
|
|
|
PHP_SUBST(CPPFLAGS)
|
|
|
|
PHP_SUBST(CXX)
|
|
|
|
PHP_SUBST(DEFS)
|
2000-05-03 04:10:46 +08:00
|
|
|
PHP_SUBST(EXTENSION_DIR)
|
1999-12-30 10:59:53 +08:00
|
|
|
PHP_SUBST(EXTRA_LDFLAGS)
|
|
|
|
PHP_SUBST(EXTRA_LIBS)
|
|
|
|
PHP_SUBST(INCLUDES)
|
|
|
|
PHP_SUBST(LEX)
|
|
|
|
PHP_SUBST(LEX_OUTPUT_ROOT)
|
|
|
|
PHP_SUBST(LFLAGS)
|
2000-05-03 04:10:46 +08:00
|
|
|
PHP_SUBST(SHARED_LIBTOOL)
|
1999-12-30 10:59:53 +08:00
|
|
|
PHP_SUBST(LIBTOOL)
|
|
|
|
PHP_SUBST(SHELL)
|
|
|
|
|
|
|
|
PHP_FAST_OUTPUT(Makefile)
|
|
|
|
|
|
|
|
PHP_FAST_GENERATE
|
|
|
|
|
2000-05-03 04:10:46 +08:00
|
|
|
test -d modules || mkdir modules
|
|
|
|
|
1999-12-30 10:59:53 +08:00
|
|
|
AC_CONFIG_HEADER(php_config.h)
|
|
|
|
|
|
|
|
AC_OUTPUT()
|