1999-04-17 08:37:12 +08:00
|
|
|
dnl $Id$
|
|
|
|
dnl
|
|
|
|
dnl This file contains local autoconf functions.
|
2000-03-26 10:47:00 +08:00
|
|
|
|
2002-03-07 22:20:02 +08:00
|
|
|
dnl PHP_ADD_MAKEFILE_FRAGMENT([srcfile[, ext_srcdir[, ext_builddir]]])
|
|
|
|
dnl
|
|
|
|
dnl Processes a file called Makefile.frag in the source directory
|
|
|
|
dnl of the most recently added extension. $(srcdir) and $(builddir)
|
|
|
|
dnl are substituted with the proper paths. Can be used to supply
|
|
|
|
dnl custom rules and/or additional targets.
|
|
|
|
dnl
|
|
|
|
AC_DEFUN(PHP_ADD_MAKEFILE_FRAGMENT,[
|
|
|
|
ifelse($1,,src=$ext_srcdir/Makefile.frag,src=$1)
|
|
|
|
ifelse($2,,ac_srcdir=$ext_srcdir,ac_srcdir=$2)
|
|
|
|
ifelse($3,,ac_builddir=$ext_builddir,ac_builddir=$3)
|
|
|
|
sed -e "s#\$(srcdir)#$ac_srcdir#g" -e "s#\$(builddir)#$ac_builddir#g" $src >> Makefile.fragments
|
|
|
|
])
|
|
|
|
|
|
|
|
|
2002-03-20 21:24:59 +08:00
|
|
|
dnl PHP_DEFINE(WHAT[, value])
|
2002-03-07 22:20:02 +08:00
|
|
|
dnl
|
2002-03-20 21:24:59 +08:00
|
|
|
dnl Creates builddir/include/what.h and in there #define WHAT value
|
2002-03-07 22:20:02 +08:00
|
|
|
dnl
|
|
|
|
AC_DEFUN(PHP_DEFINE,[
|
2002-03-20 21:24:59 +08:00
|
|
|
[echo "#define ]$1[]ifelse([$2],,[ 1],[ $2])[" > include/php_]translit($1,A-Z,a-z)[.h]
|
2002-03-07 22:20:02 +08:00
|
|
|
])
|
|
|
|
|
|
|
|
dnl PHP_INIT_BUILD_SYSTEM
|
|
|
|
dnl
|
|
|
|
AC_DEFUN(PHP_INIT_BUILD_SYSTEM,[
|
|
|
|
mkdir include >/dev/null 2>&1
|
|
|
|
> Makefile.objects
|
|
|
|
> Makefile.fragments
|
2002-03-20 21:24:59 +08:00
|
|
|
dnl We need to play tricks here to avoid matching the egrep line itself
|
|
|
|
pattern=define
|
2002-04-11 13:47:03 +08:00
|
|
|
egrep $pattern'.*include/php' $srcdir/configure|sed 's/.*>//'|xargs touch 2>/dev/null
|
2002-03-07 22:20:02 +08:00
|
|
|
])
|
|
|
|
|
|
|
|
dnl PHP_GEN_GLOBAL_MAKEFILE
|
|
|
|
dnl
|
|
|
|
dnl Generates the global makefile.
|
|
|
|
dnl
|
|
|
|
AC_DEFUN(PHP_GEN_GLOBAL_MAKEFILE,[
|
|
|
|
cat >Makefile <<EOF
|
|
|
|
srcdir = $abs_srcdir
|
|
|
|
builddir = $abs_builddir
|
|
|
|
top_srcdir = $abs_srcdir
|
|
|
|
top_builddir = $abs_builddir
|
|
|
|
EOF
|
|
|
|
for i in $PHP_VAR_SUBST; do
|
|
|
|
eval echo "$i = \$$i" >> Makefile
|
|
|
|
done
|
|
|
|
|
|
|
|
cat $abs_srcdir/Makefile.global Makefile.fragments Makefile.objects >> Makefile
|
|
|
|
])
|
|
|
|
|
|
|
|
dnl PHP_ADD_SOURCES(source-path, sources[, special-flags[, type]])
|
|
|
|
dnl
|
|
|
|
dnl Adds sources which are located relative to source-path to the
|
|
|
|
dnl array of type type. Sources are processed with optional
|
|
|
|
dnl special-flags which are passed to the compiler. Sources
|
|
|
|
dnl can be either written in C or C++ (filenames shall end in .c
|
|
|
|
dnl or .cpp, respectively).
|
|
|
|
dnl
|
|
|
|
dnl Note: If source-path begins with a "/", the "/" is removed and
|
|
|
|
dnl the path is interpreted relative to the top build-directory.
|
|
|
|
dnl
|
|
|
|
dnl which array to append to?
|
|
|
|
AC_DEFUN(PHP_ADD_SOURCES,[
|
2002-03-13 20:48:05 +08:00
|
|
|
PHP_ADD_SOURCES_X($1, $2, $3, ifelse($4,cli,PHP_CLI_OBJS,ifelse($4,sapi,PHP_SAPI_OBJS,PHP_GLOBAL_OBJS)))
|
2002-03-07 22:20:02 +08:00
|
|
|
])
|
2002-03-27 19:09:20 +08:00
|
|
|
dnl
|
2002-03-07 22:20:02 +08:00
|
|
|
dnl PHP_ASSIGN_BUILD_VARS(type)
|
2002-03-27 19:09:20 +08:00
|
|
|
dnl internal, don't use
|
2002-03-07 22:20:02 +08:00
|
|
|
AC_DEFUN(PHP_ASSIGN_BUILD_VARS,[
|
2002-03-20 21:24:59 +08:00
|
|
|
ifelse($1,shared,[
|
|
|
|
b_c_pre=$shared_c_pre
|
|
|
|
b_cxx_pre=$shared_cxx_pre
|
|
|
|
b_c_meta=$shared_c_meta
|
|
|
|
b_cxx_meta=$shared_cxx_meta
|
|
|
|
b_c_post=$shared_c_post
|
|
|
|
b_cxx_post=$shared_cxx_post
|
|
|
|
],[
|
|
|
|
b_c_pre=$php_c_pre
|
|
|
|
b_cxx_pre=$php_cxx_pre
|
|
|
|
b_c_meta=$php_c_meta
|
|
|
|
b_cxx_meta=$php_cxx_meta
|
|
|
|
b_c_post=$php_c_post
|
|
|
|
b_cxx_post=$php_cxx_post
|
|
|
|
])dnl
|
2002-03-07 22:20:02 +08:00
|
|
|
b_lo=[$]$1_lo
|
|
|
|
])
|
|
|
|
|
|
|
|
dnl PHP_ADD_SOURCES_X(source-path, sources[, special-flags[, target-var[, shared[, special-post-flags]]]])
|
|
|
|
dnl
|
|
|
|
dnl Additional to PHP_ADD_SOURCES (see above), this lets you set the
|
|
|
|
dnl name of the array target-var directly, as well as whether
|
|
|
|
dnl shared objects will be built from the sources. Should not be
|
|
|
|
dnl used directly.
|
|
|
|
dnl
|
|
|
|
AC_DEFUN(PHP_ADD_SOURCES_X,[
|
|
|
|
dnl relative to source- or build-directory?
|
2002-04-06 21:42:40 +08:00
|
|
|
dnl ac_srcdir/ac_bdir include trailing slash
|
2002-03-07 22:20:02 +08:00
|
|
|
case $1 in
|
2002-04-06 21:42:40 +08:00
|
|
|
"") ac_srcdir="$abs_srcdir/"; unset ac_bdir; ac_inc="-I. -I$abs_srcdir" ;;
|
|
|
|
/*[)] ac_srcdir=`echo $ac_n "$1$ac_c"|cut -c 2-`"/"; ac_bdir=$ac_srcdir; ac_inc="-I$ac_bdir -I$abs_srcdir/$ac_bdir" ;;
|
|
|
|
*[)] ac_srcdir="$abs_srcdir/$1/"; ac_bdir="$1/"; ac_inc="-I$ac_bdir -I$ac_srcdir" ;;
|
2002-03-07 22:20:02 +08:00
|
|
|
esac
|
|
|
|
|
|
|
|
dnl how to build .. shared or static?
|
|
|
|
ifelse($5,yes,PHP_ASSIGN_BUILD_VARS(shared),PHP_ASSIGN_BUILD_VARS(php))
|
|
|
|
|
|
|
|
dnl iterate over the sources
|
2002-03-13 20:48:05 +08:00
|
|
|
old_IFS=[$]IFS
|
2002-03-07 22:20:02 +08:00
|
|
|
for ac_src in $2; do
|
|
|
|
|
|
|
|
dnl remove the suffix
|
|
|
|
IFS=.
|
|
|
|
set $ac_src
|
|
|
|
ac_obj=[$]1
|
|
|
|
IFS=$old_IFS
|
|
|
|
|
2002-04-06 21:42:40 +08:00
|
|
|
dnl append to the array which has been dynamically chosen at m4 time
|
|
|
|
$4="[$]$4 [$]ac_bdir[$]ac_obj.lo"
|
2002-03-07 22:20:02 +08:00
|
|
|
|
|
|
|
dnl choose the right compiler/flags/etc. for the source-file
|
|
|
|
case $ac_src in
|
2002-04-06 21:42:40 +08:00
|
|
|
*.c[)] ac_comp="$b_c_pre $3 $ac_inc $b_c_meta -c $ac_srcdir$ac_src -o $ac_bdir$ac_obj.$b_lo $6$b_c_post" ;;
|
|
|
|
*.cpp[)] ac_comp="$b_cxx_pre $3 $ac_inc $b_cxx_meta -c $ac_srcdir$ac_src -o $ac_bdir$ac_obj.$b_lo $6$b_cxx_post" ;;
|
2002-03-07 22:20:02 +08:00
|
|
|
esac
|
|
|
|
|
|
|
|
dnl create a rule for the object/source combo
|
|
|
|
cat >>Makefile.objects<<EOF
|
2002-04-06 21:42:40 +08:00
|
|
|
$ac_bdir[$]ac_obj.lo: $ac_srcdir[$]ac_src
|
2002-03-07 22:20:02 +08:00
|
|
|
$ac_comp
|
|
|
|
EOF
|
|
|
|
done
|
|
|
|
])
|
2000-05-01 10:42:55 +08:00
|
|
|
|
2002-01-24 20:55:08 +08:00
|
|
|
dnl
|
|
|
|
dnl Disable building CLI
|
|
|
|
dnl
|
|
|
|
AC_DEFUN(PHP_DISABLE_CLI,[
|
|
|
|
disable_cli=1
|
|
|
|
])
|
|
|
|
|
2001-12-01 08:59:43 +08:00
|
|
|
dnl
|
|
|
|
dnl Separator into the configure --help display.
|
|
|
|
dnl
|
|
|
|
AC_DEFUN(PHP_HELP_SEPARATOR,[
|
|
|
|
AC_ARG_ENABLE([],[
|
|
|
|
$1
|
|
|
|
],[])
|
|
|
|
])
|
|
|
|
|
2001-06-15 20:53:20 +08:00
|
|
|
dnl
|
|
|
|
dnl PHP_TARGET_RDYNAMIC
|
|
|
|
dnl
|
|
|
|
dnl Checks whether -rdynamic is supported by the compiler. This
|
|
|
|
dnl is necessary for some targets to populate the global symbol
|
|
|
|
dnl table. Otherwise, dynamic modules would not be able to resolve
|
|
|
|
dnl PHP-related symbols.
|
|
|
|
dnl
|
|
|
|
dnl If successful, adds -rdynamic to PHP_LDFLAGS.
|
|
|
|
dnl
|
|
|
|
AC_DEFUN(PHP_TARGET_RDYNAMIC,[
|
|
|
|
if test -n "$GCC"; then
|
|
|
|
dnl we should use a PHP-specific macro here
|
|
|
|
TSRM_CHECK_GCC_ARG(-rdynamic, gcc_rdynamic=yes)
|
|
|
|
if test "$gcc_rdynamic" = "yes"; then
|
|
|
|
PHP_LDFLAGS="$PHP_LDFLAGS -rdynamic"
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
])
|
|
|
|
|
2001-05-09 21:57:56 +08:00
|
|
|
AC_DEFUN(PHP_REMOVE_USR_LIB,[
|
2001-05-12 18:33:52 +08:00
|
|
|
unset ac_new_flags
|
2001-05-09 21:57:56 +08:00
|
|
|
for i in [$]$1; do
|
|
|
|
case [$]i in
|
|
|
|
-L/usr/lib|-L/usr/lib/) ;;
|
|
|
|
*) ac_new_flags="[$]ac_new_flags [$]i" ;;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
$1=[$]ac_new_flags
|
|
|
|
])
|
2002-01-22 00:39:17 +08:00
|
|
|
|
2000-12-15 01:29:38 +08:00
|
|
|
AC_DEFUN(PHP_SETUP_OPENSSL,[
|
2002-03-20 10:07:11 +08:00
|
|
|
if test "$PHP_OPENSSL" = "yes"; then
|
2000-12-15 01:29:38 +08:00
|
|
|
PHP_OPENSSL="/usr/local/ssl /usr/local /usr /usr/local/openssl"
|
|
|
|
fi
|
|
|
|
|
|
|
|
for i in $PHP_OPENSSL; do
|
|
|
|
if test -r $i/include/openssl/evp.h; then
|
2002-03-20 10:07:11 +08:00
|
|
|
OPENSSL_INCDIR=$i/include
|
|
|
|
fi
|
|
|
|
if test -r $i/lib/libssl.a -o -r $i/lib/libssl.$SHLIB_SUFFIX_NAME; then
|
|
|
|
OPENSSL_LIBDIR=$i/lib
|
2000-12-15 01:29:38 +08:00
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
2002-03-20 10:07:11 +08:00
|
|
|
if test -z "$OPENSSL_INCDIR"; then
|
2001-09-07 04:55:24 +08:00
|
|
|
AC_MSG_ERROR([Cannot find OpenSSL's <evp.h>])
|
2000-12-15 01:29:38 +08:00
|
|
|
fi
|
|
|
|
|
2002-03-20 10:07:11 +08:00
|
|
|
if test -z "$OPENSSL_LIBDIR"; then
|
|
|
|
AC_MSG_ERROR([Cannot find OpenSSL's libraries])
|
|
|
|
fi
|
|
|
|
|
2000-12-15 01:29:38 +08:00
|
|
|
old_CPPFLAGS=$CPPFLAGS
|
2002-03-20 10:07:11 +08:00
|
|
|
CPPFLAGS=-I$OPENSSL_INCDIR
|
2001-09-07 04:55:24 +08:00
|
|
|
AC_MSG_CHECKING([for OpenSSL version])
|
2000-12-15 01:29:38 +08:00
|
|
|
AC_EGREP_CPP(yes,[
|
|
|
|
#include <openssl/opensslv.h>
|
2001-01-07 19:36:15 +08:00
|
|
|
#if OPENSSL_VERSION_NUMBER >= 0x0090500fL
|
2000-12-15 01:29:38 +08:00
|
|
|
yes
|
|
|
|
#endif
|
|
|
|
],[
|
2001-09-07 04:55:24 +08:00
|
|
|
AC_MSG_RESULT([>= 0.9.5])
|
2000-12-15 01:29:38 +08:00
|
|
|
],[
|
2001-09-07 04:55:24 +08:00
|
|
|
AC_MSG_ERROR([OpenSSL version 0.9.5 or greater required.])
|
2000-12-15 01:29:38 +08:00
|
|
|
])
|
|
|
|
CPPFLAGS=$old_CPPFLAGS
|
2001-01-04 02:12:06 +08:00
|
|
|
|
2002-03-20 10:07:11 +08:00
|
|
|
PHP_ADD_INCLUDE($OPENSSL_INCDIR)
|
|
|
|
PHP_ADD_LIBPATH($OPENSSL_LIBDIR)
|
2001-01-04 02:12:06 +08:00
|
|
|
|
2002-03-20 10:07:11 +08:00
|
|
|
PHP_CHECK_LIBRARY(crypto, CRYPTO_free, [
|
2001-03-28 04:35:04 +08:00
|
|
|
PHP_ADD_LIBRARY(crypto)
|
2001-01-04 02:12:06 +08:00
|
|
|
],[
|
2001-09-07 04:55:24 +08:00
|
|
|
AC_MSG_ERROR([libcrypto not found!])
|
2002-03-20 10:07:11 +08:00
|
|
|
],[
|
|
|
|
-L$OPENSSL_LIBDIR
|
2001-01-04 02:12:06 +08:00
|
|
|
])
|
|
|
|
|
2002-03-20 10:07:11 +08:00
|
|
|
PHP_CHECK_LIBRARY(ssl, SSL_CTX_set_ssl_version, [
|
2001-03-28 04:35:04 +08:00
|
|
|
PHP_ADD_LIBRARY(ssl)
|
2001-01-04 02:12:06 +08:00
|
|
|
],[
|
2001-09-07 04:55:24 +08:00
|
|
|
AC_MSG_ERROR([libssl not found!])
|
2002-03-20 10:07:11 +08:00
|
|
|
],[
|
|
|
|
-L$OPENSSL_LIBDIR
|
2001-01-04 02:12:06 +08:00
|
|
|
])
|
2000-12-15 01:29:38 +08:00
|
|
|
])
|
|
|
|
|
2000-06-17 18:50:42 +08:00
|
|
|
dnl PHP_EVAL_LIBLINE(LINE, SHARED-LIBADD)
|
|
|
|
dnl
|
|
|
|
dnl Use this macro, if you need to add libraries and or library search
|
|
|
|
dnl paths to the PHP build system which are only given in compiler
|
|
|
|
dnl notation.
|
|
|
|
dnl
|
|
|
|
AC_DEFUN(PHP_EVAL_LIBLINE,[
|
|
|
|
for ac_i in $1; do
|
2001-05-12 19:09:05 +08:00
|
|
|
case $ac_i in
|
2000-06-17 18:50:42 +08:00
|
|
|
-l*)
|
|
|
|
ac_ii=`echo $ac_i|cut -c 3-`
|
2001-03-28 04:35:04 +08:00
|
|
|
PHP_ADD_LIBRARY($ac_ii,,$2)
|
2000-06-17 18:50:42 +08:00
|
|
|
;;
|
|
|
|
-L*)
|
|
|
|
ac_ii=`echo $ac_i|cut -c 3-`
|
2001-03-28 04:35:04 +08:00
|
|
|
PHP_ADD_LIBPATH($ac_ii,$2)
|
2000-06-17 18:50:42 +08:00
|
|
|
;;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
])
|
|
|
|
|
|
|
|
dnl PHP_EVAL_INCLINE(LINE)
|
|
|
|
dnl
|
|
|
|
dnl Use this macro, if you need to add header search paths to the PHP
|
|
|
|
dnl build system which are only given in compiler notation.
|
|
|
|
dnl
|
|
|
|
AC_DEFUN(PHP_EVAL_INCLINE,[
|
|
|
|
for ac_i in $1; do
|
2001-05-12 19:09:05 +08:00
|
|
|
case $ac_i in
|
2000-06-17 18:50:42 +08:00
|
|
|
-I*)
|
|
|
|
ac_ii=`echo $ac_i|cut -c 3-`
|
2001-03-28 04:35:04 +08:00
|
|
|
PHP_ADD_INCLUDE($ac_ii)
|
2000-06-17 18:50:42 +08:00
|
|
|
;;
|
|
|
|
esac
|
|
|
|
done
|
|
|
|
])
|
|
|
|
|
2000-05-24 19:06:57 +08:00
|
|
|
AC_DEFUN(PHP_READDIR_R_TYPE,[
|
2000-05-28 03:30:36 +08:00
|
|
|
dnl HAVE_READDIR_R is also defined by libmysql
|
|
|
|
AC_CHECK_FUNC(readdir_r,ac_cv_func_readdir_r=yes,ac_cv_func_readdir=no)
|
2000-05-24 19:06:57 +08:00
|
|
|
if test "$ac_cv_func_readdir_r" = "yes"; then
|
2000-05-23 23:13:16 +08:00
|
|
|
AC_CACHE_CHECK(for type of readdir_r, ac_cv_what_readdir_r,[
|
|
|
|
AC_TRY_RUN([
|
2000-05-24 19:06:57 +08:00
|
|
|
#define _REENTRANT
|
2000-05-23 23:13:16 +08:00
|
|
|
#include <sys/types.h>
|
|
|
|
#include <dirent.h>
|
|
|
|
|
2000-10-15 08:58:29 +08:00
|
|
|
#ifndef PATH_MAX
|
|
|
|
#define PATH_MAX 1024
|
|
|
|
#endif
|
|
|
|
|
2000-05-23 23:13:16 +08:00
|
|
|
main() {
|
|
|
|
DIR *dir;
|
2000-11-03 02:24:43 +08:00
|
|
|
char entry[sizeof(struct dirent)+PATH_MAX];
|
2000-09-11 23:25:06 +08:00
|
|
|
struct dirent *pentry = (struct dirent *) &entry;
|
2000-05-23 23:13:16 +08:00
|
|
|
|
|
|
|
dir = opendir("/");
|
|
|
|
if (!dir)
|
|
|
|
exit(1);
|
2000-10-11 22:35:45 +08:00
|
|
|
if (readdir_r(dir, (struct dirent *) entry, &pentry) == 0)
|
2000-05-23 23:13:16 +08:00
|
|
|
exit(0);
|
|
|
|
exit(1);
|
|
|
|
}
|
|
|
|
],[
|
|
|
|
ac_cv_what_readdir_r=POSIX
|
|
|
|
],[
|
2000-05-24 19:06:57 +08:00
|
|
|
AC_TRY_CPP([
|
|
|
|
#define _REENTRANT
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <dirent.h>
|
|
|
|
int readdir_r(DIR *, struct dirent *);
|
|
|
|
],[
|
|
|
|
ac_cv_what_readdir_r=old-style
|
|
|
|
],[
|
|
|
|
ac_cv_what_readdir_r=none
|
|
|
|
])
|
2000-05-23 23:13:16 +08:00
|
|
|
],[
|
|
|
|
ac_cv_what_readdir_r=none
|
|
|
|
])
|
|
|
|
])
|
2001-05-12 19:09:05 +08:00
|
|
|
case $ac_cv_what_readdir_r in
|
2000-05-24 19:06:57 +08:00
|
|
|
POSIX)
|
|
|
|
AC_DEFINE(HAVE_POSIX_READDIR_R,1,[whether you have POSIX readdir_r]);;
|
|
|
|
old-style)
|
|
|
|
AC_DEFINE(HAVE_OLD_READDIR_R,1,[whether you have old-style readdir_r]);;
|
|
|
|
esac
|
2000-05-23 23:13:16 +08:00
|
|
|
fi
|
|
|
|
])
|
|
|
|
|
2000-05-18 19:35:17 +08:00
|
|
|
AC_DEFUN(PHP_SHLIB_SUFFIX_NAME,[
|
|
|
|
PHP_SUBST(SHLIB_SUFFIX_NAME)
|
|
|
|
SHLIB_SUFFIX_NAME=so
|
2001-05-12 19:09:05 +08:00
|
|
|
case $host_alias in
|
2000-05-18 19:35:17 +08:00
|
|
|
*hpux*)
|
|
|
|
SHLIB_SUFFIX_NAME=sl
|
|
|
|
;;
|
2002-01-24 22:41:14 +08:00
|
|
|
*darwin*)
|
|
|
|
SHLIB_SUFFIX_NAME=dylib
|
|
|
|
;;
|
2000-05-18 19:35:17 +08:00
|
|
|
esac
|
|
|
|
])
|
|
|
|
|
2000-05-18 03:08:44 +08:00
|
|
|
AC_DEFUN(PHP_DEBUG_MACRO,[
|
2001-05-12 18:33:52 +08:00
|
|
|
DEBUG_LOG=$1
|
2000-05-18 03:08:44 +08:00
|
|
|
cat >$1 <<X
|
|
|
|
CONFIGURE: $CONFIGURE_COMMAND
|
|
|
|
CC: $CC
|
|
|
|
CFLAGS: $CFLAGS
|
|
|
|
CPPFLAGS: $CPPFLAGS
|
|
|
|
CXX: $CXX
|
|
|
|
CXXFLAGS: $CXXFLAGS
|
|
|
|
INCLUDES: $INCLUDES
|
|
|
|
LDFLAGS: $LDFLAGS
|
|
|
|
LIBS: $LIBS
|
|
|
|
DLIBS: $DLIBS
|
|
|
|
SAPI: $PHP_SAPI
|
|
|
|
PHP_RPATHS: $PHP_RPATHS
|
|
|
|
uname -a: `uname -a`
|
|
|
|
|
|
|
|
X
|
|
|
|
cat >conftest.$ac_ext <<X
|
|
|
|
main()
|
|
|
|
{
|
|
|
|
exit(0);
|
|
|
|
}
|
|
|
|
X
|
|
|
|
(eval echo \"$ac_link\"; eval $ac_link && ./conftest) >>$1 2>&1
|
|
|
|
rm -fr conftest*
|
|
|
|
])
|
2001-05-21 07:39:09 +08:00
|
|
|
|
|
|
|
AC_DEFUN(PHP_MISSING_PREAD_DECL,[
|
|
|
|
AC_CACHE_CHECK(whether pread works without custom declaration,ac_cv_pread,[
|
|
|
|
AC_TRY_COMPILE([#include <unistd.h>],[size_t (*func)() = pread],[
|
|
|
|
ac_cv_pread=yes
|
|
|
|
],[
|
|
|
|
echo test > conftest_in
|
|
|
|
AC_TRY_RUN([
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
main() { char buf[3]; return !(pread(open("conftest_in", O_RDONLY), buf, 2, 0) == 2); }
|
|
|
|
],[
|
|
|
|
ac_cv_pread=yes
|
|
|
|
],[
|
|
|
|
echo test > conftest_in
|
|
|
|
AC_TRY_RUN([
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
ssize_t pread(int, void *, size_t, off64_t);
|
|
|
|
main() { char buf[3]; return !(pread(open("conftest_in", O_RDONLY), buf, 2, 0) == 2); }
|
|
|
|
],[
|
|
|
|
ac_cv_pread=64
|
|
|
|
],[
|
|
|
|
ac_cv_pread=no
|
|
|
|
])
|
2001-12-30 23:39:01 +08:00
|
|
|
],[
|
|
|
|
ac_cv_pread=no
|
2001-05-21 07:39:09 +08:00
|
|
|
])
|
|
|
|
])
|
|
|
|
])
|
|
|
|
case $ac_cv_pread in
|
|
|
|
no) ac_cv_func_pread=no;;
|
|
|
|
64) AC_DEFINE(PHP_PREAD_64, 1, [whether pread64 is default]);;
|
|
|
|
esac
|
|
|
|
])
|
|
|
|
|
|
|
|
AC_DEFUN(PHP_MISSING_PWRITE_DECL,[
|
|
|
|
AC_CACHE_CHECK(whether pwrite works without custom declaration,ac_cv_pwrite,[
|
|
|
|
AC_TRY_COMPILE([#include <unistd.h>],[size_t (*func)() = pwrite],[
|
|
|
|
ac_cv_pwrite=yes
|
|
|
|
],[
|
|
|
|
AC_TRY_RUN([
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
main() { return !(pwrite(open("conftest_out", O_WRONLY|O_CREAT, 0600), "Ok", 2, 0) == 2); }
|
|
|
|
],[
|
|
|
|
ac_cv_pwrite=yes
|
|
|
|
],[
|
|
|
|
AC_TRY_RUN([
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/stat.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
#include <unistd.h>
|
|
|
|
ssize_t pwrite(int, void *, size_t, off64_t);
|
|
|
|
main() { return !(pwrite(open("conftest_out", O_WRONLY|O_CREAT, 0600), "Ok", 2, 0) == 2); }
|
|
|
|
],[
|
|
|
|
ac_cv_pwrite=64
|
|
|
|
],[
|
|
|
|
ac_cv_pwrite=no
|
|
|
|
])
|
2001-12-30 23:39:01 +08:00
|
|
|
],[
|
|
|
|
ac_cv_pwrite=no
|
2001-05-21 07:39:09 +08:00
|
|
|
])
|
|
|
|
])
|
|
|
|
])
|
|
|
|
case $ac_cv_pwrite in
|
|
|
|
no) ac_cv_func_pwrite=no;;
|
|
|
|
64) AC_DEFINE(PHP_PWRITE_64, 1, [whether pwrite64 is default]);;
|
|
|
|
esac
|
|
|
|
])
|
|
|
|
|
2000-05-04 18:38:17 +08:00
|
|
|
AC_DEFUN(PHP_MISSING_TIME_R_DECL,[
|
2001-09-07 04:55:24 +08:00
|
|
|
AC_MSG_CHECKING([for missing declarations of reentrant functions])
|
2000-05-04 18:38:17 +08:00
|
|
|
AC_TRY_COMPILE([#include <time.h>],[struct tm *(*func)() = localtime_r],[
|
|
|
|
:
|
|
|
|
],[
|
|
|
|
AC_DEFINE(MISSING_LOCALTIME_R_DECL,1,[Whether localtime_r is declared])
|
|
|
|
])
|
|
|
|
AC_TRY_COMPILE([#include <time.h>],[struct tm *(*func)() = gmtime_r],[
|
|
|
|
:
|
|
|
|
],[
|
|
|
|
AC_DEFINE(MISSING_GMTIME_R_DECL,1,[Whether gmtime_r is declared])
|
|
|
|
])
|
|
|
|
AC_TRY_COMPILE([#include <time.h>],[char *(*func)() = asctime_r],[
|
|
|
|
:
|
|
|
|
],[
|
|
|
|
AC_DEFINE(MISSING_ASCTIME_R_DECL,1,[Whether asctime_r is declared])
|
|
|
|
])
|
|
|
|
AC_TRY_COMPILE([#include <time.h>],[char *(*func)() = ctime_r],[
|
|
|
|
:
|
|
|
|
],[
|
|
|
|
AC_DEFINE(MISSING_CTIME_R_DECL,1,[Whether ctime_r is declared])
|
|
|
|
])
|
|
|
|
AC_TRY_COMPILE([#include <string.h>],[char *(*func)() = strtok_r],[
|
|
|
|
:
|
|
|
|
],[
|
|
|
|
AC_DEFINE(MISSING_STRTOK_R_DECL,1,[Whether strtok_r is declared])
|
|
|
|
])
|
2001-09-07 04:55:24 +08:00
|
|
|
AC_MSG_RESULT([done])
|
2000-05-04 18:38:17 +08:00
|
|
|
])
|
|
|
|
|
2000-03-30 23:00:30 +08:00
|
|
|
dnl
|
|
|
|
dnl PHP_LIBGCC_LIBPATH(gcc)
|
|
|
|
dnl Stores the location of libgcc in libgcc_libpath
|
|
|
|
dnl
|
|
|
|
AC_DEFUN(PHP_LIBGCC_LIBPATH,[
|
2000-05-02 02:32:09 +08:00
|
|
|
changequote({,})
|
2001-05-12 18:33:52 +08:00
|
|
|
libgcc_libpath=`$1 --print-libgcc-file-name|sed 's%/*[^/][^/]*$%%'`
|
2000-05-02 02:32:09 +08:00
|
|
|
changequote([,])
|
2000-03-30 23:00:30 +08:00
|
|
|
])
|
|
|
|
|
2002-03-13 20:30:49 +08:00
|
|
|
AC_DEFUN(PHP_ARG_ANALYZE_EX,[
|
|
|
|
ext_output="yes, shared"
|
|
|
|
ext_shared=yes
|
2001-05-12 19:09:05 +08:00
|
|
|
case [$]$1 in
|
2000-05-01 10:42:55 +08:00
|
|
|
shared,*)
|
2000-12-03 18:58:18 +08:00
|
|
|
$1=`echo "[$]$1"|sed 's/^shared,//'`
|
2000-05-01 10:42:55 +08:00
|
|
|
;;
|
|
|
|
shared)
|
|
|
|
$1=yes
|
|
|
|
;;
|
|
|
|
no)
|
2001-05-12 18:33:52 +08:00
|
|
|
ext_output=no
|
2000-05-01 10:42:55 +08:00
|
|
|
ext_shared=no
|
|
|
|
;;
|
|
|
|
*)
|
2001-05-12 18:33:52 +08:00
|
|
|
ext_output=yes
|
2000-05-01 10:42:55 +08:00
|
|
|
ext_shared=no
|
|
|
|
;;
|
|
|
|
esac
|
|
|
|
|
2002-03-13 20:30:49 +08:00
|
|
|
PHP_ALWAYS_SHARED([$1])
|
|
|
|
])
|
2000-05-03 04:56:03 +08:00
|
|
|
|
2002-03-13 20:30:49 +08:00
|
|
|
AC_DEFUN(PHP_ARG_ANALYZE,[
|
|
|
|
PHP_ARG_ANALYZE_EX([$1])
|
2002-03-07 22:20:02 +08:00
|
|
|
ifelse([$2],,,[AC_MSG_RESULT([$ext_output])])
|
2000-05-01 10:42:55 +08:00
|
|
|
])
|
|
|
|
|
2000-03-30 23:00:30 +08:00
|
|
|
dnl
|
|
|
|
dnl PHP_ARG_WITH(arg-name, check message, help text[, default-val])
|
|
|
|
dnl Sets PHP_ARG_NAME either to the user value or to the default value.
|
2001-05-10 02:12:12 +08:00
|
|
|
dnl default-val defaults to no. This will also set the variable ext_shared,
|
|
|
|
dnl and will overwrite any previous variable of that name.
|
2000-03-30 23:00:30 +08:00
|
|
|
dnl
|
2000-03-28 07:33:38 +08:00
|
|
|
AC_DEFUN(PHP_ARG_WITH,[
|
2000-10-28 18:48:32 +08:00
|
|
|
PHP_REAL_ARG_WITH([$1],[$2],[$3],[$4],PHP_[]translit($1,a-z0-9-,A-Z0-9_))
|
2000-05-01 10:42:55 +08:00
|
|
|
])
|
|
|
|
|
|
|
|
AC_DEFUN(PHP_REAL_ARG_WITH,[
|
2002-03-07 22:20:02 +08:00
|
|
|
ifelse([$2],,,[AC_MSG_CHECKING([$2])])
|
2000-05-01 10:42:55 +08:00
|
|
|
AC_ARG_WITH($1,[$3],$5=[$]withval,$5=ifelse($4,,no,$4))
|
2002-01-27 11:37:02 +08:00
|
|
|
PHP_ARG_ANALYZE($5,[$2])
|
2000-03-28 07:33:38 +08:00
|
|
|
])
|
|
|
|
|
2000-03-30 23:00:30 +08:00
|
|
|
dnl
|
|
|
|
dnl PHP_ARG_ENABLE(arg-name, check message, help text[, default-val])
|
|
|
|
dnl Sets PHP_ARG_NAME either to the user value or to the default value.
|
2001-05-10 02:12:12 +08:00
|
|
|
dnl default-val defaults to no. This will also set the variable ext_shared,
|
|
|
|
dnl and will overwrite any previous variable of that name.
|
2000-03-30 23:00:30 +08:00
|
|
|
dnl
|
2000-03-28 07:33:38 +08:00
|
|
|
AC_DEFUN(PHP_ARG_ENABLE,[
|
2000-05-01 10:42:55 +08:00
|
|
|
PHP_REAL_ARG_ENABLE([$1],[$2],[$3],[$4],PHP_[]translit($1,a-z-,A-Z_))
|
|
|
|
])
|
|
|
|
|
|
|
|
AC_DEFUN(PHP_REAL_ARG_ENABLE,[
|
2002-03-07 22:20:02 +08:00
|
|
|
ifelse([$2],,,[AC_MSG_CHECKING([$2])])
|
2000-05-01 10:42:55 +08:00
|
|
|
AC_ARG_ENABLE($1,[$3],$5=[$]enableval,$5=ifelse($4,,no,$4))
|
2002-01-27 11:37:02 +08:00
|
|
|
PHP_ARG_ANALYZE($5,[$2])
|
2000-03-28 07:33:38 +08:00
|
|
|
])
|
|
|
|
|
2000-03-26 10:47:00 +08:00
|
|
|
AC_DEFUN(PHP_MODULE_PTR,[
|
|
|
|
EXTRA_MODULE_PTRS="$EXTRA_MODULE_PTRS $1,"
|
|
|
|
])
|
2000-03-08 02:05:16 +08:00
|
|
|
|
|
|
|
AC_DEFUN(PHP_CONFIG_NICE,[
|
|
|
|
rm -f $1
|
|
|
|
cat >$1<<EOF
|
|
|
|
#! /bin/sh
|
|
|
|
#
|
|
|
|
# Created by configure
|
|
|
|
|
|
|
|
EOF
|
|
|
|
|
2001-05-20 04:21:58 +08:00
|
|
|
for var in CFLAGS CXXFLAGS CPPFLAGS LDFLAGS LIBS CC CXX; do
|
|
|
|
eval val=\$$var
|
|
|
|
if test -n "$val"; then
|
|
|
|
echo "$var='$val' \\" >> $1
|
|
|
|
fi
|
|
|
|
done
|
|
|
|
|
2000-03-08 02:05:16 +08:00
|
|
|
for arg in [$]0 "[$]@"; do
|
2001-05-20 04:21:58 +08:00
|
|
|
echo "'[$]arg' \\" >> $1
|
2000-03-08 02:05:16 +08:00
|
|
|
done
|
|
|
|
echo '"[$]@"' >> $1
|
|
|
|
chmod +x $1
|
|
|
|
])
|
1999-04-17 08:37:12 +08:00
|
|
|
|
2000-03-04 00:10:38 +08:00
|
|
|
AC_DEFUN(PHP_TIME_R_TYPE,[
|
2000-05-23 23:43:29 +08:00
|
|
|
AC_CACHE_CHECK(for type of reentrant time-related functions, ac_cv_time_r_type,[
|
2000-03-04 00:10:38 +08:00
|
|
|
AC_TRY_RUN([
|
|
|
|
#include <time.h>
|
|
|
|
|
|
|
|
main() {
|
|
|
|
char buf[27];
|
|
|
|
struct tm t;
|
|
|
|
time_t old = 0;
|
2000-04-02 00:00:34 +08:00
|
|
|
int r, s;
|
2000-03-04 00:10:38 +08:00
|
|
|
|
2000-04-02 00:00:34 +08:00
|
|
|
s = gmtime_r(&old, &t);
|
2000-03-04 00:10:38 +08:00
|
|
|
r = (int) asctime_r(&t, buf, 26);
|
2001-05-21 05:29:55 +08:00
|
|
|
if (r == s && s == 0) return (0);
|
|
|
|
return (1);
|
2000-03-04 00:10:38 +08:00
|
|
|
}
|
|
|
|
],[
|
|
|
|
ac_cv_time_r_type=hpux
|
|
|
|
],[
|
2001-05-21 05:29:55 +08:00
|
|
|
AC_TRY_RUN([
|
|
|
|
#include <time.h>
|
|
|
|
main() {
|
|
|
|
struct tm t, *s;
|
|
|
|
time_t old = 0;
|
|
|
|
char buf[27], *p;
|
|
|
|
|
|
|
|
s = gmtime_r(&old, &t);
|
|
|
|
p = asctime_r(&t, buf, 26);
|
2001-05-21 05:55:57 +08:00
|
|
|
if (p == buf && s == &t) return (0);
|
2001-05-21 05:29:55 +08:00
|
|
|
return (1);
|
|
|
|
}
|
|
|
|
],[
|
|
|
|
ac_cv_time_r_type=irix
|
|
|
|
],[
|
|
|
|
ac_cv_time_r_type=POSIX
|
|
|
|
])
|
2000-03-04 00:10:38 +08:00
|
|
|
],[
|
2000-05-23 23:43:29 +08:00
|
|
|
ac_cv_time_r_type=POSIX
|
2000-03-04 00:10:38 +08:00
|
|
|
])
|
|
|
|
])
|
2001-05-21 05:29:55 +08:00
|
|
|
case $ac_cv_time_r_type in
|
|
|
|
hpux) AC_DEFINE(PHP_HPUX_TIME_R,1,[Whether you have HP-UX 10.x]) ;;
|
|
|
|
irix) AC_DEFINE(PHP_IRIX_TIME_R,1,[Whether you have IRIX-style functions]) ;;
|
|
|
|
esac
|
2000-03-04 00:10:38 +08:00
|
|
|
])
|
|
|
|
|
1999-12-30 10:59:53 +08:00
|
|
|
AC_DEFUN(PHP_SUBST,[
|
|
|
|
PHP_VAR_SUBST="$PHP_VAR_SUBST $1"
|
2000-12-21 01:21:37 +08:00
|
|
|
])
|
|
|
|
|
|
|
|
AC_DEFUN(PHP_SUBST_OLD,[
|
|
|
|
PHP_SUBST($1)
|
1999-12-30 10:59:53 +08:00
|
|
|
AC_SUBST($1)
|
|
|
|
])
|
|
|
|
|
|
|
|
AC_DEFUN(PHP_MKDIR_P_CHECK,[
|
|
|
|
AC_CACHE_CHECK(for working mkdir -p, ac_cv_mkdir_p,[
|
|
|
|
test -d conftestdir && rm -rf conftestdir
|
|
|
|
mkdir -p conftestdir/somedir >/dev/null 2>&1
|
2001-05-21 05:07:23 +08:00
|
|
|
dnl `mkdir -p' must be quiet about creating existing directories
|
|
|
|
mkdir -p conftestdir/somedir >/dev/null 2>&1
|
|
|
|
if test "$?" = "0" && test -d conftestdir/somedir; then
|
1999-12-30 10:59:53 +08:00
|
|
|
ac_cv_mkdir_p=yes
|
|
|
|
else
|
|
|
|
ac_cv_mkdir_p=no
|
|
|
|
fi
|
|
|
|
rm -rf conftestdir
|
|
|
|
])
|
|
|
|
])
|
|
|
|
|
|
|
|
AC_DEFUN(PHP_TM_GMTOFF,[
|
|
|
|
AC_CACHE_CHECK([for tm_gmtoff in struct tm], ac_cv_struct_tm_gmtoff,
|
|
|
|
[AC_TRY_COMPILE([#include <sys/types.h>
|
|
|
|
#include <$ac_cv_struct_tm>], [struct tm tm; tm.tm_gmtoff;],
|
|
|
|
ac_cv_struct_tm_gmtoff=yes, ac_cv_struct_tm_gmtoff=no)])
|
|
|
|
|
|
|
|
if test "$ac_cv_struct_tm_gmtoff" = yes; then
|
2000-06-08 14:14:58 +08:00
|
|
|
AC_DEFINE(HAVE_TM_GMTOFF,1,[whether you have tm_gmtoff in struct tm])
|
1999-12-30 10:59:53 +08:00
|
|
|
fi
|
|
|
|
])
|
|
|
|
|
|
|
|
dnl PHP_CONFIGURE_PART(MESSAGE)
|
|
|
|
dnl Idea borrowed from mm
|
|
|
|
AC_DEFUN(PHP_CONFIGURE_PART,[
|
|
|
|
AC_MSG_RESULT()
|
2001-09-07 04:55:24 +08:00
|
|
|
AC_MSG_RESULT([${T_MD}$1${T_ME}])
|
1999-12-30 10:59:53 +08:00
|
|
|
])
|
|
|
|
|
|
|
|
AC_DEFUN(PHP_PROG_SENDMAIL,[
|
2001-02-21 15:39:13 +08:00
|
|
|
AC_PATH_PROG(PROG_SENDMAIL, sendmail,[], $PATH:/usr/bin:/usr/sbin:/usr/etc:/etc:/usr/ucblib:/usr/lib)
|
1999-12-30 10:59:53 +08:00
|
|
|
if test -n "$PROG_SENDMAIL"; then
|
2000-06-08 14:14:58 +08:00
|
|
|
AC_DEFINE(HAVE_SENDMAIL,1,[whether you have sendmail])
|
1999-12-30 10:59:53 +08:00
|
|
|
fi
|
|
|
|
])
|
|
|
|
|
|
|
|
AC_DEFUN(PHP_RUNPATH_SWITCH,[
|
|
|
|
dnl check for -R, etc. switch
|
2001-09-07 04:55:24 +08:00
|
|
|
AC_MSG_CHECKING([if compiler supports -R])
|
1999-12-30 10:59:53 +08:00
|
|
|
AC_CACHE_VAL(php_cv_cc_dashr,[
|
2001-05-12 18:33:52 +08:00
|
|
|
SAVE_LIBS=$LIBS
|
|
|
|
LIBS="-R /usr/lib $LIBS"
|
1999-12-30 10:59:53 +08:00
|
|
|
AC_TRY_LINK([], [], php_cv_cc_dashr=yes, php_cv_cc_dashr=no)
|
2001-05-12 18:33:52 +08:00
|
|
|
LIBS=$SAVE_LIBS])
|
2001-09-07 04:55:24 +08:00
|
|
|
AC_MSG_RESULT([$php_cv_cc_dashr])
|
1999-12-30 10:59:53 +08:00
|
|
|
if test $php_cv_cc_dashr = "yes"; then
|
2001-05-12 18:33:52 +08:00
|
|
|
ld_runpath_switch=-R
|
1999-12-30 10:59:53 +08:00
|
|
|
else
|
|
|
|
AC_MSG_CHECKING([if compiler supports -Wl,-rpath,])
|
|
|
|
AC_CACHE_VAL(php_cv_cc_rpath,[
|
2001-05-12 18:33:52 +08:00
|
|
|
SAVE_LIBS=$LIBS
|
|
|
|
LIBS="-Wl,-rpath,/usr/lib $LIBS"
|
1999-12-30 10:59:53 +08:00
|
|
|
AC_TRY_LINK([], [], php_cv_cc_rpath=yes, php_cv_cc_rpath=no)
|
2001-05-12 18:33:52 +08:00
|
|
|
LIBS=$SAVE_LIBS])
|
2001-09-07 04:55:24 +08:00
|
|
|
AC_MSG_RESULT([$php_cv_cc_rpath])
|
1999-12-30 10:59:53 +08:00
|
|
|
if test $php_cv_cc_rpath = "yes"; then
|
2001-05-12 18:33:52 +08:00
|
|
|
ld_runpath_switch=-Wl,-rpath,
|
1999-12-30 10:59:53 +08:00
|
|
|
else
|
|
|
|
dnl something innocuous
|
2001-05-12 18:33:52 +08:00
|
|
|
ld_runpath_switch=-L
|
1999-12-30 10:59:53 +08:00
|
|
|
fi
|
|
|
|
fi
|
|
|
|
])
|
|
|
|
|
|
|
|
AC_DEFUN(PHP_STRUCT_FLOCK,[
|
|
|
|
AC_CACHE_CHECK(for struct flock,ac_cv_struct_flock,
|
|
|
|
AC_TRY_COMPILE([
|
|
|
|
#include <unistd.h>
|
|
|
|
#include <fcntl.h>
|
|
|
|
],
|
|
|
|
[struct flock x;],
|
|
|
|
[
|
|
|
|
ac_cv_struct_flock=yes
|
|
|
|
],[
|
|
|
|
ac_cv_struct_flock=no
|
|
|
|
])
|
|
|
|
)
|
|
|
|
if test "$ac_cv_struct_flock" = "yes" ; then
|
2000-06-08 14:14:58 +08:00
|
|
|
AC_DEFINE(HAVE_STRUCT_FLOCK, 1,[whether you have struct flock])
|
1999-12-30 10:59:53 +08:00
|
|
|
fi
|
|
|
|
])
|
|
|
|
|
|
|
|
AC_DEFUN(PHP_SOCKLEN_T,[
|
|
|
|
AC_CACHE_CHECK(for socklen_t,ac_cv_socklen_t,
|
|
|
|
AC_TRY_COMPILE([
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <sys/socket.h>
|
|
|
|
],[
|
|
|
|
socklen_t x;
|
|
|
|
],[
|
|
|
|
ac_cv_socklen_t=yes
|
|
|
|
],[
|
|
|
|
ac_cv_socklen_t=no
|
|
|
|
]))
|
1999-12-31 00:09:17 +08:00
|
|
|
if test "$ac_cv_socklen_t" = "yes"; then
|
|
|
|
AC_DEFINE(HAVE_SOCKLEN_T, 1, [Whether you have socklen_t])
|
1999-12-30 10:59:53 +08:00
|
|
|
fi
|
|
|
|
])
|
|
|
|
|
1999-11-21 03:00:17 +08:00
|
|
|
dnl
|
|
|
|
dnl PHP_SET_SYM_FILE(path)
|
|
|
|
dnl
|
|
|
|
dnl set the path of the file which contains the symbol export list
|
|
|
|
dnl
|
|
|
|
AC_DEFUN(PHP_SET_SYM_FILE,
|
|
|
|
[
|
2001-05-12 18:33:52 +08:00
|
|
|
PHP_SYM_FILE=$1
|
1999-11-21 03:00:17 +08:00
|
|
|
])
|
|
|
|
|
1999-11-24 11:27:53 +08:00
|
|
|
dnl
|
|
|
|
dnl PHP_BUILD_THREAD_SAFE
|
1999-11-24 17:49:30 +08:00
|
|
|
dnl
|
1999-11-24 11:27:53 +08:00
|
|
|
AC_DEFUN(PHP_BUILD_THREAD_SAFE,[
|
1999-12-21 08:15:51 +08:00
|
|
|
enable_experimental_zts=yes
|
2000-05-04 17:42:27 +08:00
|
|
|
if test "$pthreads_working" != "yes"; then
|
2001-09-07 04:55:24 +08:00
|
|
|
AC_MSG_ERROR([ZTS currently requires working POSIX threads. We were unable to verify that your system supports Pthreads.])
|
2000-05-04 17:42:27 +08:00
|
|
|
fi
|
1999-11-24 11:27:53 +08:00
|
|
|
])
|
|
|
|
|
2000-07-10 04:39:18 +08:00
|
|
|
AC_DEFUN(PHP_REQUIRE_CXX,[
|
|
|
|
if test -z "$php_cxx_done"; then
|
|
|
|
AC_PROG_CXX
|
|
|
|
AC_PROG_CXXCPP
|
|
|
|
php_cxx_done=yes
|
|
|
|
fi
|
|
|
|
])
|
|
|
|
|
1999-10-04 23:18:26 +08:00
|
|
|
dnl
|
|
|
|
dnl PHP_BUILD_SHARED
|
|
|
|
dnl
|
|
|
|
AC_DEFUN(PHP_BUILD_SHARED,[
|
2002-03-07 22:20:02 +08:00
|
|
|
PHP_BUILD_PROGRAM
|
|
|
|
OVERALL_TARGET=libphp4.la
|
1999-10-04 23:18:26 +08:00
|
|
|
php_build_target=shared
|
2002-03-07 22:20:02 +08:00
|
|
|
|
|
|
|
php_c_pre=$shared_c_pre
|
|
|
|
php_c_meta=$shared_c_meta
|
|
|
|
php_c_post=$shared_c_post
|
|
|
|
php_cxx_pre=$shared_cxx_pre
|
|
|
|
php_cxx_meta=$shared_cxx_meta
|
|
|
|
php_cxx_post=$shared_cxx_post
|
|
|
|
php_lo=$shared_lo
|
1999-10-04 23:18:26 +08:00
|
|
|
])
|
|
|
|
|
|
|
|
dnl
|
|
|
|
dnl PHP_BUILD_STATIC
|
|
|
|
dnl
|
|
|
|
AC_DEFUN(PHP_BUILD_STATIC,[
|
2002-03-07 22:20:02 +08:00
|
|
|
PHP_BUILD_PROGRAM
|
|
|
|
OVERALL_TARGET=libphp4.la
|
1999-10-04 23:18:26 +08:00
|
|
|
php_build_target=static
|
|
|
|
])
|
|
|
|
|
2002-03-30 11:17:25 +08:00
|
|
|
dnl
|
|
|
|
dnl PHP_BUILD_BUNDLE
|
|
|
|
dnl
|
|
|
|
AC_DEFUN(PHP_BUILD_BUNDLE,[
|
|
|
|
PHP_BUILD_PROGRAM
|
|
|
|
OVERALL_TARGET=libs/libphp4.bundle
|
|
|
|
php_build_target=static
|
|
|
|
])
|
|
|
|
|
1999-10-04 23:18:26 +08:00
|
|
|
dnl
|
|
|
|
dnl PHP_BUILD_PROGRAM
|
|
|
|
dnl
|
|
|
|
AC_DEFUN(PHP_BUILD_PROGRAM,[
|
2002-03-07 22:20:02 +08:00
|
|
|
OVERALL_TARGET=php
|
|
|
|
php_c_pre='$(CC)'
|
|
|
|
php_c_meta='$(COMMON_FLAGS) $(CFLAGS_CLEAN) $(EXTRA_CFLAGS)'
|
2002-03-14 00:59:49 +08:00
|
|
|
php_c_post=' && echo > $[@]'
|
2002-03-07 22:20:02 +08:00
|
|
|
php_cxx_pre='$(CXX)'
|
|
|
|
php_cxx_meta='$(COMMON_FLAGS) $(CXXFLAGS_CLEAN) $(EXTRA_CXXFLAGS)'
|
2002-03-14 00:59:49 +08:00
|
|
|
php_cxx_post=' && echo > $[@]'
|
2002-03-07 22:20:02 +08:00
|
|
|
php_lo=o
|
|
|
|
|
|
|
|
shared_c_pre='$(LIBTOOL) --mode=compile $(CC)'
|
|
|
|
shared_c_meta='$(COMMON_FLAGS) $(CFLAGS_CLEAN) $(EXTRA_CFLAGS) -prefer-pic'
|
|
|
|
shared_c_post=
|
|
|
|
shared_cxx_pre='$(LIBTOOL) --mode=compile $(CXX)'
|
|
|
|
shared_cxx_meta='$(COMMON_FLAGS) $(CXXFLAGS_CLEAN) $(EXTRA_CXXFLAGS) -prefer-pic'
|
|
|
|
shared_cxx_post=
|
|
|
|
shared_lo=lo
|
|
|
|
|
1999-10-04 23:18:26 +08:00
|
|
|
php_build_target=program
|
|
|
|
])
|
|
|
|
|
1999-06-21 02:52:46 +08:00
|
|
|
dnl
|
|
|
|
dnl AC_PHP_ONCE(namespace, variable, code)
|
|
|
|
dnl
|
|
|
|
dnl execute code, if variable is not set in namespace
|
|
|
|
dnl
|
|
|
|
AC_DEFUN(AC_PHP_ONCE,[
|
2000-06-01 04:30:16 +08:00
|
|
|
changequote({,})
|
|
|
|
unique=`echo $2|sed 's/[^a-zA-Z0-9]/_/g'`
|
|
|
|
changequote([,])
|
1999-06-21 02:52:46 +08:00
|
|
|
cmd="echo $ac_n \"\$$1$unique$ac_c\""
|
|
|
|
if test -n "$unique" && test "`eval $cmd`" = "" ; then
|
|
|
|
eval "$1$unique=set"
|
|
|
|
$3
|
|
|
|
fi
|
|
|
|
])
|
|
|
|
|
|
|
|
dnl
|
2001-03-28 04:35:04 +08:00
|
|
|
dnl PHP_EXPAND_PATH(path, variable)
|
1999-06-21 02:52:46 +08:00
|
|
|
dnl
|
|
|
|
dnl expands path to an absolute path and assigns it to variable
|
|
|
|
dnl
|
2001-03-28 04:35:04 +08:00
|
|
|
AC_DEFUN(PHP_EXPAND_PATH,[
|
1999-06-28 05:14:00 +08:00
|
|
|
if test -z "$1" || echo "$1" | grep '^/' >/dev/null ; then
|
2001-05-12 18:33:52 +08:00
|
|
|
$2=$1
|
1999-06-28 05:14:00 +08:00
|
|
|
else
|
2000-05-05 00:08:10 +08:00
|
|
|
changequote({,})
|
2000-10-13 07:17:21 +08:00
|
|
|
ep_dir="`echo $1|sed 's%/*[^/][^/]*/*$%%'`"
|
2000-05-05 00:08:10 +08:00
|
|
|
changequote([,])
|
1999-11-13 20:38:23 +08:00
|
|
|
ep_realdir="`(cd \"$ep_dir\" && pwd)`"
|
|
|
|
$2="$ep_realdir/`basename \"$1\"`"
|
1999-06-21 02:52:46 +08:00
|
|
|
fi
|
|
|
|
])
|
2002-03-27 19:09:20 +08:00
|
|
|
dnl
|
|
|
|
dnl internal, don't use
|
|
|
|
AC_DEFUN(PHP_ADD_LIBPATH_GLOBAL,[
|
|
|
|
AC_PHP_ONCE(LIBPATH, $1, [
|
|
|
|
test -n "$ld_runpath_switch" && LDFLAGS="$LDFLAGS $ld_runpath_switch$1"
|
|
|
|
LDFLAGS="$LDFLAGS -L$1"
|
|
|
|
PHP_RPATHS="$PHP_RPATHS $1"
|
|
|
|
])
|
|
|
|
])dnl
|
|
|
|
dnl
|
|
|
|
dnl
|
1999-06-21 02:52:46 +08:00
|
|
|
dnl
|
2001-03-28 04:35:04 +08:00
|
|
|
dnl PHP_ADD_LIBPATH(path[, shared-libadd])
|
1999-06-21 02:52:46 +08:00
|
|
|
dnl
|
|
|
|
dnl add a library to linkpath/runpath
|
|
|
|
dnl
|
2001-03-28 04:35:04 +08:00
|
|
|
AC_DEFUN(PHP_ADD_LIBPATH,[
|
1999-09-26 23:38:58 +08:00
|
|
|
if test "$1" != "/usr/lib"; then
|
2001-03-28 04:35:04 +08:00
|
|
|
PHP_EXPAND_PATH($1, ai_p)
|
2002-03-27 19:09:20 +08:00
|
|
|
ifelse([$2],,[
|
|
|
|
PHP_ADD_LIBPATH_GLOBAL([$ai_p])
|
|
|
|
],[
|
|
|
|
if test "$ext_shared" = "yes"; then
|
|
|
|
$2="-R$ai_p -L$ai_p [$]$2"
|
|
|
|
else
|
|
|
|
PHP_ADD_LIBPATH_GLOBAL([$ai_p])
|
|
|
|
fi
|
|
|
|
])
|
1999-09-26 23:38:58 +08:00
|
|
|
fi
|
1999-09-26 17:05:56 +08:00
|
|
|
])
|
|
|
|
|
|
|
|
dnl
|
2001-03-28 04:35:04 +08:00
|
|
|
dnl PHP_BUILD_RPATH()
|
1999-09-26 17:05:56 +08:00
|
|
|
dnl
|
|
|
|
dnl builds RPATH from PHP_RPATHS
|
|
|
|
dnl
|
2001-03-28 04:35:04 +08:00
|
|
|
AC_DEFUN(PHP_BUILD_RPATH,[
|
2000-03-30 23:00:30 +08:00
|
|
|
if test "$PHP_RPATH" = "yes" && test -n "$PHP_RPATHS"; then
|
2002-03-07 22:20:02 +08:00
|
|
|
OLD_RPATHS=$PHP_RPATHS
|
2001-05-12 18:33:52 +08:00
|
|
|
unset PHP_RPATHS
|
2000-03-30 23:00:30 +08:00
|
|
|
for i in $OLD_RPATHS; do
|
|
|
|
PHP_LDFLAGS="$PHP_LDFLAGS -L$i"
|
|
|
|
PHP_RPATHS="$PHP_RPATHS -R $i"
|
2001-05-12 18:33:52 +08:00
|
|
|
NATIVE_RPATHS="$NATIVE_RPATHS $ld_runpath_switch$i"
|
2000-03-30 23:00:30 +08:00
|
|
|
done
|
1999-09-26 17:05:56 +08:00
|
|
|
fi
|
1999-06-21 02:52:46 +08:00
|
|
|
])
|
|
|
|
|
|
|
|
dnl
|
2001-06-01 14:26:22 +08:00
|
|
|
dnl PHP_ADD_INCLUDE(path [,before])
|
1999-06-21 02:52:46 +08:00
|
|
|
dnl
|
2001-06-11 12:15:58 +08:00
|
|
|
dnl add an include path.
|
2001-06-01 14:26:22 +08:00
|
|
|
dnl if before is 1, add in the beginning of INCLUDES.
|
1999-06-21 02:52:46 +08:00
|
|
|
dnl
|
2001-03-28 04:35:04 +08:00
|
|
|
AC_DEFUN(PHP_ADD_INCLUDE,[
|
1999-09-26 23:38:58 +08:00
|
|
|
if test "$1" != "/usr/include"; then
|
2001-03-28 04:35:04 +08:00
|
|
|
PHP_EXPAND_PATH($1, ai_p)
|
1999-09-26 23:38:58 +08:00
|
|
|
AC_PHP_ONCE(INCLUDEPATH, $ai_p, [
|
2001-06-01 14:26:22 +08:00
|
|
|
if test "$2"; then
|
|
|
|
INCLUDES="-I$ai_p $INCLUDES"
|
|
|
|
else
|
|
|
|
INCLUDES="$INCLUDES -I$ai_p"
|
|
|
|
fi
|
1999-09-26 23:38:58 +08:00
|
|
|
])
|
|
|
|
fi
|
1999-06-21 02:52:46 +08:00
|
|
|
])
|
2002-03-27 19:09:20 +08:00
|
|
|
dnl
|
|
|
|
dnl internal, don't use
|
|
|
|
AC_DEFUN(PHP_X_ADD_LIBRARY,[dnl
|
|
|
|
ifelse([$2],,$3="-l$1 [$]$3", $3="[$]$3 -l$1") dnl
|
|
|
|
])dnl
|
|
|
|
dnl
|
|
|
|
dnl internal, don't use
|
|
|
|
AC_DEFUN(PHP_ADD_LIBRARY_SKELETON,[
|
|
|
|
case $1 in
|
|
|
|
c|c_r|pthread*) ;;
|
|
|
|
*) ifelse($3,,[
|
2002-04-04 18:03:29 +08:00
|
|
|
PHP_X_ADD_LIBRARY($1,$2,$5)
|
2002-03-27 19:09:20 +08:00
|
|
|
],[
|
|
|
|
if test "$ext_shared" = "yes"; then
|
|
|
|
PHP_X_ADD_LIBRARY($1,$2,$3)
|
|
|
|
else
|
|
|
|
$4($1,$2)
|
|
|
|
fi
|
|
|
|
]) ;;
|
|
|
|
esac
|
|
|
|
])dnl
|
|
|
|
dnl
|
|
|
|
dnl
|
1999-06-21 02:52:46 +08:00
|
|
|
dnl
|
2001-03-28 04:35:04 +08:00
|
|
|
dnl PHP_ADD_LIBRARY(library[, append[, shared-libadd]])
|
1999-06-21 02:52:46 +08:00
|
|
|
dnl
|
|
|
|
dnl add a library to the link line
|
|
|
|
dnl
|
2001-03-28 04:35:04 +08:00
|
|
|
AC_DEFUN(PHP_ADD_LIBRARY,[
|
2002-04-04 18:03:29 +08:00
|
|
|
PHP_ADD_LIBRARY_SKELETON([$1],[$2],[$3],[PHP_ADD_LIBRARY],[LIBS])
|
1999-06-21 02:52:46 +08:00
|
|
|
])
|
|
|
|
|
2000-02-29 21:02:29 +08:00
|
|
|
dnl
|
2001-08-03 13:17:18 +08:00
|
|
|
dnl PHP_ADD_LIBRARY_DEFER(library[, append[, shared-libadd]])
|
2000-02-29 21:02:29 +08:00
|
|
|
dnl
|
2000-03-12 06:05:41 +08:00
|
|
|
dnl add a library to the link line (deferred)
|
2001-08-03 13:17:18 +08:00
|
|
|
dnl
|
2001-03-28 04:35:04 +08:00
|
|
|
AC_DEFUN(PHP_ADD_LIBRARY_DEFER,[
|
2002-04-04 18:03:29 +08:00
|
|
|
PHP_ADD_LIBRARY_SKELETON([$1],[$2],[$3],[PHP_ADD_LIBRARY_DEFER],[DLIBS])
|
2001-08-03 13:17:18 +08:00
|
|
|
])
|
2002-04-04 18:03:29 +08:00
|
|
|
|
1999-06-21 02:52:46 +08:00
|
|
|
dnl
|
2001-03-28 04:35:04 +08:00
|
|
|
dnl PHP_ADD_LIBRARY_WITH_PATH(library, path[, shared-libadd])
|
1999-06-21 02:52:46 +08:00
|
|
|
dnl
|
2000-05-02 12:00:14 +08:00
|
|
|
dnl add a library to the link line and path to linkpath/runpath.
|
|
|
|
dnl if shared-libadd is not empty and $ext_shared is yes,
|
|
|
|
dnl shared-libadd will be assigned the library information
|
1999-06-21 02:52:46 +08:00
|
|
|
dnl
|
2001-03-28 04:35:04 +08:00
|
|
|
AC_DEFUN(PHP_ADD_LIBRARY_WITH_PATH,[
|
2000-05-02 12:00:14 +08:00
|
|
|
ifelse($3,,[
|
2000-05-08 16:27:48 +08:00
|
|
|
if test -n "$2"; then
|
2001-03-28 04:35:04 +08:00
|
|
|
PHP_ADD_LIBPATH($2)
|
2000-05-08 16:27:48 +08:00
|
|
|
fi
|
2001-03-28 04:35:04 +08:00
|
|
|
PHP_ADD_LIBRARY($1)
|
2000-05-02 12:00:14 +08:00
|
|
|
],[
|
|
|
|
if test "$ext_shared" = "yes"; then
|
2000-05-24 07:13:13 +08:00
|
|
|
$3="-l$1 [$]$3"
|
2000-05-02 12:00:14 +08:00
|
|
|
if test -n "$2"; then
|
2001-03-28 04:35:04 +08:00
|
|
|
PHP_ADD_LIBPATH($2,$3)
|
2000-05-02 12:00:14 +08:00
|
|
|
fi
|
|
|
|
else
|
2001-03-28 04:35:04 +08:00
|
|
|
PHP_ADD_LIBRARY_WITH_PATH($1,$2)
|
2000-05-24 07:13:13 +08:00
|
|
|
fi
|
2000-05-02 12:00:14 +08:00
|
|
|
])
|
1999-06-21 02:52:46 +08:00
|
|
|
])
|
|
|
|
|
2000-03-12 06:05:41 +08:00
|
|
|
dnl
|
2001-03-28 04:35:04 +08:00
|
|
|
dnl PHP_ADD_LIBRARY_DEFER_WITH_PATH(library, path)
|
2000-03-12 06:05:41 +08:00
|
|
|
dnl
|
|
|
|
dnl add a library to the link line (deferred)
|
|
|
|
dnl and path to linkpath/runpath (not deferred)
|
|
|
|
dnl
|
2001-03-28 04:35:04 +08:00
|
|
|
AC_DEFUN(PHP_ADD_LIBRARY_DEFER_WITH_PATH,[
|
|
|
|
PHP_ADD_LIBPATH($2)
|
|
|
|
PHP_ADD_LIBRARY_DEFER($1)
|
2000-03-12 06:05:41 +08:00
|
|
|
])
|
1999-04-25 07:36:25 +08:00
|
|
|
|
2001-03-28 04:35:04 +08:00
|
|
|
dnl
|
|
|
|
dnl Set libtool variable
|
|
|
|
dnl
|
2002-03-07 22:20:02 +08:00
|
|
|
AC_DEFUN(PHP_SET_LIBTOOL_VARIABLE,[
|
|
|
|
LIBTOOL='$(SHELL) libtool $1'
|
1999-09-16 16:26:46 +08:00
|
|
|
])
|
|
|
|
|
1999-04-25 07:36:25 +08:00
|
|
|
dnl
|
|
|
|
dnl Check for cc option
|
|
|
|
dnl
|
2001-03-28 04:35:04 +08:00
|
|
|
AC_DEFUN(PHP_CHECK_CC_OPTION,[
|
1999-04-25 07:36:25 +08:00
|
|
|
echo "main(){return 0;}" > conftest.$ac_ext
|
2001-05-12 18:33:52 +08:00
|
|
|
opt=$1
|
2000-06-01 04:30:16 +08:00
|
|
|
changequote({,})
|
|
|
|
var=`echo $opt|sed 's/[^a-zA-Z0-9]/_/g'`
|
|
|
|
changequote([,])
|
1999-04-26 00:50:40 +08:00
|
|
|
AC_MSG_CHECKING([if compiler supports -$1 really])
|
1999-08-04 04:56:13 +08:00
|
|
|
ac_php_compile="${CC-cc} -$opt -o conftest $CFLAGS $CPPFLAGS conftest.$ac_ext 2>&1"
|
|
|
|
if eval $ac_php_compile 2>&1 | egrep "$opt" > /dev/null 2>&1 ; then
|
1999-04-25 07:36:25 +08:00
|
|
|
eval php_cc_$var=no
|
2001-09-07 04:55:24 +08:00
|
|
|
AC_MSG_RESULT([no])
|
1999-04-25 07:36:25 +08:00
|
|
|
else
|
1999-08-04 04:56:13 +08:00
|
|
|
if eval ./conftest 2>/dev/null ; then
|
|
|
|
eval php_cc_$var=yes
|
2001-09-07 04:55:24 +08:00
|
|
|
AC_MSG_RESULT([yes])
|
1999-08-04 04:56:13 +08:00
|
|
|
else
|
|
|
|
eval php_cc_$var=no
|
2001-09-07 04:55:24 +08:00
|
|
|
AC_MSG_RESULT([no])
|
1999-08-04 04:56:13 +08:00
|
|
|
fi
|
1999-04-25 07:36:25 +08:00
|
|
|
fi
|
|
|
|
])
|
|
|
|
|
1999-11-14 00:51:33 +08:00
|
|
|
AC_DEFUN(PHP_REGEX,[
|
2002-04-09 02:43:35 +08:00
|
|
|
|
|
|
|
if test "$REGEX_TYPE" = "php"; then
|
2000-06-08 14:14:58 +08:00
|
|
|
AC_DEFINE(HSREGEX,1,[ ])
|
|
|
|
AC_DEFINE(REGEX,1,[ ])
|
2002-03-07 22:20:02 +08:00
|
|
|
PHP_ADD_SOURCES(regex, regcomp.c regexec.c regerror.c regfree.c)
|
2002-04-09 02:43:35 +08:00
|
|
|
elif test "$REGEX_TYPE" = "system"; then
|
|
|
|
AC_DEFINE(REGEX,0,[ ])
|
|
|
|
fi
|
|
|
|
|
|
|
|
AC_MSG_CHECKING([which regex library to use])
|
|
|
|
AC_MSG_RESULT([$REGEX_TYPE])
|
1999-11-13 04:56:30 +08:00
|
|
|
])
|
1999-04-25 07:36:25 +08:00
|
|
|
|
1999-04-17 08:37:12 +08:00
|
|
|
dnl
|
|
|
|
dnl See if we have broken header files like SunOS has.
|
|
|
|
dnl
|
2001-03-28 04:35:04 +08:00
|
|
|
AC_DEFUN(PHP_MISSING_FCLOSE_DECL,[
|
1999-04-17 08:37:12 +08:00
|
|
|
AC_MSG_CHECKING([for fclose declaration])
|
|
|
|
AC_TRY_COMPILE([#include <stdio.h>],[int (*func)() = fclose],[
|
2000-06-08 14:14:58 +08:00
|
|
|
AC_DEFINE(MISSING_FCLOSE_DECL,0,[ ])
|
2001-09-07 04:55:24 +08:00
|
|
|
AC_MSG_RESULT([ok])
|
1999-04-17 08:37:12 +08:00
|
|
|
],[
|
2000-06-08 14:14:58 +08:00
|
|
|
AC_DEFINE(MISSING_FCLOSE_DECL,1,[ ])
|
2001-09-07 04:55:24 +08:00
|
|
|
AC_MSG_RESULT([missing])
|
1999-04-17 08:37:12 +08:00
|
|
|
])
|
|
|
|
])
|
|
|
|
|
|
|
|
dnl
|
|
|
|
dnl Check for broken sprintf()
|
|
|
|
dnl
|
2001-03-28 04:35:04 +08:00
|
|
|
AC_DEFUN(PHP_AC_BROKEN_SPRINTF,[
|
1999-12-30 10:59:53 +08:00
|
|
|
AC_CACHE_CHECK(whether sprintf is broken, ac_cv_broken_sprintf,[
|
|
|
|
AC_TRY_RUN([main() {char buf[20];exit(sprintf(buf,"testing 123")!=11); }],[
|
|
|
|
ac_cv_broken_sprintf=no
|
|
|
|
],[
|
|
|
|
ac_cv_broken_sprintf=yes
|
|
|
|
],[
|
|
|
|
ac_cv_broken_sprintf=no
|
|
|
|
])
|
1999-04-17 08:37:12 +08:00
|
|
|
])
|
1999-12-30 10:59:53 +08:00
|
|
|
if test "$ac_cv_broken_sprintf" = "yes"; then
|
2000-06-08 14:14:58 +08:00
|
|
|
AC_DEFINE(PHP_BROKEN_SPRINTF, 1, [ ])
|
1999-12-30 10:59:53 +08:00
|
|
|
else
|
2000-06-08 14:14:58 +08:00
|
|
|
AC_DEFINE(PHP_BROKEN_SPRINTF, 0, [ ])
|
1999-12-30 10:59:53 +08:00
|
|
|
fi
|
1999-04-17 08:37:12 +08:00
|
|
|
])
|
|
|
|
|
2002-03-07 22:20:02 +08:00
|
|
|
dnl PHP_SHARED_MODULE(module-name, object-var, build-dir)
|
|
|
|
dnl
|
|
|
|
dnl Basically sets up the link-stage for building module-name
|
|
|
|
dnl from object_var in build-dir.
|
|
|
|
dnl
|
|
|
|
AC_DEFUN(PHP_SHARED_MODULE,[
|
|
|
|
PHP_MODULES="$PHP_MODULES \$(phplibdir)/$1.la"
|
|
|
|
PHP_SUBST($2)
|
|
|
|
cat >>Makefile.objects<<EOF
|
|
|
|
\$(phplibdir)/$1.la: $3/$1.la
|
|
|
|
\$(LIBTOOL) --mode=install cp $3/$1.la \$(phplibdir)
|
|
|
|
|
|
|
|
$3/$1.la: \$($2) \$(translit($1,a-z-,A-Z_)_SHARED_DEPENDENCIES)
|
|
|
|
\$(LIBTOOL) --mode=link \$(CC) \$(COMMON_FLAGS) \$(CFLAGS_CLEAN) \$(EXTRA_CFLAGS) \$(LDFLAGS) -o \[$]@ -export-dynamic -avoid-version -prefer-pic -module -rpath \$(phplibdir) \$(EXTRA_LDFLAGS) \$($2) \$(translit($1,a-z-,A-Z_)_SHARED_LIBADD)
|
|
|
|
|
|
|
|
EOF
|
|
|
|
])
|
|
|
|
|
|
|
|
dnl
|
|
|
|
dnl PHP_SELECT_SAPI(name, type[, sources])
|
|
|
|
dnl
|
|
|
|
dnl Selects the SAPI name and type (static, shared, programm)
|
|
|
|
dnl and optionally also the source-files for the SAPI-specific
|
|
|
|
dnl objects.
|
|
|
|
dnl
|
|
|
|
AC_DEFUN(PHP_SELECT_SAPI,[
|
|
|
|
PHP_SAPI=$1
|
|
|
|
|
|
|
|
case "$2" in
|
|
|
|
static) PHP_BUILD_STATIC;;
|
|
|
|
shared) PHP_BUILD_SHARED;;
|
2002-03-30 11:17:25 +08:00
|
|
|
bundle) PHP_BUILD_BUNDLE;;
|
2002-03-07 22:20:02 +08:00
|
|
|
program) PHP_BUILD_PROGRAM;;
|
|
|
|
esac
|
|
|
|
|
|
|
|
ifelse($3,,,[PHP_ADD_SOURCES(sapi/$1, $3,,sapi)])
|
|
|
|
])
|
|
|
|
|
|
|
|
dnl deprecated
|
|
|
|
AC_DEFUN(PHP_EXTENSION,[
|
2002-03-13 17:20:49 +08:00
|
|
|
sources=`awk -f $abs_srcdir/scan_makefile_in.awk < []PHP_EXT_SRCDIR($1)[]/Makefile.in`
|
2002-03-07 22:20:02 +08:00
|
|
|
|
|
|
|
PHP_NEW_EXTENSION($1, $sources, $2, $3)
|
|
|
|
|
|
|
|
if test -r "$ext_srcdir/Makefile.frag"; then
|
|
|
|
PHP_ADD_MAKEFILE_FRAGMENT
|
|
|
|
fi
|
|
|
|
])
|
|
|
|
|
|
|
|
AC_DEFUN(PHP_ADD_BUILD_DIR,[
|
|
|
|
BUILD_DIR="$BUILD_DIR $1"
|
|
|
|
])
|
|
|
|
|
|
|
|
AC_DEFUN(PHP_GEN_BUILD_DIRS,[
|
|
|
|
PHP_MKDIR_P_CHECK
|
|
|
|
if test "$ac_cv_mkdir_p" = "yes"; then
|
|
|
|
mkdir -p $BUILD_DIR
|
|
|
|
fi
|
|
|
|
])
|
|
|
|
|
1999-04-17 08:37:12 +08:00
|
|
|
dnl
|
2002-03-07 22:20:02 +08:00
|
|
|
dnl PHP_NEW_EXTENSION(extname, sources [, shared [,sapi_class[, extra-cflags]]])
|
1999-09-29 23:17:02 +08:00
|
|
|
dnl
|
|
|
|
dnl Includes an extension in the build.
|
|
|
|
dnl
|
2002-03-07 22:20:02 +08:00
|
|
|
dnl "extname" is the name of the ext/ subdir where the extension resides.
|
|
|
|
dnl "sources" is a list of files relative to the subdir which are used
|
|
|
|
dnl to build the extension.
|
1999-09-29 23:17:02 +08:00
|
|
|
dnl "shared" can be set to "shared" or "yes" to build the extension as
|
2002-01-20 10:30:18 +08:00
|
|
|
dnl a dynamically loadable library. Optional parameter "sapi_class" can
|
|
|
|
dnl be set to "cli" to mark extension build only with CLI or CGI sapi's.
|
2002-03-07 22:20:02 +08:00
|
|
|
dnl extra-cflags are passed to the compiler, with @ext_srcdir@ being
|
|
|
|
dnl substituted.
|
|
|
|
AC_DEFUN(PHP_NEW_EXTENSION,[
|
2002-03-13 17:20:49 +08:00
|
|
|
ext_builddir=[]PHP_EXT_BUILDDIR($1)
|
|
|
|
ext_srcdir=[]PHP_EXT_SRCDIR($1)
|
2000-05-01 10:42:55 +08:00
|
|
|
|
2002-04-11 13:47:03 +08:00
|
|
|
ifelse($5,,ac_extra=,[ac_extra=`echo $ac_n "$5$ac_c"|sed s#@ext_srcdir@#$ext_srcdir#g`])
|
2002-03-07 22:20:02 +08:00
|
|
|
|
|
|
|
if test "$3" != "shared" && test "$3" != "yes" && test "$4" != "cli"; then
|
2000-05-01 10:42:55 +08:00
|
|
|
dnl ---------------------------------------------- Static module
|
2002-03-07 22:20:02 +08:00
|
|
|
|
2002-04-06 21:42:40 +08:00
|
|
|
PHP_ADD_SOURCES(PHP_EXT_DIR($1),$2,$ac_extra,)
|
2000-05-01 10:42:55 +08:00
|
|
|
EXT_STATIC="$EXT_STATIC $1"
|
2002-01-31 07:46:44 +08:00
|
|
|
if test "$3" != "nocli"; then
|
|
|
|
EXT_CLI_LTLIBS="$EXT_CLI_LTLIBS $abs_builddir/$ext_builddir/lib$1.la"
|
|
|
|
EXT_CLI_STATIC="$EXT_CLI_STATIC $1"
|
|
|
|
fi
|
2002-01-20 10:30:18 +08:00
|
|
|
else
|
2002-03-07 22:20:02 +08:00
|
|
|
if test "$3" = "shared" || test "$3" = "yes"; then
|
2000-05-01 10:42:55 +08:00
|
|
|
dnl ---------------------------------------------- Shared module
|
2002-04-06 21:42:40 +08:00
|
|
|
PHP_ADD_SOURCES_X(PHP_EXT_DIR($1),$2,$ac_extra,shared_objects_$1,yes)
|
2002-03-07 22:20:02 +08:00
|
|
|
PHP_SHARED_MODULE($1,shared_objects_$1, $ext_builddir)
|
2002-01-20 10:30:18 +08:00
|
|
|
AC_DEFINE_UNQUOTED([COMPILE_DL_]translit($1,a-z-,A-Z_), 1, Whether to build $1 as dynamic module)
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
2002-03-07 22:20:02 +08:00
|
|
|
if test "$3" != "shared" && test "$3" != "yes" && test "$4" = "cli"; then
|
|
|
|
dnl ---------------------------------------------- CLI static module
|
2002-01-20 10:30:18 +08:00
|
|
|
if test "$PHP_SAPI" = "cgi"; then
|
2002-04-06 21:42:40 +08:00
|
|
|
PHP_ADD_SOURCES(PHP_EXT_DIR($1),$2,$ac_extra,)
|
2002-01-20 10:30:18 +08:00
|
|
|
EXT_STATIC="$EXT_STATIC $1"
|
2002-03-07 22:20:02 +08:00
|
|
|
else
|
2002-04-06 21:42:40 +08:00
|
|
|
PHP_ADD_SOURCES(PHP_EXT_DIR($1),$2,$ac_extra,cli)
|
2002-01-20 10:30:18 +08:00
|
|
|
fi
|
2002-01-31 07:46:44 +08:00
|
|
|
EXT_CLI_LTLIBS="$EXT_CLI_LTLIBS $abs_builddir/$ext_builddir/lib$1.la"
|
|
|
|
EXT_CLI_STATIC="$EXT_CLI_STATIC $1"
|
2000-05-01 10:42:55 +08:00
|
|
|
fi
|
2002-03-07 22:20:02 +08:00
|
|
|
PHP_ADD_BUILD_DIR($ext_builddir)
|
1999-04-17 08:37:12 +08:00
|
|
|
])
|
|
|
|
|
1999-07-25 03:02:38 +08:00
|
|
|
dnl
|
|
|
|
dnl Solaris requires main code to be position independent in order
|
|
|
|
dnl to let shared objects find symbols. Weird. Ugly.
|
|
|
|
dnl
|
|
|
|
dnl Must be run after all --with-NN options that let the user
|
|
|
|
dnl choose dynamic extensions, and after the gcc test.
|
|
|
|
dnl
|
|
|
|
AC_DEFUN(PHP_SOLARIS_PIC_WEIRDNESS,[
|
2001-09-07 04:55:24 +08:00
|
|
|
AC_MSG_CHECKING([whether -fPIC is required])
|
2001-05-12 18:33:52 +08:00
|
|
|
if test -n "$EXT_SHARED"; then
|
1999-07-25 03:02:38 +08:00
|
|
|
os=`uname -sr 2>/dev/null`
|
2001-05-12 19:09:05 +08:00
|
|
|
case $os in
|
1999-07-25 03:10:17 +08:00
|
|
|
"SunOS 5.6"|"SunOS 5.7")
|
2001-05-12 19:09:05 +08:00
|
|
|
case $CC in
|
1999-07-25 03:02:38 +08:00
|
|
|
gcc*|egcs*) CFLAGS="$CFLAGS -fPIC";;
|
|
|
|
*) CFLAGS="$CFLAGS -fpic";;
|
|
|
|
esac
|
2001-09-07 04:55:24 +08:00
|
|
|
AC_MSG_RESULT([yes]);;
|
1999-07-25 03:02:38 +08:00
|
|
|
*)
|
2001-09-07 04:55:24 +08:00
|
|
|
AC_MSG_RESULT([no]);;
|
1999-07-25 03:02:38 +08:00
|
|
|
esac
|
1999-09-12 20:20:59 +08:00
|
|
|
else
|
2001-09-07 04:55:24 +08:00
|
|
|
AC_MSG_RESULT([no])
|
1999-07-25 03:02:38 +08:00
|
|
|
fi
|
|
|
|
])
|
1999-09-14 01:17:51 +08:00
|
|
|
|
|
|
|
dnl
|
|
|
|
dnl Checks whether $withval is "shared" or starts with "shared,XXX"
|
|
|
|
dnl and sets $shared to "yes" or "no", and removes "shared,?" stuff
|
|
|
|
dnl from $withval.
|
|
|
|
dnl
|
|
|
|
AC_DEFUN(PHP_WITH_SHARED,[
|
2002-03-13 20:30:49 +08:00
|
|
|
PHP_ARG_ANALYZE_EX(withval)
|
|
|
|
shared=$ext_shared
|
|
|
|
unset ext_shared ext_output
|
1999-09-14 01:17:51 +08:00
|
|
|
])
|
1999-09-27 21:15:20 +08:00
|
|
|
|
|
|
|
dnl The problem is that the default compilation flags in Solaris 2.6 won't
|
|
|
|
dnl let programs access large files; you need to tell the compiler that
|
|
|
|
dnl you actually want your programs to work on large files. For more
|
|
|
|
dnl details about this brain damage please see:
|
|
|
|
dnl http://www.sas.com/standards/large.file/x_open.20Mar96.html
|
|
|
|
|
|
|
|
dnl Written by Paul Eggert <eggert@twinsun.com>.
|
|
|
|
|
2001-03-28 04:35:04 +08:00
|
|
|
AC_DEFUN(PHP_SYS_LFS,
|
1999-09-27 21:15:20 +08:00
|
|
|
[dnl
|
|
|
|
# If available, prefer support for large files unless the user specified
|
|
|
|
# one of the CPPFLAGS, LDFLAGS, or LIBS variables.
|
2001-09-07 04:55:24 +08:00
|
|
|
AC_MSG_CHECKING([whether large file support needs explicit enabling])
|
1999-09-27 21:15:20 +08:00
|
|
|
ac_getconfs=''
|
|
|
|
ac_result=yes
|
|
|
|
ac_set=''
|
|
|
|
ac_shellvars='CPPFLAGS LDFLAGS LIBS'
|
|
|
|
for ac_shellvar in $ac_shellvars; do
|
|
|
|
case $ac_shellvar in
|
|
|
|
CPPFLAGS) ac_lfsvar=LFS_CFLAGS ;;
|
|
|
|
*) ac_lfsvar=LFS_$ac_shellvar ;;
|
|
|
|
esac
|
|
|
|
eval test '"${'$ac_shellvar'+set}"' = set && ac_set=$ac_shellvar
|
|
|
|
(getconf $ac_lfsvar) >/dev/null 2>&1 || { ac_result=no; break; }
|
|
|
|
ac_getconf=`getconf $ac_lfsvar`
|
|
|
|
ac_getconfs=$ac_getconfs$ac_getconf
|
|
|
|
eval ac_test_$ac_shellvar=\$ac_getconf
|
|
|
|
done
|
|
|
|
case "$ac_result$ac_getconfs" in
|
|
|
|
yes) ac_result=no ;;
|
|
|
|
esac
|
|
|
|
case "$ac_result$ac_set" in
|
|
|
|
yes?*) ac_result="yes, but $ac_set is already set, so use its settings"
|
|
|
|
esac
|
2001-09-07 04:55:24 +08:00
|
|
|
AC_MSG_RESULT([$ac_result])
|
1999-09-27 21:15:20 +08:00
|
|
|
case $ac_result in
|
|
|
|
yes)
|
|
|
|
for ac_shellvar in $ac_shellvars; do
|
|
|
|
eval $ac_shellvar=\$ac_test_$ac_shellvar
|
|
|
|
done ;;
|
|
|
|
esac
|
|
|
|
])
|
1999-09-29 23:17:02 +08:00
|
|
|
|
2001-03-28 04:35:04 +08:00
|
|
|
AC_DEFUN(PHP_SOCKADDR_SA_LEN,[
|
1999-09-29 23:17:02 +08:00
|
|
|
AC_CACHE_CHECK([for field sa_len in struct sockaddr],ac_cv_sockaddr_sa_len,[
|
|
|
|
AC_TRY_COMPILE([#include <sys/types.h>
|
|
|
|
#include <sys/socket.h>],
|
|
|
|
[struct sockaddr s; s.sa_len;],
|
|
|
|
[ac_cv_sockaddr_sa_len=yes
|
2000-06-08 14:14:58 +08:00
|
|
|
AC_DEFINE(HAVE_SOCKADDR_SA_LEN,1,[ ])],
|
1999-09-29 23:17:02 +08:00
|
|
|
[ac_cv_sockaddr_sa_len=no])
|
|
|
|
])
|
|
|
|
])
|
|
|
|
|
1999-12-30 10:59:53 +08:00
|
|
|
|
2000-07-26 22:53:54 +08:00
|
|
|
dnl ## PHP_OUTPUT(file)
|
1999-09-29 23:17:02 +08:00
|
|
|
dnl ## adds "file" to the list of files generated by AC_OUTPUT
|
|
|
|
dnl ## This macro can be used several times.
|
|
|
|
AC_DEFUN(PHP_OUTPUT,[
|
|
|
|
PHP_OUTPUT_FILES="$PHP_OUTPUT_FILES $1"
|
|
|
|
])
|
1999-12-30 10:59:53 +08:00
|
|
|
|
2000-01-01 10:22:01 +08:00
|
|
|
AC_DEFUN(PHP_DECLARED_TIMEZONE,[
|
|
|
|
AC_CACHE_CHECK(for declared timezone, ac_cv_declared_timezone,[
|
|
|
|
AC_TRY_COMPILE([
|
|
|
|
#include <sys/types.h>
|
|
|
|
#include <time.h>
|
|
|
|
#ifdef HAVE_SYS_TIME_H
|
|
|
|
#include <sys/time.h>
|
|
|
|
#endif
|
|
|
|
],[
|
|
|
|
time_t foo = (time_t) timezone;
|
|
|
|
],[
|
|
|
|
ac_cv_declared_timezone=yes
|
|
|
|
],[
|
|
|
|
ac_cv_declared_timezone=no
|
|
|
|
])])
|
|
|
|
if test "$ac_cv_declared_timezone" = "yes"; then
|
|
|
|
AC_DEFINE(HAVE_DECLARED_TIMEZONE, 1, [Whether system headers declare timezone])
|
|
|
|
fi
|
|
|
|
])
|
2000-04-13 20:24:28 +08:00
|
|
|
|
|
|
|
AC_DEFUN(PHP_EBCDIC,[
|
|
|
|
AC_CACHE_CHECK([whether system uses EBCDIC],ac_cv_ebcdic,[
|
|
|
|
AC_TRY_RUN( [
|
|
|
|
int main(void) {
|
|
|
|
return (unsigned char)'A' != (unsigned char)0xC1;
|
|
|
|
}
|
|
|
|
],[
|
2001-05-12 18:33:52 +08:00
|
|
|
ac_cv_ebcdic=yes
|
2000-04-13 20:24:28 +08:00
|
|
|
],[
|
2001-05-12 18:33:52 +08:00
|
|
|
ac_cv_ebcdic=no
|
2000-04-13 20:24:28 +08:00
|
|
|
],[
|
2001-05-12 18:33:52 +08:00
|
|
|
ac_cv_ebcdic=no
|
2000-04-13 20:24:28 +08:00
|
|
|
])])
|
|
|
|
if test "$ac_cv_ebcdic" = "yes"; then
|
2000-06-08 14:14:58 +08:00
|
|
|
AC_DEFINE(CHARSET_EBCDIC,1, [Define if system uses EBCDIC])
|
2000-04-13 20:24:28 +08:00
|
|
|
fi
|
|
|
|
])
|
|
|
|
|
2000-11-21 16:38:20 +08:00
|
|
|
AC_DEFUN(PHP_FOPENCOOKIE,[
|
|
|
|
AC_CHECK_FUNC(fopencookie, [ have_glibc_fopencookie=yes ])
|
|
|
|
|
|
|
|
if test "$have_glibc_fopencookie" = "yes" ; then
|
|
|
|
dnl this comes in two flavors:
|
|
|
|
dnl newer glibcs (since 2.1.2 ? )
|
|
|
|
dnl have a type called cookie_io_functions_t
|
|
|
|
AC_TRY_COMPILE([ #define _GNU_SOURCE
|
|
|
|
#include <stdio.h>
|
|
|
|
],
|
|
|
|
[ cookie_io_functions_t cookie; ],
|
|
|
|
[ have_cookie_io_functions_t=yes ],
|
2001-08-21 19:02:42 +08:00
|
|
|
[] )
|
2000-11-21 16:38:20 +08:00
|
|
|
|
|
|
|
if test "$have_cookie_io_functions_t" = "yes" ; then
|
|
|
|
cookie_io_functions_t=cookie_io_functions_t
|
|
|
|
have_fopen_cookie=yes
|
|
|
|
else
|
|
|
|
dnl older glibc versions (up to 2.1.2 ?)
|
|
|
|
dnl call it _IO_cookie_io_functions_t
|
|
|
|
AC_TRY_COMPILE([ #define _GNU_SOURCE
|
|
|
|
#include <stdio.h>
|
|
|
|
],
|
|
|
|
[ _IO_cookie_io_functions_t cookie; ],
|
|
|
|
[ have_IO_cookie_io_functions_t=yes ],
|
|
|
|
[] )
|
|
|
|
if test "$have_cookie_io_functions_t" = "yes" ; then
|
|
|
|
cookie_io_functions_t=_IO_cookie_io_functions_t
|
|
|
|
have_fopen_cookie=yes
|
|
|
|
fi
|
|
|
|
fi
|
|
|
|
|
|
|
|
if test "$have_fopen_cookie" = "yes" ; then
|
|
|
|
AC_DEFINE(HAVE_FOPENCOOKIE, 1, [ ])
|
|
|
|
AC_DEFINE_UNQUOTED(COOKIE_IO_FUNCTIONS_T, $cookie_io_functions_t, [ ])
|
|
|
|
fi
|
|
|
|
|
|
|
|
fi
|
|
|
|
])
|
2001-09-05 21:18:09 +08:00
|
|
|
|
|
|
|
|
|
|
|
dnl
|
|
|
|
dnl PHP_CHECK_LIBRARY(library, function [, action-found [, action-not-found [, extra-libs]]])
|
|
|
|
dnl
|
|
|
|
dnl Wrapper for AC_CHECK_LIB
|
|
|
|
dnl
|
|
|
|
AC_DEFUN(PHP_CHECK_LIBRARY, [
|
|
|
|
save_old_LDFLAGS=$LDFLAGS
|
|
|
|
LDFLAGS="$5 $LDFLAGS"
|
|
|
|
AC_CHECK_LIB([$1],[$2],[
|
|
|
|
LDFLAGS=$save_old_LDFLAGS
|
2002-03-20 19:49:36 +08:00
|
|
|
$3
|
2001-09-05 21:18:09 +08:00
|
|
|
],[
|
|
|
|
LDFLAGS=$save_old_LDFLAGS
|
2002-03-20 19:49:36 +08:00
|
|
|
$4
|
2001-09-05 21:18:09 +08:00
|
|
|
])dnl
|
|
|
|
])
|
|
|
|
|
2002-03-18 05:09:21 +08:00
|
|
|
dnl
|
|
|
|
dnl PHP_SETUP_ICONV(shared-add [, action-found [, action-not-found]])
|
|
|
|
dnl
|
|
|
|
dnl Common setup macro for iconv
|
|
|
|
dnl
|
|
|
|
AC_DEFUN(PHP_SETUP_ICONV, [
|
|
|
|
found_iconv=no
|
2002-03-20 19:59:48 +08:00
|
|
|
unset ICONV_DIR
|
|
|
|
|
2002-03-22 04:22:05 +08:00
|
|
|
dnl
|
|
|
|
dnl Check libc first if no path is provided in --with-iconv
|
|
|
|
dnl
|
|
|
|
if test "$PHP_ICONV" = "yes"; then
|
|
|
|
AC_CHECK_FUNC(iconv, [
|
|
|
|
PHP_DEFINE(HAVE_ICONV)
|
2002-03-20 21:24:59 +08:00
|
|
|
found_iconv=yes
|
2002-03-22 04:22:05 +08:00
|
|
|
],[
|
|
|
|
AC_CHECK_FUNC(libiconv,[
|
|
|
|
PHP_DEFINE(HAVE_LIBICONV)
|
|
|
|
found_iconv=yes
|
|
|
|
])
|
|
|
|
])
|
|
|
|
fi
|
|
|
|
|
|
|
|
dnl
|
|
|
|
dnl Check external libs for iconv funcs
|
|
|
|
dnl
|
|
|
|
if test "$found_iconv" = "no"; then
|
2002-03-18 05:09:21 +08:00
|
|
|
|
|
|
|
for i in $PHP_ICONV /usr/local /usr; do
|
2002-03-20 20:08:30 +08:00
|
|
|
if test -r $i/include/giconv.h; then
|
2002-03-26 08:14:02 +08:00
|
|
|
AC_DEFINE(HAVE_GICONV_H, 1, [ ])
|
2002-03-18 05:09:21 +08:00
|
|
|
ICONV_DIR=$i
|
2002-03-20 20:08:30 +08:00
|
|
|
iconv_lib_name=giconv
|
2002-03-18 05:09:21 +08:00
|
|
|
break
|
2002-03-20 20:08:30 +08:00
|
|
|
elif test -r $i/include/iconv.h; then
|
|
|
|
ICONV_DIR=$i
|
|
|
|
iconv_lib_name=iconv
|
|
|
|
break
|
2002-03-26 08:14:02 +08:00
|
|
|
fi
|
2002-03-18 05:09:21 +08:00
|
|
|
done
|
|
|
|
|
|
|
|
if test -z "$ICONV_DIR"; then
|
2002-03-22 04:22:05 +08:00
|
|
|
AC_MSG_ERROR([Please specify the install prefix of iconv with --with-iconv=<DIR>])
|
2002-03-18 05:09:21 +08:00
|
|
|
fi
|
|
|
|
|
2002-03-20 20:08:30 +08:00
|
|
|
if test -f $ICONV_DIR/lib/lib$iconv_lib_name.a ||
|
|
|
|
test -f $ICONV_DIR/lib/lib$iconv_lib_name.$SHLIB_SUFFIX_NAME
|
2002-03-18 05:09:21 +08:00
|
|
|
then
|
2002-03-20 06:40:18 +08:00
|
|
|
PHP_CHECK_LIBRARY($iconv_lib_name, libiconv, [
|
2002-03-18 05:09:21 +08:00
|
|
|
found_iconv=yes
|
2002-03-20 21:24:59 +08:00
|
|
|
PHP_DEFINE(HAVE_LIBICONV)
|
2002-03-18 05:09:21 +08:00
|
|
|
], [
|
2002-03-20 15:36:56 +08:00
|
|
|
PHP_CHECK_LIBRARY($iconv_lib_name, iconv, [
|
|
|
|
found_iconv=yes
|
2002-03-20 21:24:59 +08:00
|
|
|
PHP_DEFINE(HAVE_ICONV)
|
2002-03-21 02:16:51 +08:00
|
|
|
], [], [
|
|
|
|
-L$ICONV_DIR/lib
|
2002-03-20 15:36:56 +08:00
|
|
|
])
|
2002-03-18 05:09:21 +08:00
|
|
|
], [
|
|
|
|
-L$ICONV_DIR/lib
|
|
|
|
])
|
|
|
|
fi
|
2002-03-22 04:22:05 +08:00
|
|
|
fi
|
2002-01-04 20:26:27 +08:00
|
|
|
|
2002-03-20 20:08:30 +08:00
|
|
|
if test "$found_iconv" = "yes"; then
|
2002-03-20 19:59:48 +08:00
|
|
|
if test -n "$ICONV_DIR"; then
|
2002-03-22 04:22:05 +08:00
|
|
|
AC_DEFINE(HAVE_ICONV, 1, [ ])
|
2002-03-20 19:59:48 +08:00
|
|
|
PHP_ADD_LIBRARY_WITH_PATH($iconv_lib_name, $ICONV_DIR/lib, $1)
|
|
|
|
PHP_ADD_INCLUDE($ICONV_DIR/include)
|
|
|
|
fi
|
2002-03-18 05:09:21 +08:00
|
|
|
$2
|
2002-03-20 20:08:30 +08:00
|
|
|
ifelse([$3],[],,[else $3])
|
2002-03-18 05:09:21 +08:00
|
|
|
fi
|
|
|
|
])
|