1999-09-28 00:34:28 +08:00
|
|
|
dnl ## $Id$ -*- sh -*-
|
|
|
|
dnl ## Process this file with autoconf to produce a configure script.
|
1999-04-17 08:37:12 +08:00
|
|
|
|
1999-12-30 10:59:53 +08:00
|
|
|
divert(1)
|
1999-09-28 00:34:28 +08:00
|
|
|
|
1999-04-19 02:06:54 +08:00
|
|
|
AC_INIT(main.c)
|
1999-04-17 08:37:12 +08:00
|
|
|
|
1999-12-30 10:59:53 +08:00
|
|
|
PHP_FAST_OUTPUT(sapi/Makefile ext/Makefile Makefile pear/Makefile)
|
|
|
|
|
1999-12-05 03:56:08 +08:00
|
|
|
dnl Because ``make install'' is often performed by the superuser,
|
|
|
|
dnl we create the libs subdirectory as the user who configures PHP.
|
|
|
|
dnl Otherwise, the current user will not be able to delete libs
|
|
|
|
dnl or the contents of libs.
|
|
|
|
test -d libs || mkdir libs
|
|
|
|
|
1999-07-21 16:26:51 +08:00
|
|
|
if test "$with_shared_apache" != "no" && test -n "$with_shared_apache" ; then
|
1999-11-03 02:27:38 +08:00
|
|
|
AC_MSG_ERROR(--with-shared-apache is not supported. Please refer to the documentation for using APXS)
|
|
|
|
fi
|
|
|
|
|
|
|
|
if test -n "$with_apache" && test -n "$with_apxs"; then
|
|
|
|
AC_MSG_ERROR(--with-apache and --with-apxs cannot be used together)
|
1999-07-21 00:54:05 +08:00
|
|
|
fi
|
|
|
|
|
1999-10-04 23:18:26 +08:00
|
|
|
cwd=`pwd`
|
1999-04-17 08:37:12 +08:00
|
|
|
|
1999-12-03 21:31:41 +08:00
|
|
|
CONFIGURE_COMMAND=$0
|
|
|
|
for arg in "$@"; do
|
|
|
|
CONFIGURE_COMMAND="$CONFIGURE_COMMAND '$arg'"
|
|
|
|
done
|
|
|
|
|
1999-12-30 10:59:53 +08:00
|
|
|
php_shtool="$srcdir/build/shtool"
|
|
|
|
T_MD=`$php_shtool echo -n -e %B`
|
|
|
|
T_ME=`$php_shtool echo -n -e %b`
|
|
|
|
|
|
|
|
dnl ## Diversion 2 is the initial checking of OS features, programs,
|
1999-04-17 08:37:12 +08:00
|
|
|
dnl ## libraries and so on.
|
|
|
|
|
1999-12-30 10:59:53 +08:00
|
|
|
dnl ## In diversion 3 we check for compile-time options to the PHP
|
1999-04-17 08:37:12 +08:00
|
|
|
dnl ## core and how to deal with different system dependencies. This
|
|
|
|
dnl ## includes what regex library is used and whether debugging or short
|
1999-07-25 20:57:50 +08:00
|
|
|
dnl ## tags are enabled, and the default behaviour of php.ini options.
|
1999-04-17 08:37:12 +08:00
|
|
|
dnl ## This is also where an SAPI interface is selected (choosing between
|
|
|
|
dnl ## Apache module, CGI etc.)
|
|
|
|
|
1999-12-30 10:59:53 +08:00
|
|
|
dnl ## In diversion 4 we check which extensions should be compiled.
|
1999-04-17 08:37:12 +08:00
|
|
|
dnl ## All of these are normally in the extension directories.
|
|
|
|
|
1999-12-30 10:59:53 +08:00
|
|
|
dnl ## Diversion 5 is the last one. Here we generate files and clean up.
|
1999-04-17 08:37:12 +08:00
|
|
|
|
1999-12-30 10:59:53 +08:00
|
|
|
divert(2)
|
1999-04-17 08:37:12 +08:00
|
|
|
|
1999-12-30 10:59:53 +08:00
|
|
|
PHP_CONFIGURE_PART(Running system checks)
|
|
|
|
|
1999-04-17 08:37:12 +08:00
|
|
|
dnl ## This is where the version number is changed from now on!
|
1999-11-17 17:38:21 +08:00
|
|
|
AM_INIT_AUTOMAKE(php, 4.0b4-dev)
|
1999-04-17 08:37:12 +08:00
|
|
|
|
|
|
|
PHP_VERSION=$VERSION
|
1999-07-22 05:56:25 +08:00
|
|
|
echo "/* automatically generated by configure */" > php_version.h.new
|
|
|
|
echo "/* edit configure.in.in to change version number */" >> php_version.h.new
|
|
|
|
echo "#define PHP_VERSION \"$PHP_VERSION\"" >> php_version.h.new
|
1999-07-02 21:59:51 +08:00
|
|
|
cmp php_version.h.new php_version.h >/dev/null 2>&1
|
1999-04-25 05:21:35 +08:00
|
|
|
if test $? -ne 0 ; then
|
1999-04-17 08:37:12 +08:00
|
|
|
rm -f php_version.h && mv php_version.h.new php_version.h && \
|
|
|
|
echo 'Updated php_version.h'
|
|
|
|
else
|
|
|
|
rm -f php_version.h.new
|
|
|
|
fi
|
|
|
|
|
1999-05-11 08:01:47 +08:00
|
|
|
AM_CONFIG_HEADER(php_config.h)
|
1999-04-17 08:37:12 +08:00
|
|
|
AM_MAINTAINER_MODE
|
|
|
|
|
|
|
|
dnl We want this one before the checks, so the checks can modify CFLAGS.
|
|
|
|
test -z "$CFLAGS" && auto_cflags=1
|
|
|
|
|
1999-09-16 16:42:25 +08:00
|
|
|
dnl If we're using cc on HP-UX, add -Ae -D_HPUX_SOURCE [obsolete]
|
|
|
|
dnl if test -n "$auto_cflags" && test "`uname -s 2>/dev/null`" = "HP-UX"; then
|
|
|
|
dnl test -n "$GCC" || CFLAGS="-Ae $CFLAGS -D_HPUX_SOURCE"
|
|
|
|
dnl fi
|
1999-07-23 05:11:09 +08:00
|
|
|
|
1999-04-17 08:37:12 +08:00
|
|
|
dnl Checks for programs.
|
|
|
|
AC_PROG_YACC
|
|
|
|
if test "$YACC" != "bison -y"; then
|
|
|
|
AC_MSG_WARN(You will need bison if you want to regenerate the PHP parsers.)
|
|
|
|
else
|
|
|
|
AC_MSG_CHECKING(bison version)
|
1999-07-23 23:29:57 +08:00
|
|
|
oldIFS=$IFS; IFS=.
|
|
|
|
set `bison -V | sed -e 's/^GNU Bison version //'`
|
|
|
|
IFS=$oldIFS
|
1999-04-17 08:37:12 +08:00
|
|
|
if test "$1" = "1" -a "$2" -lt "25"; then
|
1999-07-23 23:29:57 +08:00
|
|
|
AC_MSG_WARN(Bison 1.25 or newer needed to regenerate parsers (found $1.$2).)
|
1999-04-17 08:37:12 +08:00
|
|
|
fi
|
|
|
|
AC_MSG_RESULT($1.$2 (ok))
|
|
|
|
fi
|
|
|
|
|
|
|
|
dnl ## there has to be a better way...
|
|
|
|
dnl## OLDLIBS=$LIBS; LIBS=""
|
|
|
|
AC_PROG_CC
|
|
|
|
dnl## LIBS=$OLDLIBS
|
|
|
|
|
1999-09-16 16:42:25 +08:00
|
|
|
AM_PROG_CC_STDC
|
|
|
|
|
1999-04-17 08:37:12 +08:00
|
|
|
AC_PROG_RANLIB
|
|
|
|
AC_PROG_CC_C_O
|
1999-05-30 00:15:21 +08:00
|
|
|
AC_PROG_LN_S
|
1999-04-17 08:37:12 +08:00
|
|
|
|
1999-10-04 23:18:26 +08:00
|
|
|
AM_PROG_LEX
|
1999-06-28 05:18:43 +08:00
|
|
|
|
|
|
|
dnl Make flex scanners use const if they can, even if __STDC__ is not
|
|
|
|
dnl true, for compilers like Sun's that only set __STDC__ true in
|
|
|
|
dnl "limit-to-ANSI-standard" mode, not in "ANSI-compatible" mode
|
|
|
|
AC_C_CONST
|
|
|
|
if test "$ac_cv_c_const" = "yes" ; then
|
|
|
|
LEX_CFLAGS="-DYY_USE_CONST"
|
|
|
|
fi
|
|
|
|
|
1999-12-20 05:02:54 +08:00
|
|
|
sinclude(Zend/acinclude.m4)
|
|
|
|
sinclude(Zend/Zend.m4)
|
1999-12-17 22:28:35 +08:00
|
|
|
sinclude(TSRM/tsrm.m4)
|
1999-04-17 08:37:12 +08:00
|
|
|
|
|
|
|
dnl check for -R, etc. switch
|
1999-12-30 10:59:53 +08:00
|
|
|
AC_MSG_CHECKING(whether compiler supports -R)
|
1999-04-17 08:37:12 +08:00
|
|
|
AC_CACHE_VAL(php_cv_cc_dashr,[
|
|
|
|
SAVE_LIBS="${LIBS}"
|
|
|
|
LIBS="-R /usr/lib ${LIBS}"
|
|
|
|
AC_TRY_LINK([], [], php_cv_cc_dashr=yes, php_cv_cc_dashr=no)
|
|
|
|
LIBS="${SAVE_LIBS}"])
|
|
|
|
AC_MSG_RESULT($php_cv_cc_dashr)
|
|
|
|
if test $php_cv_cc_dashr = "yes"; then
|
|
|
|
ld_runpath_switch="-R"
|
|
|
|
else
|
1999-12-30 10:59:53 +08:00
|
|
|
AC_MSG_CHECKING([whether compiler supports -Wl,-rpath,])
|
1999-04-17 08:37:12 +08:00
|
|
|
AC_CACHE_VAL(php_cv_cc_rpath,[
|
|
|
|
SAVE_LIBS="${LIBS}"
|
|
|
|
LIBS="-Wl,-rpath,/usr/lib ${LIBS}"
|
|
|
|
AC_TRY_LINK([], [], php_cv_cc_rpath=yes, php_cv_cc_rpath=no)
|
|
|
|
LIBS="${SAVE_LIBS}"])
|
|
|
|
AC_MSG_RESULT($php_cv_cc_rpath)
|
|
|
|
if test $php_cv_cc_rpath = "yes"; then
|
|
|
|
ld_runpath_switch="-Wl,-rpath,"
|
|
|
|
else
|
|
|
|
dnl something innocuous
|
|
|
|
ld_runpath_switch="-L"
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
dnl AC_PROG_INSTALL
|
|
|
|
AC_PATH_PROG(PROG_SENDMAIL, sendmail, /usr/lib/sendmail, $PATH /usr/bin /usr/sbin /usr/etc /etc /usr/ucblib)
|
|
|
|
if test -n "$PROG_SENDMAIL"; then
|
|
|
|
AC_DEFINE(HAVE_SENDMAIL)
|
|
|
|
fi
|
|
|
|
|
|
|
|
dnl
|
|
|
|
dnl Check for /usr/pkg/{lib,include} which is where NetBSD puts binary
|
|
|
|
dnl and source packages. This should be harmless on other OSs.
|
|
|
|
dnl
|
|
|
|
if test -d /usr/pkg/include -a -d /usr/pkg/lib ; then
|
|
|
|
CFLAGS="$CFLAGS -I/usr/pkg/include"
|
|
|
|
LDFLAGS="$LDFLAGS -L/usr/pkg/lib"
|
|
|
|
fi
|
|
|
|
|
1999-12-21 10:35:07 +08:00
|
|
|
INCLUDES="-I\$(top_builddir)/Zend -I\$(top_srcdir)"
|
1999-04-17 08:37:12 +08:00
|
|
|
|
|
|
|
AC_CHECK_LIB(nsl, gethostname, [
|
1999-09-21 22:51:24 +08:00
|
|
|
AC_ADD_LIBRARY(nsl)
|
|
|
|
AC_DEFINE(HAVE_LIBNSL) ], [])
|
1999-04-17 08:37:12 +08:00
|
|
|
|
1999-09-21 22:51:24 +08:00
|
|
|
AC_CHECK_LIB(socket, socket, [
|
|
|
|
AC_ADD_LIBRARY(socket)
|
1999-12-04 21:16:04 +08:00
|
|
|
AC_DEFINE(HAVE_LIBSOCKET) ], [
|
|
|
|
AC_CHECK_LIB(socket, htonl, [
|
|
|
|
AC_ADD_LIBRARY(socket)
|
|
|
|
])])
|
1999-04-17 08:37:12 +08:00
|
|
|
|
1999-09-21 22:51:24 +08:00
|
|
|
AC_CHECK_LIB(nsl, gethostbyaddr, [
|
|
|
|
AC_ADD_LIBRARY(nsl)
|
|
|
|
AC_DEFINE(HAVE_LIBNSL) ], [])
|
1999-04-17 08:37:12 +08:00
|
|
|
|
1999-09-21 22:51:24 +08:00
|
|
|
AC_CHECK_LIB(crypt, crypt, [
|
|
|
|
AC_ADD_LIBRARY(crypt)
|
1999-12-30 12:07:46 +08:00
|
|
|
AC_DEFINE(HAVE_LIBCRYPT,,[ ]) ], [])
|
1999-04-17 08:37:12 +08:00
|
|
|
|
|
|
|
dnl The sin may be in a library which need not be specifed
|
|
|
|
dnl as well as res_search resides in libsocket
|
1999-09-21 22:51:24 +08:00
|
|
|
AC_CHECK_LIB(m, sin)
|
1999-04-17 08:37:12 +08:00
|
|
|
|
1999-12-04 21:16:04 +08:00
|
|
|
AC_CHECK_LIB(bind, inet_aton, [
|
1999-12-05 02:03:00 +08:00
|
|
|
AC_ADD_LIBRARY(bind)
|
1999-12-08 02:18:17 +08:00
|
|
|
AC_DEFINE(HAVE_LIBBIND) ], [])
|
1999-12-04 21:16:04 +08:00
|
|
|
|
1999-12-04 02:53:41 +08:00
|
|
|
AC_CHECK_LIB(resolv, inet_aton)
|
|
|
|
|
1999-04-17 08:37:12 +08:00
|
|
|
dnl The res_search may be in libsocket as well, and if it is
|
|
|
|
dnl make sure to check for dn_skipname in libresolv, or if res_search
|
|
|
|
dnl is in neither of these libs, still check for dn_skipname in libresolv
|
|
|
|
AC_CHECK_LIB(socket, res_search, [
|
|
|
|
AC_CHECK_LIB(resolv, dn_skipname)
|
1999-04-26 06:16:44 +08:00
|
|
|
AC_CHECK_LIB(resolv, __dn_skipname)
|
1999-04-17 08:37:12 +08:00
|
|
|
LIBS="$LIBS -lsocket"
|
|
|
|
AC_DEFINE(HAVE_LIBSOCKET) ], [
|
|
|
|
AC_CHECK_LIB(resolv, res_search, [
|
|
|
|
LIBS="$LIBS -lresolv"
|
|
|
|
AC_DEFINE(HAVE_LIBRESOLV)
|
|
|
|
], [
|
|
|
|
AC_CHECK_LIB(resolv, dn_skipname)
|
1999-04-26 06:16:44 +08:00
|
|
|
AC_CHECK_LIB(resolv, __dn_skipname)
|
1999-04-17 08:37:12 +08:00
|
|
|
])
|
|
|
|
])
|
|
|
|
|
|
|
|
dnl Checks for header files.
|
|
|
|
AC_HEADER_STDC
|
|
|
|
|
|
|
|
dnl In QNX opendir resides in libc but dirent.h is still required
|
|
|
|
if test "`uname -s 2>/dev/null`" != "QNX"; then
|
|
|
|
AC_HEADER_DIRENT
|
|
|
|
else
|
|
|
|
AC_CHECK_HEADERS(dirent.h)
|
|
|
|
fi
|
|
|
|
AC_MISSING_FCLOSE_DECL
|
|
|
|
dnl QNX requires unix.h to allow functions in libunix to work properly
|
1999-09-18 20:14:49 +08:00
|
|
|
AC_CHECK_HEADERS(
|
|
|
|
arpa/inet.h \
|
|
|
|
crypt.h \
|
|
|
|
dlfcn.h \
|
|
|
|
fcntl.h \
|
|
|
|
grp.h \
|
|
|
|
limits.h \
|
|
|
|
locale.h \
|
|
|
|
memory.h \
|
|
|
|
netinet/in.h \
|
|
|
|
pwd.h \
|
|
|
|
signal.h \
|
|
|
|
stdarg.h \
|
|
|
|
stdlib.h \
|
|
|
|
string.h \
|
|
|
|
sys/file.h \
|
|
|
|
sys/mman.h \
|
|
|
|
sys/select.h \
|
|
|
|
sys/socket.h \
|
|
|
|
sys/statfs.h \
|
|
|
|
sys/statvfs.h \
|
|
|
|
sys/time.h \
|
|
|
|
sys/types.h \
|
|
|
|
sys/varargs.h \
|
|
|
|
sys/wait.h \
|
|
|
|
syslog.h \
|
|
|
|
unistd.h \
|
|
|
|
unix.h \
|
|
|
|
)
|
1999-04-17 08:37:12 +08:00
|
|
|
|
|
|
|
dnl Checks for typedefs, structures, and compiler characteristics.
|
|
|
|
AC_STRUCT_TM
|
|
|
|
AC_STRUCT_TIMEZONE
|
|
|
|
|
1999-12-30 10:59:53 +08:00
|
|
|
PHP_TM_GMTOFF
|
|
|
|
PHP_STRUCT_FLOCK
|
|
|
|
PHP_SOCKLEN_T
|
1999-04-25 04:43:58 +08:00
|
|
|
|
1999-05-16 19:55:34 +08:00
|
|
|
AC_CHECK_SIZEOF(long, 8)
|
|
|
|
AC_CHECK_SIZEOF(int, 4)
|
|
|
|
|
1999-12-05 03:56:08 +08:00
|
|
|
test -d /usr/ucblib && AC_ADD_LIBPATH(/usr/ucblib)
|
|
|
|
|
1999-04-17 08:37:12 +08:00
|
|
|
dnl Check for members of the stat structure
|
|
|
|
AC_STRUCT_ST_BLKSIZE
|
|
|
|
dnl AC_STRUCT_ST_BLOCKS will screw QNX because fileblocks.o does not exists
|
|
|
|
dnl The WARNING_LEVEL required because cc in QNX hates -w option without an argument
|
|
|
|
if test "`uname -s 2>/dev/null`" != "QNX"; then
|
|
|
|
AC_STRUCT_ST_BLOCKS
|
|
|
|
else
|
|
|
|
AC_MSG_WARN(warnings level for cc set to 0)
|
|
|
|
WARNING_LEVEL=0
|
|
|
|
fi
|
|
|
|
AC_STRUCT_ST_RDEV
|
|
|
|
|
|
|
|
dnl Checks for types
|
|
|
|
AC_TYPE_SIZE_T
|
|
|
|
AC_TYPE_UID_T
|
|
|
|
dnl This is required for QNX and may be some BSD derived systems
|
|
|
|
AC_CHECK_TYPE( uint, unsigned int )
|
|
|
|
AC_CHECK_TYPE( ulong, unsigned long )
|
|
|
|
|
|
|
|
dnl Checks for library functions.
|
|
|
|
AC_FUNC_VPRINTF
|
1999-09-21 22:51:24 +08:00
|
|
|
AC_CHECK_FUNCS(
|
1999-11-27 01:07:41 +08:00
|
|
|
asctime_r \
|
1999-09-21 22:51:24 +08:00
|
|
|
crypt \
|
1999-11-27 01:07:41 +08:00
|
|
|
ctime_r \
|
1999-09-21 22:51:24 +08:00
|
|
|
cuserid \
|
|
|
|
flock \
|
|
|
|
gcvt \
|
|
|
|
getlogin \
|
|
|
|
gethostbyaddr \
|
|
|
|
gettimeofday \
|
1999-11-27 01:07:41 +08:00
|
|
|
gmtime_r \
|
1999-09-21 22:51:24 +08:00
|
|
|
inet_aton \
|
|
|
|
link \
|
1999-11-27 01:07:41 +08:00
|
|
|
localtime_r \
|
1999-09-21 22:51:24 +08:00
|
|
|
lockf \
|
|
|
|
lrand48 \
|
|
|
|
memcpy \
|
|
|
|
memmove \
|
|
|
|
mmap \
|
|
|
|
putenv \
|
|
|
|
random \
|
1999-11-27 01:33:53 +08:00
|
|
|
rand_r \
|
1999-09-21 22:51:24 +08:00
|
|
|
regcomp \
|
|
|
|
rint \
|
|
|
|
setitimer \
|
|
|
|
setlocale \
|
|
|
|
setsockopt \
|
|
|
|
setvbuf \
|
|
|
|
shutdown \
|
|
|
|
sin \
|
|
|
|
snprintf \
|
|
|
|
srand48 \
|
|
|
|
srandom \
|
|
|
|
statfs \
|
|
|
|
statvfs \
|
|
|
|
strcasecmp \
|
|
|
|
strdup \
|
|
|
|
strerror \
|
|
|
|
strftime \
|
|
|
|
strstr \
|
1999-11-27 01:33:53 +08:00
|
|
|
strtok_r \
|
1999-09-21 22:51:24 +08:00
|
|
|
symlink \
|
|
|
|
tempnam \
|
|
|
|
tzset \
|
|
|
|
unsetenv \
|
|
|
|
usleep \
|
|
|
|
utime \
|
|
|
|
vsnprintf \
|
|
|
|
)
|
|
|
|
|
1999-11-27 01:33:53 +08:00
|
|
|
AC_REPLACE_FUNCS(strlcat strlcpy getopt)
|
1999-04-17 08:37:12 +08:00
|
|
|
AC_FUNC_UTIME_NULL
|
|
|
|
AC_FUNC_ALLOCA
|
1999-12-20 04:08:40 +08:00
|
|
|
AC_BROKEN_SPRINTF
|
1999-04-17 08:37:12 +08:00
|
|
|
|
|
|
|
dnl AIX keeps in_addr_t in /usr/include/netinet/in.h
|
|
|
|
dnl AC_MSG_CHECKING(for in_addr_t)
|
|
|
|
AC_CACHE_VAL(ac_cv_type_$1,
|
|
|
|
[AC_EGREP_CPP(dnl
|
|
|
|
changequote(<<,>>)dnl
|
|
|
|
<<in_addr_t[^a-zA-Z_0-9]>>dnl
|
|
|
|
changequote([,]), [#include <sys/types.h>
|
|
|
|
#if STDC_HEADERS
|
|
|
|
#include <stdlib.h>
|
|
|
|
#include <stddef.h>
|
|
|
|
#endif
|
|
|
|
#ifdef HAVE_NETINET_IN_H
|
|
|
|
#include <netinet/in.h>
|
|
|
|
#endif], ac_cv_type_in_addr_t=yes, ac_cv_type_in_addr_t=no)])dnl
|
|
|
|
|
|
|
|
dnl AC_MSG_RESULT($ac_cv_type_in_addr_t)
|
|
|
|
if test $ac_cv_type_in_addr_t = no; then
|
|
|
|
AC_DEFINE(in_addr_t, u_int)
|
|
|
|
fi
|
|
|
|
|
1999-12-30 10:59:53 +08:00
|
|
|
divert(3)
|
|
|
|
|
1999-04-17 08:37:12 +08:00
|
|
|
|
1999-12-30 10:59:53 +08:00
|
|
|
|
1999-05-29 06:41:48 +08:00
|
|
|
abs_srcdir=`(cd $srcdir; pwd)`
|
|
|
|
abs_builddir=`pwd`
|
|
|
|
|
1999-04-17 08:37:12 +08:00
|
|
|
AC_MSG_CHECKING(whether to use a configuration file)
|
|
|
|
AC_ARG_WITH(config-file-path,
|
1999-09-16 23:35:49 +08:00
|
|
|
[ --with-config-file-path=PATH
|
|
|
|
Sets the path in which to look for php.ini.
|
1999-04-17 08:37:12 +08:00
|
|
|
defaults to /usr/local/lib],
|
|
|
|
[
|
|
|
|
if test "$withval" = "yes"; then
|
|
|
|
AC_DEFINE_UNQUOTED(CONFIGURATION_FILE_PATH, "/usr/local/lib")
|
|
|
|
AC_DEFINE(USE_CONFIG_FILE, 1)
|
|
|
|
AC_MSG_RESULT(yes)
|
|
|
|
else
|
|
|
|
if test "$withval" != "no"; then
|
|
|
|
AC_DEFINE_UNQUOTED(CONFIGURATION_FILE_PATH, "$withval")
|
|
|
|
AC_DEFINE(USE_CONFIG_FILE, 1)
|
|
|
|
AC_MSG_RESULT(yes)
|
|
|
|
else
|
|
|
|
AC_DEFINE(CONFIGURATION_FILE_PATH, 0)
|
|
|
|
AC_DEFINE(USE_CONFIG_FILE, 0)
|
|
|
|
AC_MSG_RESULT(no)
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
],[
|
|
|
|
AC_DEFINE_UNQUOTED(CONFIGURATION_FILE_PATH, "/usr/local/lib")
|
|
|
|
AC_DEFINE(USE_CONFIG_FILE, 1)
|
|
|
|
AC_MSG_RESULT(yes)
|
|
|
|
])
|
|
|
|
|
|
|
|
|
|
|
|
AC_ARG_ENABLE(debug,
|
1999-12-17 22:28:35 +08:00
|
|
|
[ --disable-debug Compile without debugging symbols], [
|
|
|
|
PHP_DEBUG=$enableval
|
1999-04-17 08:37:12 +08:00
|
|
|
],[
|
1999-12-17 22:28:35 +08:00
|
|
|
PHP_DEBUG=yes
|
|
|
|
])
|
|
|
|
|
|
|
|
AC_MSG_CHECKING(whether to include debugging symbols)
|
|
|
|
AC_MSG_RESULT($PHP_DEBUG)
|
|
|
|
|
1999-12-20 16:10:38 +08:00
|
|
|
if test "$PHP_DEBUG" = "yes"; then
|
1999-07-18 00:43:11 +08:00
|
|
|
AC_DEFINE(DEBUG,1)
|
|
|
|
PHP_DEBUG=1
|
1999-12-17 22:28:35 +08:00
|
|
|
ZEND_DEBUG=yes
|
|
|
|
else
|
|
|
|
AC_DEFINE(DEBUG,0)
|
|
|
|
PHP_DEBUG=0
|
|
|
|
ZEND_DEBUG=no
|
|
|
|
fi
|
|
|
|
|
|
|
|
|
|
|
|
test -n "$DEBUG_CFLAGS" && CFLAGS="$CFLAGS $DEBUG_CFLAGS"
|
1999-04-17 08:37:12 +08:00
|
|
|
|
|
|
|
|
|
|
|
AC_MSG_CHECKING(whether to enable safe mode by default)
|
|
|
|
AC_ARG_ENABLE(safe-mode,
|
|
|
|
[ --enable-safe-mode Enable safe mode by default.],
|
|
|
|
[
|
|
|
|
if test "$enableval" = "yes"; then
|
|
|
|
AC_DEFINE(PHP_SAFE_MODE, 1)
|
|
|
|
AC_MSG_RESULT(yes)
|
|
|
|
else
|
|
|
|
AC_DEFINE(PHP_SAFE_MODE, 0)
|
|
|
|
AC_MSG_RESULT(no)
|
|
|
|
fi
|
|
|
|
],[
|
|
|
|
AC_DEFINE(PHP_SAFE_MODE, 0)
|
|
|
|
AC_MSG_RESULT(no)
|
|
|
|
])
|
|
|
|
|
|
|
|
|
|
|
|
AC_MSG_CHECKING(for safe mode exec dir)
|
|
|
|
AC_ARG_WITH(exec-dir,
|
|
|
|
[ --with-exec-dir[=DIR] Only allow executables in DIR when in safe mode
|
|
|
|
defaults to /usr/local/php/bin],
|
|
|
|
[
|
|
|
|
if test "$withval" != "no"; then
|
|
|
|
if test "$withval" = "yes"; then
|
|
|
|
AC_DEFINE(PHP_SAFE_MODE_EXEC_DIR,"/usr/local/php/bin")
|
|
|
|
AC_MSG_RESULT(/usr/local/php/bin)
|
|
|
|
else
|
|
|
|
AC_DEFINE_UNQUOTED(PHP_SAFE_MODE_EXEC_DIR,"$withval")
|
|
|
|
AC_MSG_RESULT($withval)
|
|
|
|
fi
|
|
|
|
else
|
|
|
|
AC_DEFINE(PHP_SAFE_MODE_EXEC_DIR,"/usr/local/php/bin")
|
|
|
|
AC_MSG_RESULT(/usr/local/php/bin)
|
|
|
|
fi
|
|
|
|
],[
|
|
|
|
AC_DEFINE(PHP_SAFE_MODE_EXEC_DIR,"/usr/local/php/bin")
|
|
|
|
AC_MSG_RESULT(/usr/local/php/bin)
|
|
|
|
])
|
|
|
|
|
|
|
|
|
|
|
|
AC_MSG_CHECKING(whether to enable track_vars variables by default)
|
|
|
|
AC_ARG_ENABLE(track-vars,
|
|
|
|
[ --enable-track-vars Enable GET/POST/Cookie track variables by default.],
|
|
|
|
[
|
|
|
|
if test "$enableval" = "yes"; then
|
|
|
|
AC_DEFINE(PHP_TRACK_VARS, 1)
|
|
|
|
AC_MSG_RESULT(yes)
|
|
|
|
else
|
|
|
|
AC_DEFINE(PHP_TRACK_VARS, 0)
|
|
|
|
AC_MSG_RESULT(no)
|
|
|
|
fi
|
|
|
|
],[
|
|
|
|
AC_DEFINE(PHP_TRACK_VARS, 0)
|
|
|
|
AC_MSG_RESULT(no)
|
|
|
|
])
|
|
|
|
|
|
|
|
|
|
|
|
AC_MSG_CHECKING(whether to enable magic quotes by default)
|
|
|
|
AC_ARG_ENABLE(magic-quotes,
|
|
|
|
[ --enable-magic-quotes Enable magic quotes by default.],
|
|
|
|
[
|
|
|
|
if test "$enableval" = "yes"; then
|
|
|
|
AC_DEFINE(MAGIC_QUOTES, 1)
|
|
|
|
AC_MSG_RESULT(yes)
|
|
|
|
else
|
|
|
|
AC_DEFINE(MAGIC_QUOTES, 0)
|
|
|
|
AC_MSG_RESULT(no)
|
|
|
|
fi
|
|
|
|
],[
|
|
|
|
AC_DEFINE(MAGIC_QUOTES, 0)
|
|
|
|
AC_MSG_RESULT(no)
|
|
|
|
])
|
|
|
|
|
|
|
|
|
1999-09-26 17:05:56 +08:00
|
|
|
AC_MSG_CHECKING(whether to enable runpaths)
|
|
|
|
AC_ARG_ENABLE(rpath,
|
|
|
|
[ --disable-rpath Disable passing additional runtime library
|
|
|
|
search paths],
|
|
|
|
[
|
|
|
|
if test "$enableval" = "no"; then
|
|
|
|
enable_rpath=no
|
|
|
|
else
|
|
|
|
enable_rpath=yes
|
|
|
|
fi
|
|
|
|
],[
|
|
|
|
enable_rpath=yes
|
|
|
|
])
|
|
|
|
AC_MSG_RESULT($enable_rpath)
|
|
|
|
|
1999-04-17 08:37:12 +08:00
|
|
|
AC_MSG_CHECKING(whether to enable short tags by default)
|
|
|
|
AC_ARG_ENABLE(short-tags,
|
|
|
|
[ --disable-short-tags Disable the short-form <? start tag by default.],
|
|
|
|
[
|
|
|
|
if test "$enableval" = "no"; then
|
|
|
|
AC_DEFINE(DEFAULT_SHORT_OPEN_TAG, 0)
|
|
|
|
AC_MSG_RESULT(no)
|
|
|
|
else
|
|
|
|
AC_DEFINE(DEFAULT_SHORT_OPEN_TAG, 1)
|
|
|
|
AC_MSG_RESULT(yes)
|
|
|
|
fi
|
|
|
|
],[
|
|
|
|
AC_DEFINE(DEFAULT_SHORT_OPEN_TAG, 1)
|
|
|
|
AC_MSG_RESULT(yes)
|
|
|
|
])
|
|
|
|
|
|
|
|
AC_MSG_CHECKING(whether to enable the URL-aware fopen wrapper)
|
|
|
|
AC_ARG_ENABLE(url-fopen-wrapper,
|
1999-09-16 23:35:49 +08:00
|
|
|
[ --disable-url-fopen-wrapper
|
|
|
|
Disable the URL-aware fopen wrapper that allows
|
|
|
|
accessing files via http or ftp.],
|
1999-04-17 08:37:12 +08:00
|
|
|
[
|
|
|
|
if test "$enableval" = "yes"; then
|
|
|
|
AC_DEFINE(PHP3_URL_FOPEN, 1)
|
|
|
|
AC_MSG_RESULT(yes)
|
|
|
|
else
|
|
|
|
AC_DEFINE(PHP3_URL_FOPEN, 0)
|
|
|
|
AC_MSG_RESULT(no)
|
|
|
|
fi
|
|
|
|
],[
|
|
|
|
AC_DEFINE(PHP3_URL_FOPEN, 1)
|
|
|
|
AC_MSG_RESULT(yes)
|
|
|
|
])
|
|
|
|
|
1999-06-26 08:34:36 +08:00
|
|
|
DMALLOC_RESULT=no
|
|
|
|
AC_MSG_CHECKING(whether to enable dmalloc)
|
|
|
|
AC_ARG_ENABLE(dmalloc,
|
1999-09-14 01:17:51 +08:00
|
|
|
[ --enable-dmalloc Enable dmalloc],
|
1999-06-26 08:34:36 +08:00
|
|
|
[
|
|
|
|
if test "$enableval" = "yes" ; then
|
|
|
|
AC_DEFINE(HAVE_DMALLOC, 1)
|
|
|
|
AC_ADD_LIBRARY(dmalloc)
|
|
|
|
CFLAGS="$CFLAGS -DDMALLOC_FUNC_CHECK"
|
|
|
|
DMALLOC_RESULT=yes
|
|
|
|
fi
|
|
|
|
])
|
|
|
|
AC_MSG_RESULT($DMALLOC_RESULT)
|
1999-04-17 08:37:12 +08:00
|
|
|
|
1999-12-19 21:59:29 +08:00
|
|
|
AC_ARG_ENABLE(pear,
|
|
|
|
[ --disable-pear Do not install PEAR],[
|
|
|
|
PHP_PEAR=$enableval
|
1999-12-19 07:25:55 +08:00
|
|
|
],[
|
1999-12-19 21:59:29 +08:00
|
|
|
PHP_PEAR=yes
|
1999-12-19 07:25:55 +08:00
|
|
|
])
|
1999-12-19 21:59:29 +08:00
|
|
|
|
|
|
|
AC_MSG_CHECKING(whether to install PEAR)
|
|
|
|
AC_MSG_RESULT($PHP_PEAR)
|
|
|
|
|
|
|
|
if test "$PHP_PEAR" = "yes"; then
|
|
|
|
PEAR_DIR=pear
|
|
|
|
fi
|
|
|
|
|
1999-12-19 07:25:55 +08:00
|
|
|
|
1999-09-28 00:34:28 +08:00
|
|
|
PHP_SAPI=cgi
|
1999-10-04 23:18:26 +08:00
|
|
|
PHP_BUILD_PROGRAM
|
1999-10-08 05:04:26 +08:00
|
|
|
dnl paths to the targets relative to the build directory
|
|
|
|
SAPI_PROGRAM=php
|
1999-12-30 10:59:53 +08:00
|
|
|
dnl on HP-UX, the extension is .sl. Need to improve this
|
1999-10-08 05:04:26 +08:00
|
|
|
SAPI_SHARED=libs/libphp4.so
|
|
|
|
SAPI_STATIC=libs/libphp4.a
|
1999-09-28 00:34:28 +08:00
|
|
|
|
1999-12-30 10:59:53 +08:00
|
|
|
PHP_CONFIGURE_PART(Configuring SAPI modules)
|
1999-09-28 00:34:28 +08:00
|
|
|
|
1999-12-30 10:59:53 +08:00
|
|
|
esyscmd(./scripts/config-stubs sapi)
|
1999-04-17 08:37:12 +08:00
|
|
|
|
1999-12-30 10:59:53 +08:00
|
|
|
AC_MSG_CHECKING(for chosen SAPI module)
|
|
|
|
AC_MSG_RESULT($PHP_SAPI)
|
|
|
|
|
|
|
|
divert(4)
|
1999-04-17 10:01:20 +08:00
|
|
|
|
1999-12-30 10:59:53 +08:00
|
|
|
PHP_CONFIGURE_PART(Configuring extensions)
|
|
|
|
|
1999-04-17 08:37:12 +08:00
|
|
|
# reading config stubs
|
1999-09-28 00:34:28 +08:00
|
|
|
esyscmd(./scripts/config-stubs ext)
|
1999-04-17 08:37:12 +08:00
|
|
|
|
1999-12-30 10:59:53 +08:00
|
|
|
PHP_FAST_OUTPUT(sapi/$PHP_SAPI/Makefile)
|
1999-09-30 06:18:43 +08:00
|
|
|
|
1999-11-21 03:00:17 +08:00
|
|
|
AC_MSG_CHECKING(whether to enable versioning)
|
|
|
|
AC_ARG_ENABLE(versioning,
|
|
|
|
[ --enable-versioning Export only required symbols.
|
1999-11-27 19:33:13 +08:00
|
|
|
See INSTALL for more information],[
|
|
|
|
PHP_VERSIONING=$enableval
|
|
|
|
],[
|
|
|
|
PHP_VERSIONING=no
|
|
|
|
])
|
|
|
|
AC_MSG_RESULT($PHP_VERSIONING)
|
|
|
|
|
|
|
|
if test "$PHP_VERSIONING" = "yes"; then
|
1999-11-21 03:00:17 +08:00
|
|
|
test -z "$PHP_SYM_FILE" && PHP_SYM_FILE="$abs_srcdir/sapi/$PHP_SAPI/php.sym"
|
1999-11-27 19:33:13 +08:00
|
|
|
if test -f "$PHP_SYM_FILE"; then
|
1999-11-21 03:00:17 +08:00
|
|
|
EXTRA_LDFLAGS="-export-symbols $PHP_SYM_FILE"
|
|
|
|
fi
|
1999-11-27 19:33:13 +08:00
|
|
|
fi
|
1999-12-01 05:22:02 +08:00
|
|
|
|
1999-12-30 10:59:53 +08:00
|
|
|
divert(5)
|
1999-04-17 08:37:12 +08:00
|
|
|
|
1999-10-04 23:18:26 +08:00
|
|
|
enable_shared=yes
|
|
|
|
enable_static=yes
|
|
|
|
|
|
|
|
case "$php_build_target" in
|
|
|
|
program)
|
1999-12-17 22:36:53 +08:00
|
|
|
enable_shared=no
|
1999-10-04 23:18:26 +08:00
|
|
|
PHP_PROGRAM=php
|
|
|
|
;;
|
|
|
|
shared)
|
1999-12-17 22:36:53 +08:00
|
|
|
enable_static=no
|
1999-10-07 18:03:24 +08:00
|
|
|
EXTRA_LDFLAGS="$EXTRA_LDFLAGS -avoid-version"
|
1999-10-04 23:18:26 +08:00
|
|
|
;;
|
|
|
|
static)
|
1999-12-17 22:36:53 +08:00
|
|
|
enable_shared=no
|
1999-10-04 23:18:26 +08:00
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
1999-11-14 00:51:33 +08:00
|
|
|
PHP_REGEX
|
1999-11-13 04:56:30 +08:00
|
|
|
|
1999-12-23 05:02:31 +08:00
|
|
|
case "`uname -s`" in
|
|
|
|
SunOS*)
|
|
|
|
CPPFLAGS="$CPPFLAGS -D_POSIX_PTHREAD_SEMANTICS";;
|
|
|
|
esac
|
1999-04-17 08:37:12 +08:00
|
|
|
|
1999-12-23 05:02:31 +08:00
|
|
|
CPPFLAGS="$CPPFLAGS -D_REENTRANT"
|
1999-12-02 06:59:45 +08:00
|
|
|
|
1999-12-30 10:59:53 +08:00
|
|
|
PHP_CONFIGURE_PART(Configuring Zend)
|
1999-12-17 22:28:35 +08:00
|
|
|
LIBZEND_BASIC_CHECKS
|
|
|
|
LIBZEND_OTHER_CHECKS
|
|
|
|
|
1999-12-21 08:15:51 +08:00
|
|
|
if test "$ZEND_EXPERIMENTAL_ZTS" = "yes"; then
|
1999-11-18 05:06:32 +08:00
|
|
|
TSRM_LIB='TSRM/libtsrm.la'
|
|
|
|
TSRM_DIR=TSRM
|
|
|
|
AC_DEFINE(ZTS)
|
1999-12-21 10:35:07 +08:00
|
|
|
INCLUDES="$INCLUDES -I\$(top_builddir)/TSRM"
|
1999-11-27 19:33:13 +08:00
|
|
|
PHP_THREAD_SAFETY=yes
|
|
|
|
else
|
|
|
|
PHP_THREAD_SAFETY=no
|
1999-11-18 05:06:32 +08:00
|
|
|
fi
|
|
|
|
|
1999-12-21 10:35:07 +08:00
|
|
|
if test "$abs_srcdir" != "$abs_builddir"; then
|
|
|
|
INCLUDES="$INCLUDES -I\$(top_srcdir)/Zend"
|
|
|
|
if test "$PHP_THREAD_SAFETY" = "yes"; then
|
|
|
|
INCLUDES="$INCLUDES -I\$(top_srcdir)/TSRM"
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
1999-04-17 08:37:12 +08:00
|
|
|
dnl *** Commented out - generates slow code and consumes a lot of
|
|
|
|
dnl *** resources during compilation - we need to figure out how
|
|
|
|
dnl *** to supply it only when absolutely necessary
|
|
|
|
dnl If we are using gcc add -fpic to make dl() work on some platforms
|
|
|
|
dnl test -n "$GCC" && CFLAGS="$CFLAGS -fpic"
|
|
|
|
|
1999-07-25 03:02:38 +08:00
|
|
|
dnl add -fPIC option on Solaris if we are building dynamic extensions
|
1999-10-04 23:18:26 +08:00
|
|
|
dnl PHP_SOLARIS_PIC_WEIRDNESS
|
1999-07-25 03:02:38 +08:00
|
|
|
|
1999-12-23 06:38:10 +08:00
|
|
|
EXTRA_LIBS="$EXTRA_LIBS $LIBS"
|
|
|
|
LIBS=""
|
1999-12-23 06:24:20 +08:00
|
|
|
LDFLAGS=""
|
1999-12-22 02:04:31 +08:00
|
|
|
if test "$PHP_THREAD_SAFETY" = "yes"; then
|
1999-12-30 10:59:53 +08:00
|
|
|
PHP_CONFIGURE_PART(Configuring TSRM)
|
1999-12-22 02:04:31 +08:00
|
|
|
TSRM_BASIC_CHECKS
|
|
|
|
TSRM_OTHER_CHECKS
|
1999-12-23 06:24:20 +08:00
|
|
|
EXTRA_LDFLAGS="$EXTRA_LDFLAGS $LDFLAGS"
|
1999-12-24 23:47:44 +08:00
|
|
|
EXTRA_LIBS="$EXTRA_LIBS $LIBS"
|
1999-12-23 06:24:20 +08:00
|
|
|
LDFLAGS=""
|
1999-12-24 23:47:44 +08:00
|
|
|
LIBS=""
|
1999-12-30 10:59:53 +08:00
|
|
|
PHP_OUTPUT(TSRM/Makefile)
|
1999-12-22 02:04:31 +08:00
|
|
|
fi
|
|
|
|
|
1999-09-26 17:05:56 +08:00
|
|
|
|
1999-10-04 23:18:26 +08:00
|
|
|
phplibdir="`pwd`/modules"
|
|
|
|
phptempdir="`pwd`/libs"
|
|
|
|
|
1999-12-06 06:41:08 +08:00
|
|
|
AC_BUILD_RPATH
|
|
|
|
|
1999-12-07 23:22:49 +08:00
|
|
|
EXTRA_LDFLAGS="$EXTRA_LDFLAGS $PHP_LDFLAGS"
|
1999-07-23 05:11:09 +08:00
|
|
|
|
1999-04-17 08:37:12 +08:00
|
|
|
PHP_BUILD_DATE=`date '+%Y-%m-%d'`
|
|
|
|
AC_DEFINE_UNQUOTED(PHP_BUILD_DATE,"$PHP_BUILD_DATE")
|
|
|
|
PHP_UNAME=`uname -a`
|
|
|
|
AC_DEFINE_UNQUOTED(PHP_UNAME,"$PHP_UNAME")
|
|
|
|
PHP_OS=`uname`
|
|
|
|
AC_DEFINE_UNQUOTED(PHP_OS,"$PHP_OS")
|
|
|
|
|
1999-12-30 10:59:53 +08:00
|
|
|
|
1999-12-17 22:28:35 +08:00
|
|
|
|
1999-12-30 10:59:53 +08:00
|
|
|
PHP_SUBST(abs_builddir)
|
|
|
|
PHP_SUBST(abs_srcdir)
|
|
|
|
PHP_SUBST(bindir)
|
|
|
|
PHP_SUBST(exec_prefix)
|
|
|
|
PHP_SUBST(includedir)
|
|
|
|
PHP_SUBST(libdir)
|
|
|
|
PHP_SUBST(phplibdir)
|
|
|
|
PHP_SUBST(phptempdir)
|
|
|
|
PHP_SUBST(prefix)
|
|
|
|
|
|
|
|
PHP_SUBST(CC)
|
|
|
|
PHP_SUBST(CFLAGS)
|
|
|
|
PHP_SUBST(CONFIGURE_COMMAND)
|
|
|
|
PHP_SUBST(CPP)
|
|
|
|
PHP_SUBST(CPPFLAGS)
|
|
|
|
PHP_SUBST(CXX)
|
|
|
|
PHP_SUBST(DEBUG_CFLAGS)
|
|
|
|
PHP_SUBST(DEFS)
|
|
|
|
PHP_SUBST(EXTRA_LDFLAGS)
|
|
|
|
PHP_SUBST(EXTRA_LIBS)
|
|
|
|
PHP_SUBST(INCLUDES)
|
|
|
|
PHP_SUBST(INSTALL_IT)
|
|
|
|
PHP_SUBST(LEX)
|
|
|
|
PHP_SUBST(LEX_OUTPUT_ROOT)
|
|
|
|
PHP_SUBST(LFLAGS)
|
|
|
|
PHP_SUBST(LIBTOOL)
|
|
|
|
PHP_SUBST(NATIVE_RPATHS)
|
|
|
|
PHP_SUBST(PEAR_DIR)
|
|
|
|
PHP_SUBST(PHP_BUILD_DATE)
|
|
|
|
PHP_SUBST(PHP_COMPILE)
|
|
|
|
PHP_SUBST(PHP_LDFLAGS)
|
|
|
|
PHP_SUBST(PHP_LIBS)
|
|
|
|
PHP_SUBST(PHP_PROGRAM)
|
|
|
|
PHP_SUBST(PHP_RPATHS)
|
|
|
|
PHP_SUBST(PHP_SAPI)
|
|
|
|
PHP_SUBST(PHP_VERSION)
|
|
|
|
PHP_SUBST(PROG_SENDMAIL)
|
|
|
|
PHP_SUBST(SHELL)
|
|
|
|
PHP_SUBST(SHLIBTOOL)
|
|
|
|
PHP_SUBST(TSRM_DIR)
|
|
|
|
PHP_SUBST(TSRM_LIB)
|
|
|
|
PHP_SUBST(WARNING_LEVEL)
|
|
|
|
PHP_SUBST(YACC)
|
|
|
|
|
|
|
|
PHP_CONFIGURE_PART(Configuring libtool)
|
|
|
|
AM_PROG_LIBTOOL
|
|
|
|
if test "$enable_debug" != "yes"; then
|
|
|
|
AM_SET_LIBTOOL_VARIABLE([--silent])
|
|
|
|
fi
|
|
|
|
|
|
|
|
PHP_COMPILE='$(LIBTOOL) --mode=compile $(COMPILE) -c $<'
|
|
|
|
|
|
|
|
if test "$enable_shared" = "yes"; then
|
|
|
|
SHLIBTOOL='$(LIBTOOL)'
|
|
|
|
else
|
|
|
|
if test -n "$EXT_SHARED"; then
|
|
|
|
PHP_CONFIGURE_PART(Configuring shared libtool)
|
|
|
|
$SHELL $srcdir/ltconfig --output=shlibtool --disable-static --srcdir=$srcdir --cache-file=./config.cache $srcdir/ltmain.sh
|
|
|
|
SHLIBTOOL='$(SHELL) $(top_builddir)/shlibtool'
|
|
|
|
else
|
|
|
|
PHP_COMPILE='$(COMPILE) -c $< && touch $@'
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
test "$prefix" = "NONE" && prefix="/usr/local"
|
|
|
|
test "$exec_prefix" = "NONE" && exec_prefix='$(prefix)'
|
|
|
|
|
|
|
|
PHP_CONFIGURE_PART(Generating files)
|
|
|
|
|
|
|
|
PHP_FAST_GENERATE
|
|
|
|
|
1999-09-29 23:17:02 +08:00
|
|
|
#libphp4.module
|
1999-12-30 10:59:53 +08:00
|
|
|
AC_OUTPUT([php4.spec Zend/Makefile
|
|
|
|
scripts/mkextlib build-defs.h
|
|
|
|
$PHP_OUTPUT_FILES
|
|
|
|
], [], [
|
1999-04-17 08:37:12 +08:00
|
|
|
|
1999-07-17 18:59:22 +08:00
|
|
|
if test ! -f $srcdir/ext/bcmath/number.c; then
|
|
|
|
echo "creating number.c"
|
|
|
|
echo "/* Dummy File */" > $srcdir/ext/bcmath/number.c
|
|
|
|
echo "creating number.h"
|
|
|
|
echo "/* Dummy File */" > $srcdir/ext/bcmath/number.h
|
|
|
|
fi
|
|
|
|
|
1999-12-17 22:28:35 +08:00
|
|
|
test -d TSRM && echo '#include "../php_config.h"' > TSRM/tsrm_config.h
|
1999-12-20 05:02:54 +08:00
|
|
|
echo '#include "../php_config.h"' > Zend/zend_config.h
|
1999-10-04 23:18:26 +08:00
|
|
|
|
1999-09-29 23:17:02 +08:00
|
|
|
# run this only when generating all the files?
|
|
|
|
if true; then
|
1999-07-22 05:56:25 +08:00
|
|
|
chmod +x scripts/mkextlib
|
|
|
|
# Hacking while airborne considered harmful.
|
|
|
|
#
|
|
|
|
echo "creating internal_functions.c"
|
|
|
|
extensions=\`grep '^s.@EXT_STATIC@' \$0|sed -e 's/^.*@% *//' -e 's/%.*$//'\`
|
|
|
|
mv -f internal_functions.c internal_functions.c.old 2>/dev/null
|
|
|
|
sh $srcdir/genif.sh $srcdir/internal_functions.c.in $srcdir \$extensions > internal_functions.c
|
|
|
|
if cmp internal_functions.c.old internal_functions.c > /dev/null 2>&1; then
|
|
|
|
echo "internal_functions.c is unchanged"
|
|
|
|
mv internal_functions.c.old internal_functions.c
|
|
|
|
else
|
|
|
|
rm -f internal_functions.c.old
|
|
|
|
fi
|
1999-12-12 01:48:41 +08:00
|
|
|
|
|
|
|
if test -n "$PHP_APXS_BROKEN"; then
|
|
|
|
echo "+--------------------------------------------------------------------+"
|
|
|
|
echo "| WARNING: Your $APXS script is most likely broken."
|
|
|
|
echo "| |"
|
|
|
|
echo "| Please go read http://www.php.net/FAQ.php3#4.11 and make the |"
|
|
|
|
echo "| changes described there and try again. |"
|
1999-12-08 00:52:13 +08:00
|
|
|
fi
|
1999-05-03 19:11:23 +08:00
|
|
|
|
1999-07-22 05:56:25 +08:00
|
|
|
# Warn about CGI version with no extra security options.
|
1999-10-08 05:04:26 +08:00
|
|
|
if test "$PHP_SAPI" = "cgi"; then
|
1999-07-22 05:56:25 +08:00
|
|
|
if test "$REDIRECT" = "0"; then
|
|
|
|
if test "$DISCARD_PATH" = "0"; then
|
|
|
|
echo "+--------------------------------------------------------------------+"
|
|
|
|
echo "| Warning: |"
|
|
|
|
echo "| You will be compiling the CGI version of PHP without any |"
|
|
|
|
echo "| redirection checking. By putting this cgi binary somewhere in |"
|
|
|
|
echo "| your web space, users may be able to circumvent existing .htaccess |"
|
|
|
|
echo "| security by loading files directly through the parser. See |"
|
|
|
|
echo "| http://www.php.net/manual/config-security.php3 for more details. |"
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
fi
|
1999-05-03 19:11:23 +08:00
|
|
|
|
1999-07-22 05:56:25 +08:00
|
|
|
echo "+--------------------------------------------------------------------+"
|
|
|
|
echo "| License: |"
|
|
|
|
echo "| This software is subject to the PHP License, available in this |"
|
|
|
|
echo "| distribution in the file LICENSE. By continuing this installation |"
|
|
|
|
echo "| process, you are bound by the terms of this license agreement. |"
|
|
|
|
echo "| If you do not agree with the terms of this license, you must abort |"
|
|
|
|
echo "| the installation process at this point. |"
|
|
|
|
echo "+--------------------------------------------------------------------+"
|
1999-04-22 08:25:57 +08:00
|
|
|
|
1999-07-22 05:56:25 +08:00
|
|
|
fi
|
1999-04-17 08:37:12 +08:00
|
|
|
])
|
|
|
|
|
1999-09-29 23:17:02 +08:00
|
|
|
dnl ## Local Variables:
|
|
|
|
dnl ## tab-width: 4
|
|
|
|
dnl ## End:
|