diff --git a/lang/php5/Makefile b/lang/php5/Makefile
index 2d00a9c4c..fb7d146cb 100644
--- a/lang/php5/Makefile
+++ b/lang/php5/Makefile
@@ -36,10 +36,6 @@ define Package/php5/Default/description
endef
define Package/php5/config
- config PHP5_APC
- bool "PHP5 APC support"
- depends on PACKAGE_php5-cli || PACKAGE_php5-cgi
-
config PHP5_FILTER
bool "PHP5 Filter support"
depends on PACKAGE_php5-cli || PACKAGE_php5-cgi
@@ -55,6 +51,9 @@ define Package/php5
ifneq ($(CONFIG_PHP5_LIBXML),)
DEPENDS+= +libxml2
endif
+ ifneq ($(CONFIG_PACKAGE_php5-mod-apc),)
+ DEPENDS+= +librt
+ endif
ifneq ($(CONFIG_PACKAGE_php5-mod-sqlite3)$(CONFIG_PACKAGE_php5-mod-pdo-sqlite),)
DEPENDS+= +libsqlite3 +libpthread
endif
@@ -137,6 +136,13 @@ ifneq ($(SDK),)
CONFIG_PACKAGE_php5-mod-xml:=m
endif
+ifneq ($(CONFIG_PACKAGE_php5-mod-apc),)
+ PKG_CONFIGURE_OPTS+= --enable-apc=shared --disable-apc-mmap --disable-apc-pthreadmutex
+ PKG_CONFIGURE_LIBS+= -lrt
+else
+ PKG_CONFIGURE_OPTS+= --disable-apc
+endif
+
ifneq ($(CONFIG_PACKAGE_php5-mod-ctype),)
PKG_CONFIGURE_OPTS+= --enable-ctype=shared
else
@@ -361,13 +367,6 @@ else
PKG_CONFIGURE_OPTS+= --disable-xmlwriter
endif
-ifneq ($(CONFIG_PHP5_APC),)
- PKG_CONFIGURE_OPTS+= --enable-apc --disable-apc-mmap --disable-apc-pthreadmutex
- PKG_CONFIGURE_LIBS+= -lrt
-else
- PKG_CONFIGURE_OPTS+= --disable-apc
-endif
-
ifneq ($(CONFIG_PHP5_FILTER),)
PKG_CONFIGURE_OPTS+= --enable-filter
else
@@ -484,6 +483,7 @@ $(eval $(call BuildPackage,php5-cli))
$(eval $(call BuildPackage,php5-cgi))
$(eval $(call BuildPackage,php5-fastcgi))
+$(eval $(call BuildModule,apc,APC))
$(eval $(call BuildModule,ctype,Ctype))
$(eval $(call BuildModule,curl,cURL,php5 +libcurl))
$(eval $(call BuildModule,fileinfo,Fileinfo,php5 +libmagic))
diff --git a/lang/php5/files/php.ini b/lang/php5/files/php.ini
index 301e453be..bcfc713f9 100644
--- a/lang/php5/files/php.ini
+++ b/lang/php5/files/php.ini
@@ -197,7 +197,7 @@ default_socket_timeout = 60
[APC]
apc.enabled = 1
apc.shm_segments = 1 ;The number of shared memory segments to allocate for the compiler cache.
-apc.shm_size = 4 ;The size of each shared memory segment in MB.
+apc.shm_size = 4M ;The size of each shared memory segment.
[Date]
;date.timezone =
diff --git a/lang/php5/patches/900-prevent_buildconf_force.patch b/lang/php5/patches/900-prevent_buildconf_force.patch
new file mode 100644
index 000000000..52cb8fdc9
--- /dev/null
+++ b/lang/php5/patches/900-prevent_buildconf_force.patch
@@ -0,0 +1,19104 @@
+--- a/configure
++++ b/configure
+@@ -847,6 +847,30 @@
+ ac_help="$ac_help
+ --with-zlib-dir=
Define the location of zlib install directory"
+ ac_help="$ac_help
++ --enable-apc Enable APC support"
++ac_help="$ac_help
++ --enable-apc-debug Enable APC debugging"
++ac_help="$ac_help
++ --enable-apc-filehits Enable per request file info about files used from the APC cache (ie: apc_cache_info('filehits')) "
++ac_help="$ac_help
++ --disable-apc-mmap
++ Disable mmap support and use IPC shm instead"
++ac_help="$ac_help
++ --enable-apc-sem
++ Enable semaphore locks instead of fcntl"
++ac_help="$ac_help
++ --disable-apc-pthreadmutex
++ Disable pthread mutex locking "
++ac_help="$ac_help
++ --enable-apc-spinlocks
++ Enable spin locks EXPERIMENTAL "
++ac_help="$ac_help
++ --enable-apc-memprotect
++ Enable mmap/shm memory protection"
++ac_help="$ac_help
++ --disable-valgrind-checks
++ Disable valgrind based memory checks"
++ac_help="$ac_help
+ --enable-bcmath Enable bc style precision math functions"
+ ac_help="$ac_help
+ --with-bz2[=DIR] Include BZip2 support"
+@@ -1888,12 +1912,12 @@
+
+
+ echo $ac_n "checking for Cygwin environment""... $ac_c" 1>&6
+-echo "configure:1892: checking for Cygwin environment" >&5
++echo "configure:1916: checking for Cygwin environment" >&5
+ if eval "test \"`echo '$''{'ac_cv_cygwin'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+ else
+ cat > conftest.$ac_ext <&5; (eval $ac_compile) 2>&5; }; then
++if { (eval echo configure:1932: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+ rm -rf conftest*
+ ac_cv_cygwin=yes
+ else
+@@ -1921,19 +1945,19 @@
+ CYGWIN=
+ test "$ac_cv_cygwin" = yes && CYGWIN=yes
+ echo $ac_n "checking for mingw32 environment""... $ac_c" 1>&6
+-echo "configure:1925: checking for mingw32 environment" >&5
++echo "configure:1949: checking for mingw32 environment" >&5
+ if eval "test \"`echo '$''{'ac_cv_mingw32'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+ else
+ cat > conftest.$ac_ext <&5; (eval $ac_compile) 2>&5; }; then
++if { (eval echo configure:1961: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+ rm -rf conftest*
+ ac_cv_mingw32=yes
+ else
+@@ -1952,7 +1976,7 @@
+
+
+ echo $ac_n "checking for egrep""... $ac_c" 1>&6
+-echo "configure:1956: checking for egrep" >&5
++echo "configure:1980: checking for egrep" >&5
+ if eval "test \"`echo '$''{'ac_cv_prog_egrep'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+ else
+@@ -1967,7 +1991,7 @@
+
+
+ echo $ac_n "checking for a sed that does not truncate output""... $ac_c" 1>&6
+-echo "configure:1971: checking for a sed that does not truncate output" >&5
++echo "configure:1995: checking for a sed that does not truncate output" >&5
+ if eval "test \"`echo '$''{'lt_cv_path_SED'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+ else
+@@ -2117,7 +2141,7 @@
+ fi
+
+ echo $ac_n "checking host system type""... $ac_c" 1>&6
+-echo "configure:2121: checking host system type" >&5
++echo "configure:2145: checking host system type" >&5
+
+ host_alias=$host
+ case "$host_alias" in
+@@ -2138,7 +2162,7 @@
+ echo "$ac_t""$host" 1>&6
+
+ echo $ac_n "checking target system type""... $ac_c" 1>&6
+-echo "configure:2142: checking target system type" >&5
++echo "configure:2166: checking target system type" >&5
+
+ target_alias=$target
+ case "$target_alias" in
+@@ -2250,7 +2274,7 @@
+ # Extract the first word of "gcc", so it can be a program name with args.
+ set dummy gcc; ac_word=$2
+ echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
+-echo "configure:2254: checking for $ac_word" >&5
++echo "configure:2278: checking for $ac_word" >&5
+ if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+ else
+@@ -2280,7 +2304,7 @@
+ # Extract the first word of "cc", so it can be a program name with args.
+ set dummy cc; ac_word=$2
+ echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
+-echo "configure:2284: checking for $ac_word" >&5
++echo "configure:2308: checking for $ac_word" >&5
+ if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+ else
+@@ -2331,7 +2355,7 @@
+ # Extract the first word of "cl", so it can be a program name with args.
+ set dummy cl; ac_word=$2
+ echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
+-echo "configure:2335: checking for $ac_word" >&5
++echo "configure:2359: checking for $ac_word" >&5
+ if eval "test \"`echo '$''{'ac_cv_prog_CC'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+ else
+@@ -2363,7 +2387,7 @@
+ fi
+
+ echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works""... $ac_c" 1>&6
+-echo "configure:2367: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&5
++echo "configure:2391: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) works" >&5
+
+ ac_ext=c
+ # CFLAGS is not in ac_cpp because -g, -O, etc. are not valid cpp options.
+@@ -2374,12 +2398,12 @@
+
+ cat > conftest.$ac_ext << EOF
+
+-#line 2378 "configure"
++#line 2402 "configure"
+ #include "confdefs.h"
+
+ main(){return(0);}
+ EOF
+-if { (eval echo configure:2383: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
++if { (eval echo configure:2407: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+ ac_cv_prog_cc_works=yes
+ # If we can't run a trivial program, we are probably using a cross compiler.
+ if (./conftest; exit) 2>/dev/null; then
+@@ -2405,12 +2429,12 @@
+ { echo "configure: error: installation or configuration problem: C compiler cannot create executables." 1>&2; exit 1; }
+ fi
+ echo $ac_n "checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler""... $ac_c" 1>&6
+-echo "configure:2409: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5
++echo "configure:2433: checking whether the C compiler ($CC $CFLAGS $LDFLAGS) is a cross-compiler" >&5
+ echo "$ac_t""$ac_cv_prog_cc_cross" 1>&6
+ cross_compiling=$ac_cv_prog_cc_cross
+
+ echo $ac_n "checking whether we are using GNU C""... $ac_c" 1>&6
+-echo "configure:2414: checking whether we are using GNU C" >&5
++echo "configure:2438: checking whether we are using GNU C" >&5
+ if eval "test \"`echo '$''{'ac_cv_prog_gcc'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+ else
+@@ -2419,7 +2443,7 @@
+ yes;
+ #endif
+ EOF
+-if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:2423: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then
++if { ac_try='${CC-cc} -E conftest.c'; { (eval echo configure:2447: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then
+ ac_cv_prog_gcc=yes
+ else
+ ac_cv_prog_gcc=no
+@@ -2438,7 +2462,7 @@
+ ac_save_CFLAGS="$CFLAGS"
+ CFLAGS=
+ echo $ac_n "checking whether ${CC-cc} accepts -g""... $ac_c" 1>&6
+-echo "configure:2442: checking whether ${CC-cc} accepts -g" >&5
++echo "configure:2466: checking whether ${CC-cc} accepts -g" >&5
+ if eval "test \"`echo '$''{'ac_cv_prog_cc_g'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+ else
+@@ -2470,7 +2494,7 @@
+ fi
+
+ echo $ac_n "checking how to run the C preprocessor""... $ac_c" 1>&6
+-echo "configure:2474: checking how to run the C preprocessor" >&5
++echo "configure:2498: checking how to run the C preprocessor" >&5
+ # On Suns, sometimes $CPP names a directory.
+ if test -n "$CPP" && test -d "$CPP"; then
+ CPP=
+@@ -2485,13 +2509,13 @@
+ # On the NeXT, cc -E runs the code through the compiler's parser,
+ # not just through cpp.
+ cat > conftest.$ac_ext <
+ Syntax Error
+ EOF
+ ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
+-{ (eval echo configure:2495: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
++{ (eval echo configure:2519: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
+ ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
+ if test -z "$ac_err"; then
+ :
+@@ -2502,13 +2526,13 @@
+ rm -rf conftest*
+ CPP="${CC-cc} -E -traditional-cpp"
+ cat > conftest.$ac_ext <
+ Syntax Error
+ EOF
+ ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
+-{ (eval echo configure:2512: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
++{ (eval echo configure:2536: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
+ ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
+ if test -z "$ac_err"; then
+ :
+@@ -2519,13 +2543,13 @@
+ rm -rf conftest*
+ CPP="${CC-cc} -nologo -E"
+ cat > conftest.$ac_ext <
+ Syntax Error
+ EOF
+ ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
+-{ (eval echo configure:2529: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
++{ (eval echo configure:2553: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
+ ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
+ if test -z "$ac_err"; then
+ :
+@@ -2552,9 +2576,9 @@
+
+ ICC="no"
+ echo $ac_n "checking for icc""... $ac_c" 1>&6
+-echo "configure:2556: checking for icc" >&5
++echo "configure:2580: checking for icc" >&5
+ cat > conftest.$ac_ext <&6
+-echo "configure:2580: checking for suncc" >&5
++echo "configure:2604: checking for suncc" >&5
+ cat > conftest.$ac_ext <&6
+-echo "configure:2605: checking whether $CC and cc understand -c and -o together" >&5
++echo "configure:2629: checking whether $CC and cc understand -c and -o together" >&5
+ else
+ echo $ac_n "checking whether cc understands -c and -o together""... $ac_c" 1>&6
+-echo "configure:2608: checking whether cc understands -c and -o together" >&5
++echo "configure:2632: checking whether cc understands -c and -o together" >&5
+ fi
+ set dummy $CC; ac_cc="`echo $2 |
+ sed -e 's/[^a-zA-Z0-9_]/_/g' -e 's/^[0-9]/_/'`"
+@@ -2616,16 +2640,16 @@
+ # We do the test twice because some compilers refuse to overwrite an
+ # existing .o file with -o, though they will create one.
+ ac_try='${CC-cc} -c conftest.c -o conftest.o 1>&5'
+-if { (eval echo configure:2620: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } &&
+- test -f conftest.o && { (eval echo configure:2621: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; };
++if { (eval echo configure:2644: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } &&
++ test -f conftest.o && { (eval echo configure:2645: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; };
+ then
+ eval ac_cv_prog_cc_${ac_cc}_c_o=yes
+ if test "x$CC" != xcc; then
+ # Test first that cc exists at all.
+- if { ac_try='cc -c conftest.c 1>&5'; { (eval echo configure:2626: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; }; then
++ if { ac_try='cc -c conftest.c 1>&5'; { (eval echo configure:2650: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; }; then
+ ac_try='cc -c conftest.c -o conftest.o 1>&5'
+- if { (eval echo configure:2628: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } &&
+- test -f conftest.o && { (eval echo configure:2629: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; };
++ if { (eval echo configure:2652: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } &&
++ test -f conftest.o && { (eval echo configure:2653: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; };
+ then
+ # cc works too.
+ :
+@@ -2652,7 +2676,7 @@
+ fi
+
+ echo $ac_n "checking how to run the C preprocessor""... $ac_c" 1>&6
+-echo "configure:2656: checking how to run the C preprocessor" >&5
++echo "configure:2680: checking how to run the C preprocessor" >&5
+ # On Suns, sometimes $CPP names a directory.
+ if test -n "$CPP" && test -d "$CPP"; then
+ CPP=
+@@ -2667,13 +2691,13 @@
+ # On the NeXT, cc -E runs the code through the compiler's parser,
+ # not just through cpp.
+ cat > conftest.$ac_ext <
+ Syntax Error
+ EOF
+ ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
+-{ (eval echo configure:2677: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
++{ (eval echo configure:2701: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
+ ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
+ if test -z "$ac_err"; then
+ :
+@@ -2684,13 +2708,13 @@
+ rm -rf conftest*
+ CPP="${CC-cc} -E -traditional-cpp"
+ cat > conftest.$ac_ext <
+ Syntax Error
+ EOF
+ ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
+-{ (eval echo configure:2694: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
++{ (eval echo configure:2718: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
+ ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
+ if test -z "$ac_err"; then
+ :
+@@ -2701,13 +2725,13 @@
+ rm -rf conftest*
+ CPP="${CC-cc} -nologo -E"
+ cat > conftest.$ac_ext <
+ Syntax Error
+ EOF
+ ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
+-{ (eval echo configure:2711: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
++{ (eval echo configure:2735: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
+ ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
+ if test -z "$ac_err"; then
+ :
+@@ -2732,9 +2756,9 @@
+ echo "$ac_t""$CPP" 1>&6
+
+ echo $ac_n "checking for AIX""... $ac_c" 1>&6
+-echo "configure:2736: checking for AIX" >&5
++echo "configure:2760: checking for AIX" >&5
+ cat > conftest.$ac_ext <&6
+-echo "configure:2760: checking whether ln -s works" >&5
++echo "configure:2784: checking whether ln -s works" >&5
+ if eval "test \"`echo '$''{'ac_cv_prog_LN_S'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+ else
+@@ -2781,7 +2805,7 @@
+ php_with_libdir=lib
+
+ echo $ac_n "checking for system library directory""... $ac_c" 1>&6
+-echo "configure:2785: checking for system library directory" >&5
++echo "configure:2809: checking for system library directory" >&5
+ # Check whether --with-libdir or --without-libdir was given.
+ if test "${with_libdir+set}" = set; then
+ withval="$with_libdir"
+@@ -2804,7 +2828,7 @@
+ php_enable_rpath=yes
+
+ echo $ac_n "checking whether to enable runpaths""... $ac_c" 1>&6
+-echo "configure:2808: checking whether to enable runpaths" >&5
++echo "configure:2832: checking whether to enable runpaths" >&5
+ # Check whether --enable-rpath or --disable-rpath was given.
+ if test "${enable_rpath+set}" = set; then
+ enableval="$enable_rpath"
+@@ -2825,7 +2849,7 @@
+
+
+ echo $ac_n "checking if compiler supports -R""... $ac_c" 1>&6
+-echo "configure:2829: checking if compiler supports -R" >&5
++echo "configure:2853: checking if compiler supports -R" >&5
+ if eval "test \"`echo '$''{'php_cv_cc_dashr'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+ else
+@@ -2833,14 +2857,14 @@
+ SAVE_LIBS=$LIBS
+ LIBS="-R /usr/$PHP_LIBDIR $LIBS"
+ cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
++if { (eval echo configure:2868: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+ rm -rf conftest*
+ php_cv_cc_dashr=yes
+ else
+@@ -2858,7 +2882,7 @@
+ ld_runpath_switch=-R
+ else
+ echo $ac_n "checking if compiler supports -Wl,-rpath,""... $ac_c" 1>&6
+-echo "configure:2862: checking if compiler supports -Wl,-rpath," >&5
++echo "configure:2886: checking if compiler supports -Wl,-rpath," >&5
+ if eval "test \"`echo '$''{'php_cv_cc_rpath'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+ else
+@@ -2866,14 +2890,14 @@
+ SAVE_LIBS=$LIBS
+ LIBS="-Wl,-rpath,/usr/$PHP_LIBDIR $LIBS"
+ cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
++if { (eval echo configure:2901: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+ rm -rf conftest*
+ php_cv_cc_rpath=yes
+ else
+@@ -2904,7 +2928,7 @@
+ # Extract the first word of "$ac_prog", so it can be a program name with args.
+ set dummy $ac_prog; ac_word=$2
+ echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
+-echo "configure:2908: checking for $ac_word" >&5
++echo "configure:2932: checking for $ac_word" >&5
+ if eval "test \"`echo '$''{'ac_cv_prog_AWK'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+ else
+@@ -2945,7 +2969,7 @@
+ ;;
+ *)
+ echo $ac_n "checking if $AWK is broken""... $ac_c" 1>&6
+-echo "configure:2949: checking if $AWK is broken" >&5
++echo "configure:2973: checking if $AWK is broken" >&5
+ if ! $AWK 'function foo() {}' >/dev/null 2>&1 ; then
+ echo "$ac_t""yes" 1>&6
+ { echo "configure: error: You should install GNU awk" 1>&2; exit 1; }
+@@ -2964,7 +2988,7 @@
+ # Extract the first word of "$ac_prog", so it can be a program name with args.
+ set dummy $ac_prog; ac_word=$2
+ echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
+-echo "configure:2968: checking for $ac_word" >&5
++echo "configure:2992: checking for $ac_word" >&5
+ if eval "test \"`echo '$''{'ac_cv_prog_YACC'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+ else
+@@ -3004,7 +3028,7 @@
+ bison_version=none
+ if test "$YACC"; then
+ echo $ac_n "checking for bison version""... $ac_c" 1>&6
+-echo "configure:3008: checking for bison version" >&5
++echo "configure:3032: checking for bison version" >&5
+ if eval "test \"`echo '$''{'php_cv_bison_version'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+ else
+@@ -3042,7 +3066,7 @@
+ # Extract the first word of "re2c", so it can be a program name with args.
+ set dummy re2c; ac_word=$2
+ echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
+-echo "configure:3046: checking for $ac_word" >&5
++echo "configure:3070: checking for $ac_word" >&5
+ if eval "test \"`echo '$''{'ac_cv_prog_RE2C'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+ else
+@@ -3070,7 +3094,7 @@
+
+ if test -n "$RE2C"; then
+ echo $ac_n "checking for re2c version""... $ac_c" 1>&6
+-echo "configure:3074: checking for re2c version" >&5
++echo "configure:3098: checking for re2c version" >&5
+ if eval "test \"`echo '$''{'php_cv_re2c_version'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+ else
+@@ -3109,7 +3133,7 @@
+ php_enable_re2c_cgoto=no
+
+ echo $ac_n "checking whether to enable computed goto gcc extension with re2c""... $ac_c" 1>&6
+-echo "configure:3113: checking whether to enable computed goto gcc extension with re2c" >&5
++echo "configure:3137: checking whether to enable computed goto gcc extension with re2c" >&5
+ # Check whether --enable-re2c-cgoto or --disable-re2c-cgoto was given.
+ if test "${enable_re2c_cgoto+set}" = set; then
+ enableval="$enable_re2c_cgoto"
+@@ -3132,9 +3156,9 @@
+ RE2C_FLAGS=""
+ else
+ echo $ac_n "checking whether re2c -g works""... $ac_c" 1>&6
+-echo "configure:3136: checking whether re2c -g works" >&5
++echo "configure:3160: checking whether re2c -g works" >&5
+ cat > conftest.$ac_ext <&5; (eval $ac_compile) 2>&5; }; then
++if { (eval echo configure:3180: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+ rm -rf conftest*
+
+ RE2C_FLAGS=""
+@@ -3218,7 +3242,7 @@
+
+ gcc_arg_name=ac_cv_gcc_arg_no_cpp_precomp
+ echo $ac_n "checking whether $CC supports -no-cpp-precomp""... $ac_c" 1>&6
+-echo "configure:3222: checking whether $CC supports -no-cpp-precomp" >&5
++echo "configure:3246: checking whether $CC supports -no-cpp-precomp" >&5
+ if eval "test \"`echo '$''{'ac_cv_gcc_arg_no_cpp_precomp'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+ else
+@@ -3419,7 +3443,7 @@
+ # Disable PIC mode by default where it is known to be safe to do so,
+ # to avoid the performance hit from the lost register
+ echo $ac_n "checking whether to force non-PIC code in shared modules""... $ac_c" 1>&6
+-echo "configure:3423: checking whether to force non-PIC code in shared modules" >&5
++echo "configure:3447: checking whether to force non-PIC code in shared modules" >&5
+ case $host_alias in
+ i?86-*-linux*|i?86-*-freebsd*)
+ if test "${with_pic+set}" != "set" || test "$with_pic" = "no"; then
+@@ -3449,7 +3473,7 @@
+
+
+ echo $ac_n "checking whether /dev/urandom exists""... $ac_c" 1>&6
+-echo "configure:3453: checking whether /dev/urandom exists" >&5
++echo "configure:3477: checking whether /dev/urandom exists" >&5
+ if test -r "/dev/urandom" && test -c "/dev/urandom"; then
+ cat >> confdefs.h <<\EOF
+ #define HAVE_DEV_URANDOM 1
+@@ -3510,7 +3534,7 @@
+
+ else
+ cat > conftest.$ac_ext <
+@@ -3528,7 +3552,7 @@
+ return pthread_create(&thd, NULL, thread_routine, &data);
+ }
+ EOF
+-if { (eval echo configure:3532: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
++if { (eval echo configure:3556: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
+ then
+
+ pthreads_working=yes
+@@ -3548,7 +3572,7 @@
+ CFLAGS=$save_CFLAGS
+
+ echo $ac_n "checking for pthreads_cflags""... $ac_c" 1>&6
+-echo "configure:3552: checking for pthreads_cflags" >&5
++echo "configure:3576: checking for pthreads_cflags" >&5
+ if eval "test \"`echo '$''{'ac_cv_pthreads_cflags'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+ else
+@@ -3570,7 +3594,7 @@
+
+ else
+ cat > conftest.$ac_ext <
+@@ -3588,7 +3612,7 @@
+ return pthread_create(&thd, NULL, thread_routine, &data);
+ }
+ EOF
+-if { (eval echo configure:3592: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
++if { (eval echo configure:3616: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
+ then
+
+ pthreads_working=yes
+@@ -3618,7 +3642,7 @@
+ echo "$ac_t""$ac_cv_pthreads_cflags" 1>&6
+
+ echo $ac_n "checking for pthreads_lib""... $ac_c" 1>&6
+-echo "configure:3622: checking for pthreads_lib" >&5
++echo "configure:3646: checking for pthreads_lib" >&5
+ if eval "test \"`echo '$''{'ac_cv_pthreads_lib'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+ else
+@@ -3640,7 +3664,7 @@
+
+ else
+ cat > conftest.$ac_ext <
+@@ -3658,7 +3682,7 @@
+ return pthread_create(&thd, NULL, thread_routine, &data);
+ }
+ EOF
+-if { (eval echo configure:3662: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
++if { (eval echo configure:3686: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
+ then
+
+ pthreads_working=yes
+@@ -3789,7 +3813,7 @@
+
+
+ echo $ac_n "checking for AOLserver support""... $ac_c" 1>&6
+-echo "configure:3793: checking for AOLserver support" >&5
++echo "configure:3817: checking for AOLserver support" >&5
+
+ if test "$PHP_AOLSERVER" != "no"; then
+ if test -d "$PHP_AOLSERVER/include"; then
+@@ -4054,7 +4078,7 @@
+
+
+ echo $ac_n "checking for Apache 1.x module support via DSO through APXS""... $ac_c" 1>&6
+-echo "configure:4058: checking for Apache 1.x module support via DSO through APXS" >&5
++echo "configure:4082: checking for Apache 1.x module support via DSO through APXS" >&5
+
+ if test "$PHP_APXS" != "no"; then
+ if test "$PHP_APXS" = "yes"; then
+@@ -4385,7 +4409,7 @@
+
+
+ echo $ac_n "checking for Apache 1.x module support""... $ac_c" 1>&6
+-echo "configure:4389: checking for Apache 1.x module support" >&5
++echo "configure:4413: checking for Apache 1.x module support" >&5
+
+ if test "$PHP_SAPI" != "apache" && test "$PHP_APACHE" != "no"; then
+
+@@ -5262,7 +5286,7 @@
+ php_enable_mod_charset=no
+
+ echo $ac_n "checking whether to enable Apache charset compatibility option""... $ac_c" 1>&6
+-echo "configure:5266: checking whether to enable Apache charset compatibility option" >&5
++echo "configure:5290: checking whether to enable Apache charset compatibility option" >&5
+ # Check whether --enable-mod-charset or --disable-mod-charset was given.
+ if test "${enable_mod_charset+set}" = set; then
+ enableval="$enable_mod_charset"
+@@ -5294,7 +5318,7 @@
+
+ gcc_arg_name=ac_cv_gcc_arg_rdynamic
+ echo $ac_n "checking whether $CC supports -rdynamic""... $ac_c" 1>&6
+-echo "configure:5298: checking whether $CC supports -rdynamic" >&5
++echo "configure:5322: checking whether $CC supports -rdynamic" >&5
+ if eval "test \"`echo '$''{'ac_cv_gcc_arg_rdynamic'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+ else
+@@ -5337,7 +5361,7 @@
+
+
+ echo $ac_n "checking for member fd in BUFF *""... $ac_c" 1>&6
+-echo "configure:5341: checking for member fd in BUFF *" >&5
++echo "configure:5365: checking for member fd in BUFF *" >&5
+ if eval "test \"`echo '$''{'ac_cv_php_fd_in_buff'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+ else
+@@ -5349,14 +5373,14 @@
+ CPPFLAGS="$CPPFLAGS $APACHE_INCLUDE"
+ fi
+ cat > conftest.$ac_ext <
+ int main() {
+ conn_rec *c; int fd = c->client->fd;
+ ; return 0; }
+ EOF
+-if { (eval echo configure:5360: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
++if { (eval echo configure:5384: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+ rm -rf conftest*
+
+ ac_cv_php_fd_in_buff=yes
+@@ -5429,7 +5453,7 @@
+
+
+ echo $ac_n "checking for Apache 2.0 filter-module support via DSO through APXS""... $ac_c" 1>&6
+-echo "configure:5433: checking for Apache 2.0 filter-module support via DSO through APXS" >&5
++echo "configure:5457: checking for Apache 2.0 filter-module support via DSO through APXS" >&5
+
+ if test "$PHP_APXS2FILTER" != "no"; then
+ if test "$PHP_APXS2FILTER" = "yes"; then
+@@ -6318,7 +6342,7 @@
+
+
+ echo $ac_n "checking for Apache 2.0 handler-module support via DSO through APXS""... $ac_c" 1>&6
+-echo "configure:6322: checking for Apache 2.0 handler-module support via DSO through APXS" >&5
++echo "configure:6346: checking for Apache 2.0 handler-module support via DSO through APXS" >&5
+
+ if test "$PHP_APXS2" != "no"; then
+ if test "$PHP_APXS2" = "yes"; then
+@@ -7208,7 +7232,7 @@
+
+
+ echo $ac_n "checking for Apache 1.x (hooks) module support via DSO through APXS""... $ac_c" 1>&6
+-echo "configure:7212: checking for Apache 1.x (hooks) module support via DSO through APXS" >&5
++echo "configure:7236: checking for Apache 1.x (hooks) module support via DSO through APXS" >&5
+
+ if test "$PHP_APACHE_HOOKS" != "no"; then
+ if test "$PHP_APACHE_HOOKS" = "yes"; then
+@@ -7539,7 +7563,7 @@
+
+
+ echo $ac_n "checking for Apache 1.x (hooks) module support""... $ac_c" 1>&6
+-echo "configure:7543: checking for Apache 1.x (hooks) module support" >&5
++echo "configure:7567: checking for Apache 1.x (hooks) module support" >&5
+
+ if test "$PHP_SAPI" != "apache" && test "$PHP_SAPI" != "apache_hooks" && test "$PHP_APACHE_HOOKS_STATIC" != "no"; then
+
+@@ -8416,7 +8440,7 @@
+ php_enable_mod_charset=no
+
+ echo $ac_n "checking whether to enable Apache charset compatibility option""... $ac_c" 1>&6
+-echo "configure:8420: checking whether to enable Apache charset compatibility option" >&5
++echo "configure:8444: checking whether to enable Apache charset compatibility option" >&5
+ # Check whether --enable-mod-charset or --disable-mod-charset was given.
+ if test "${enable_mod_charset+set}" = set; then
+ enableval="$enable_mod_charset"
+@@ -8448,7 +8472,7 @@
+
+ gcc_arg_name=ac_cv_gcc_arg_rdynamic
+ echo $ac_n "checking whether $CC supports -rdynamic""... $ac_c" 1>&6
+-echo "configure:8452: checking whether $CC supports -rdynamic" >&5
++echo "configure:8476: checking whether $CC supports -rdynamic" >&5
+ if eval "test \"`echo '$''{'ac_cv_gcc_arg_rdynamic'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+ else
+@@ -8491,7 +8515,7 @@
+
+
+ echo $ac_n "checking for member fd in BUFF *""... $ac_c" 1>&6
+-echo "configure:8495: checking for member fd in BUFF *" >&5
++echo "configure:8519: checking for member fd in BUFF *" >&5
+ if eval "test \"`echo '$''{'ac_cv_php_fd_in_buff'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+ else
+@@ -8503,14 +8527,14 @@
+ CPPFLAGS="$CPPFLAGS $APACHE_INCLUDE"
+ fi
+ cat > conftest.$ac_ext <
+ int main() {
+ conn_rec *c; int fd = c->client->fd;
+ ; return 0; }
+ EOF
+-if { (eval echo configure:8514: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
++if { (eval echo configure:8538: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+ rm -rf conftest*
+
+ ac_cv_php_fd_in_buff=yes
+@@ -8584,7 +8608,7 @@
+
+
+ echo $ac_n "checking for Caudium support""... $ac_c" 1>&6
+-echo "configure:8588: checking for Caudium support" >&5
++echo "configure:8612: checking for Caudium support" >&5
+
+ if test "$PHP_CAUDIUM" != "no"; then
+ if test "$prefix" = "NONE"; then CPREF=/usr/local/; fi
+@@ -8654,7 +8678,7 @@
+ PIKE_C_INCLUDE=/usr/local/include/`basename $PIKE`
+ fi
+ echo $ac_n "checking for C includes in $PIKE_C_INCLUDE""... $ac_c" 1>&6
+-echo "configure:8658: checking for C includes in $PIKE_C_INCLUDE" >&5
++echo "configure:8682: checking for C includes in $PIKE_C_INCLUDE" >&5
+ if test -f $PIKE_C_INCLUDE/version.h; then
+ PIKE_TEST_VER=`$PIKE -e 'string v; int rel;sscanf(version(), "Pike v%s release %d", v, rel); write(v+"."+rel);'`
+ ###### VERSION MATCH CHECK #######
+@@ -8943,7 +8967,7 @@
+
+
+ echo $ac_n "checking for CLI build""... $ac_c" 1>&6
+-echo "configure:8947: checking for CLI build" >&5
++echo "configure:8971: checking for CLI build" >&5
+ if test "$PHP_CLI" != "no"; then
+
+ src=$abs_srcdir/sapi/cli/Makefile.frag
+@@ -8993,7 +9017,7 @@
+ php_with_continuity=no
+
+ echo $ac_n "checking for Continuity support""... $ac_c" 1>&6
+-echo "configure:8997: checking for Continuity support" >&5
++echo "configure:9021: checking for Continuity support" >&5
+ # Check whether --with-continuity or --without-continuity was given.
+ if test "${with_continuity+set}" = set; then
+ withval="$with_continuity"
+@@ -9017,7 +9041,7 @@
+ { echo "configure: error: Please specify the path to the root of your Continuity server using --with-continuity=DIR" 1>&2; exit 1; }
+ fi
+ echo $ac_n "checking for Continuity include files""... $ac_c" 1>&6
+-echo "configure:9021: checking for Continuity include files" >&5
++echo "configure:9045: checking for Continuity include files" >&5
+ if test -d $PHP_CONTINUITY/include ; then
+ CAPI_INCLUDE=$PHP_CONTINUITY/include
+ echo "$ac_t""Continuity Binary Distribution" 1>&6
+@@ -9275,7 +9299,7 @@
+
+
+ echo $ac_n "checking for embedded SAPI library support""... $ac_c" 1>&6
+-echo "configure:9279: checking for embedded SAPI library support" >&5
++echo "configure:9303: checking for embedded SAPI library support" >&5
+
+ if test "$PHP_EMBED" != "no"; then
+ case "$PHP_EMBED" in
+@@ -9534,7 +9558,7 @@
+
+
+ echo $ac_n "checking for FPM build""... $ac_c" 1>&6
+-echo "configure:9538: checking for FPM build" >&5
++echo "configure:9562: checking for FPM build" >&5
+ if test "$PHP_FPM" != "no"; then
+ echo "$ac_t""$PHP_FPM" 1>&6
+
+@@ -9542,12 +9566,12 @@
+ for ac_func in setenv clearenv setproctitle
+ do
+ echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
+-echo "configure:9546: checking for $ac_func" >&5
++echo "configure:9570: checking for $ac_func" >&5
+ if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+ else
+ cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
++if { (eval echo configure:9598: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+ rm -rf conftest*
+ eval "ac_cv_func_$ac_func=yes"
+ else
+@@ -9597,14 +9621,14 @@
+
+
+ echo $ac_n "checking for library containing socket""... $ac_c" 1>&6
+-echo "configure:9601: checking for library containing socket" >&5
++echo "configure:9625: checking for library containing socket" >&5
+ if eval "test \"`echo '$''{'ac_cv_search_socket'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+ else
+ ac_func_search_save_LIBS="$LIBS"
+ ac_cv_search_socket="no"
+ cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
++if { (eval echo configure:9643: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+ rm -rf conftest*
+ ac_cv_search_socket="none required"
+ else
+@@ -9626,7 +9650,7 @@
+ test "$ac_cv_search_socket" = "no" && for i in socket; do
+ LIBS="-l$i $ac_func_search_save_LIBS"
+ cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
++if { (eval echo configure:9665: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+ rm -rf conftest*
+ ac_cv_search_socket="-l$i"
+ break
+@@ -9659,14 +9683,14 @@
+ fi
+
+ echo $ac_n "checking for library containing inet_addr""... $ac_c" 1>&6
+-echo "configure:9663: checking for library containing inet_addr" >&5
++echo "configure:9687: checking for library containing inet_addr" >&5
+ if eval "test \"`echo '$''{'ac_cv_search_inet_addr'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+ else
+ ac_func_search_save_LIBS="$LIBS"
+ ac_cv_search_inet_addr="no"
+ cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
++if { (eval echo configure:9705: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+ rm -rf conftest*
+ ac_cv_search_inet_addr="none required"
+ else
+@@ -9688,7 +9712,7 @@
+ test "$ac_cv_search_inet_addr" = "no" && for i in nsl; do
+ LIBS="-l$i $ac_func_search_save_LIBS"
+ cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
++if { (eval echo configure:9727: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+ rm -rf conftest*
+ ac_cv_search_inet_addr="-l$i"
+ break
+@@ -9724,17 +9748,17 @@
+ do
+ ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'`
+ echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6
+-echo "configure:9728: checking for $ac_hdr" >&5
++echo "configure:9752: checking for $ac_hdr" >&5
+ if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+ else
+ cat > conftest.$ac_ext <
+ EOF
+ ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
+-{ (eval echo configure:9738: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
++{ (eval echo configure:9762: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
+ ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
+ if test -z "$ac_err"; then
+ rm -rf conftest*
+@@ -9764,17 +9788,17 @@
+ do
+ ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'`
+ echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6
+-echo "configure:9768: checking for $ac_hdr" >&5
++echo "configure:9792: checking for $ac_hdr" >&5
+ if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+ else
+ cat > conftest.$ac_ext <
+ EOF
+ ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
+-{ (eval echo configure:9778: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
++{ (eval echo configure:9802: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
+ ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
+ if test -z "$ac_err"; then
+ rm -rf conftest*
+@@ -9804,17 +9828,17 @@
+ do
+ ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'`
+ echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6
+-echo "configure:9808: checking for $ac_hdr" >&5
++echo "configure:9832: checking for $ac_hdr" >&5
+ if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+ else
+ cat > conftest.$ac_ext <
+ EOF
+ ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
+-{ (eval echo configure:9818: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
++{ (eval echo configure:9842: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
+ ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
+ if test -z "$ac_err"; then
+ rm -rf conftest*
+@@ -9843,17 +9867,17 @@
+
+
+ echo $ac_n "checking for prctl""... $ac_c" 1>&6
+-echo "configure:9847: checking for prctl" >&5
++echo "configure:9871: checking for prctl" >&5
+
+ cat > conftest.$ac_ext <
+ int main() {
+ prctl(0, 0, 0, 0, 0);
+ ; return 0; }
+ EOF
+-if { (eval echo configure:9857: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
++if { (eval echo configure:9881: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+ rm -rf conftest*
+
+ cat >> confdefs.h <<\EOF
+@@ -9876,17 +9900,17 @@
+ have_clock_gettime=no
+
+ echo $ac_n "checking for clock_gettime""... $ac_c" 1>&6
+-echo "configure:9880: checking for clock_gettime" >&5
++echo "configure:9904: checking for clock_gettime" >&5
+
+ cat > conftest.$ac_ext <
+ int main() {
+ struct timespec ts; clock_gettime(CLOCK_MONOTONIC, &ts);
+ ; return 0; }
+ EOF
+-if { (eval echo configure:9890: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
++if { (eval echo configure:9914: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+ rm -rf conftest*
+
+ have_clock_gettime=yes
+@@ -9904,20 +9928,20 @@
+
+ if test "$have_clock_gettime" = "no"; then
+ echo $ac_n "checking for clock_gettime in -lrt""... $ac_c" 1>&6
+-echo "configure:9908: checking for clock_gettime in -lrt" >&5
++echo "configure:9932: checking for clock_gettime in -lrt" >&5
+
+ SAVED_LIBS="$LIBS"
+ LIBS="$LIBS -lrt"
+
+ cat > conftest.$ac_ext <
+ int main() {
+ struct timespec ts; clock_gettime(CLOCK_MONOTONIC, &ts);
+ ; return 0; }
+ EOF
+-if { (eval echo configure:9921: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
++if { (eval echo configure:9945: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+ rm -rf conftest*
+
+ have_clock_gettime=yes
+@@ -9946,13 +9970,13 @@
+
+ if test "$have_clock_gettime" = "no"; then
+ echo $ac_n "checking for clock_get_time""... $ac_c" 1>&6
+-echo "configure:9950: checking for clock_get_time" >&5
++echo "configure:9974: checking for clock_get_time" >&5
+
+ if test "$cross_compiling" = yes; then
+ { echo "configure: error: can not run test program while cross compiling" 1>&2; exit 1; }
+ else
+ cat > conftest.$ac_ext <
+ #include
+@@ -9976,7 +10000,7 @@
+ }
+
+ EOF
+-if { (eval echo configure:9980: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
++if { (eval echo configure:10004: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
+ then
+
+ have_clock_get_time=yes
+@@ -10007,10 +10031,10 @@
+ have_broken_ptrace=no
+
+ echo $ac_n "checking for ptrace""... $ac_c" 1>&6
+-echo "configure:10011: checking for ptrace" >&5
++echo "configure:10035: checking for ptrace" >&5
+
+ cat > conftest.$ac_ext <
+@@ -10019,7 +10043,7 @@
+ ptrace(0, 0, (void *) 0, 0);
+ ; return 0; }
+ EOF
+-if { (eval echo configure:10023: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
++if { (eval echo configure:10047: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+ rm -rf conftest*
+
+ have_ptrace=yes
+@@ -10037,13 +10061,13 @@
+
+ if test "$have_ptrace" = "yes"; then
+ echo $ac_n "checking whether ptrace works""... $ac_c" 1>&6
+-echo "configure:10041: checking whether ptrace works" >&5
++echo "configure:10065: checking whether ptrace works" >&5
+
+ if test "$cross_compiling" = yes; then
+ { echo "configure: error: can not run test program while cross compiling" 1>&2; exit 1; }
+ else
+ cat > conftest.$ac_ext <
+@@ -10114,7 +10138,7 @@
+ }
+
+ EOF
+-if { (eval echo configure:10118: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
++if { (eval echo configure:10142: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
+ then
+
+ echo "$ac_t""yes" 1>&6
+@@ -10145,10 +10169,10 @@
+
+ if test "$have_broken_ptrace" = "yes"; then
+ echo $ac_n "checking for mach_vm_read""... $ac_c" 1>&6
+-echo "configure:10149: checking for mach_vm_read" >&5
++echo "configure:10173: checking for mach_vm_read" >&5
+
+ cat > conftest.$ac_ext <
+ #include
+@@ -10159,7 +10183,7 @@
+
+ ; return 0; }
+ EOF
+-if { (eval echo configure:10163: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
++if { (eval echo configure:10187: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+ rm -rf conftest*
+
+ have_mach_vm_read=yes
+@@ -10195,13 +10219,13 @@
+
+ if test -n "$proc_mem_file" ; then
+ echo $ac_n "checking for proc mem file""... $ac_c" 1>&6
+-echo "configure:10199: checking for proc mem file" >&5
++echo "configure:10223: checking for proc mem file" >&5
+
+ if test "$cross_compiling" = yes; then
+ { echo "configure: error: can not run test program while cross compiling" 1>&2; exit 1; }
+ else
+ cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
++if { (eval echo configure:10259: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
+ then
+
+ echo "$ac_t""$proc_mem_file" 1>&6
+@@ -10275,9 +10299,9 @@
+
+
+ echo $ac_n "checking if gcc supports __sync_bool_compare_and_swap""... $ac_c" 1>&6
+-echo "configure:10279: checking if gcc supports __sync_bool_compare_and_swap" >&5
++echo "configure:10303: checking if gcc supports __sync_bool_compare_and_swap" >&5
+ cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
++if { (eval echo configure:10316: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+ rm -rf conftest*
+
+ echo "$ac_t""yes" 1>&6
+@@ -10311,17 +10335,17 @@
+ have_lq=no
+
+ echo $ac_n "checking for TCP_INFO""... $ac_c" 1>&6
+-echo "configure:10315: checking for TCP_INFO" >&5
++echo "configure:10339: checking for TCP_INFO" >&5
+
+ cat > conftest.$ac_ext <
+ int main() {
+ struct tcp_info ti; int x = TCP_INFO;
+ ; return 0; }
+ EOF
+-if { (eval echo configure:10325: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
++if { (eval echo configure:10349: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+ rm -rf conftest*
+
+ have_lq=tcp_info
+@@ -10346,17 +10370,17 @@
+
+ if test "$have_lq" = "no" ; then
+ echo $ac_n "checking for SO_LISTENQLEN""... $ac_c" 1>&6
+-echo "configure:10350: checking for SO_LISTENQLEN" >&5
++echo "configure:10374: checking for SO_LISTENQLEN" >&5
+
+ cat > conftest.$ac_ext <
+ int main() {
+ int x = SO_LISTENQLIMIT; int y = SO_LISTENQLEN;
+ ; return 0; }
+ EOF
+-if { (eval echo configure:10360: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
++if { (eval echo configure:10384: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+ rm -rf conftest*
+
+ have_lq=so_listenq
+@@ -10732,7 +10756,7 @@
+ php_with_isapi=no
+
+ echo $ac_n "checking for Zeus ISAPI support""... $ac_c" 1>&6
+-echo "configure:10736: checking for Zeus ISAPI support" >&5
++echo "configure:10760: checking for Zeus ISAPI support" >&5
+ # Check whether --with-isapi or --without-isapi was given.
+ if test "${with_isapi+set}" = set; then
+ withval="$with_isapi"
+@@ -10986,7 +11010,7 @@
+
+
+ echo $ac_n "checking for LiteSpeed support""... $ac_c" 1>&6
+-echo "configure:10990: checking for LiteSpeed support" >&5
++echo "configure:11014: checking for LiteSpeed support" >&5
+
+
+ php_with_litespeed=no
+@@ -11249,7 +11273,7 @@
+ php_with_milter=no
+
+ echo $ac_n "checking for Milter support""... $ac_c" 1>&6
+-echo "configure:11253: checking for Milter support" >&5
++echo "configure:11277: checking for Milter support" >&5
+ # Check whether --with-milter or --without-milter was given.
+ if test "${with_milter+set}" = set; then
+ withval="$with_milter"
+@@ -11541,7 +11565,7 @@
+ php_with_nsapi=no
+
+ echo $ac_n "checking for NSAPI support""... $ac_c" 1>&6
+-echo "configure:11545: checking for NSAPI support" >&5
++echo "configure:11569: checking for NSAPI support" >&5
+ # Check whether --with-nsapi or --without-nsapi was given.
+ if test "${with_nsapi+set}" = set; then
+ withval="$with_nsapi"
+@@ -11565,7 +11589,7 @@
+ { echo "configure: error: Please specify the path to the root of your Netscape/iPlanet/Sun Webserver using --with-nsapi=DIR" 1>&2; exit 1; }
+ fi
+ echo $ac_n "checking for NSAPI include files""... $ac_c" 1>&6
+-echo "configure:11569: checking for NSAPI include files" >&5
++echo "configure:11593: checking for NSAPI include files" >&5
+ if test -d $PHP_NSAPI/include ; then
+ NSAPI_INC_DIR="$PHP_NSAPI/include"
+ echo "$ac_t""Netscape 3.x / Sun 7.x style" 1>&6
+@@ -11573,17 +11597,17 @@
+ do
+ ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'`
+ echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6
+-echo "configure:11577: checking for $ac_hdr" >&5
++echo "configure:11601: checking for $ac_hdr" >&5
+ if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+ else
+ cat > conftest.$ac_ext <
+ EOF
+ ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
+-{ (eval echo configure:11587: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
++{ (eval echo configure:11611: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
+ ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
+ if test -z "$ac_err"; then
+ rm -rf conftest*
+@@ -11618,17 +11642,17 @@
+ do
+ ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'`
+ echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6
+-echo "configure:11622: checking for $ac_hdr" >&5
++echo "configure:11646: checking for $ac_hdr" >&5
+ if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+ else
+ cat > conftest.$ac_ext <
+ EOF
+ ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
+-{ (eval echo configure:11632: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
++{ (eval echo configure:11656: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
+ ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
+ if test -z "$ac_err"; then
+ rm -rf conftest*
+@@ -11901,7 +11925,7 @@
+ php_with_phttpd=no
+
+ echo $ac_n "checking for PHTTPD support""... $ac_c" 1>&6
+-echo "configure:11905: checking for PHTTPD support" >&5
++echo "configure:11929: checking for PHTTPD support" >&5
+ # Check whether --with-phttpd or --without-phttpd was given.
+ if test "${with_phttpd+set}" = set; then
+ withval="$with_phttpd"
+@@ -12155,7 +12179,7 @@
+ php_with_pi3web=no
+
+ echo $ac_n "checking for Pi3Web support""... $ac_c" 1>&6
+-echo "configure:12159: checking for Pi3Web support" >&5
++echo "configure:12183: checking for Pi3Web support" >&5
+ # Check whether --with-pi3web or --without-pi3web was given.
+ if test "${with_pi3web+set}" = set; then
+ withval="$with_pi3web"
+@@ -12527,7 +12551,7 @@
+ php_enable_roxen_zts=no
+
+ echo $ac_n "checking whether Roxen module is build using ZTS""... $ac_c" 1>&6
+-echo "configure:12531: checking whether Roxen module is build using ZTS" >&5
++echo "configure:12555: checking whether Roxen module is build using ZTS" >&5
+ # Check whether --enable-roxen-zts or --disable-roxen-zts was given.
+ if test "${enable_roxen_zts+set}" = set; then
+ enableval="$enable_roxen_zts"
+@@ -12548,7 +12572,7 @@
+
+ RESULT=
+ echo $ac_n "checking for Roxen/Pike support""... $ac_c" 1>&6
+-echo "configure:12552: checking for Roxen/Pike support" >&5
++echo "configure:12576: checking for Roxen/Pike support" >&5
+ if test "$PHP_ROXEN" != "no"; then
+ if test ! -d $PHP_ROXEN ; then
+ { echo "configure: error: You did not specify a directory" 1>&2; exit 1; }
+@@ -12834,7 +12858,7 @@
+
+
+ echo $ac_n "checking for thttpd""... $ac_c" 1>&6
+-echo "configure:12838: checking for thttpd" >&5
++echo "configure:12862: checking for thttpd" >&5
+
+ if test "$PHP_THTTPD" != "no"; then
+ if test ! -d $PHP_THTTPD; then
+@@ -12867,7 +12891,7 @@
+
+ gcc_arg_name=ac_cv_gcc_arg_rdynamic
+ echo $ac_n "checking whether $CC supports -rdynamic""... $ac_c" 1>&6
+-echo "configure:12871: checking whether $CC supports -rdynamic" >&5
++echo "configure:12895: checking whether $CC supports -rdynamic" >&5
+ if eval "test \"`echo '$''{'ac_cv_gcc_arg_rdynamic'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+ else
+@@ -13103,24 +13127,24 @@
+
+
+ echo $ac_n "checking for TUX""... $ac_c" 1>&6
+-echo "configure:13107: checking for TUX" >&5
++echo "configure:13131: checking for TUX" >&5
+ if test "$PHP_TUX" != "no"; then
+ INSTALL_IT="\$(INSTALL) -m 0755 $SAPI_SHARED $PHP_TUX/php5.tux.so"
+ for ac_hdr in tuxmodule.h
+ do
+ ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'`
+ echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6
+-echo "configure:13114: checking for $ac_hdr" >&5
++echo "configure:13138: checking for $ac_hdr" >&5
+ if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+ else
+ cat > conftest.$ac_ext <
+ EOF
+ ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
+-{ (eval echo configure:13124: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
++{ (eval echo configure:13148: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
+ ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
+ if test -z "$ac_err"; then
+ rm -rf conftest*
+@@ -13357,7 +13381,7 @@
+
+
+ echo $ac_n "checking for webjames""... $ac_c" 1>&6
+-echo "configure:13361: checking for webjames" >&5
++echo "configure:13385: checking for webjames" >&5
+
+ if test "$PHP_WEBJAMES" != "no"; then
+
+@@ -13617,14 +13641,14 @@
+
+ if test "$PHP_SAPI" = "default"; then
+ echo $ac_n "checking whether to build CGI binary""... $ac_c" 1>&6
+-echo "configure:13621: checking whether to build CGI binary" >&5
++echo "configure:13645: checking whether to build CGI binary" >&5
+ if test "$PHP_CGI" != "no"; then
+ echo "$ac_t""yes" 1>&6
+
+ echo $ac_n "checking for socklen_t in sys/socket.h""... $ac_c" 1>&6
+-echo "configure:13626: checking for socklen_t in sys/socket.h" >&5
++echo "configure:13650: checking for socklen_t in sys/socket.h" >&5
+ cat > conftest.$ac_ext <
+ EOF
+@@ -13644,9 +13668,9 @@
+
+
+ echo $ac_n "checking for sun_len in sys/un.h""... $ac_c" 1>&6
+-echo "configure:13648: checking for sun_len in sys/un.h" >&5
++echo "configure:13672: checking for sun_len in sys/un.h" >&5
+ cat > conftest.$ac_ext <
+ EOF
+@@ -13666,7 +13690,7 @@
+
+
+ echo $ac_n "checking whether cross-process locking is required by accept()""... $ac_c" 1>&6
+-echo "configure:13670: checking whether cross-process locking is required by accept()" >&5
++echo "configure:13694: checking whether cross-process locking is required by accept()" >&5
+ case "`uname -sr`" in
+ IRIX\ 5.* | SunOS\ 5.* | UNIX_System_V\ 4.0)
+ echo "$ac_t""yes" 1>&6
+@@ -13910,7 +13934,7 @@
+
+
+ echo $ac_n "checking for chosen SAPI module""... $ac_c" 1>&6
+-echo "configure:13914: checking for chosen SAPI module" >&5
++echo "configure:13938: checking for chosen SAPI module" >&5
+ echo "$ac_t""$PHP_SAPI" 1>&6
+
+ if test "$enable_maintainer_zts" = "yes"; then
+@@ -13967,7 +13991,7 @@
+ # Extract the first word of "sendmail", so it can be a program name with args.
+ set dummy sendmail; ac_word=$2
+ echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
+-echo "configure:13971: checking for $ac_word" >&5
++echo "configure:13995: checking for $ac_word" >&5
+ if eval "test \"`echo '$''{'ac_cv_path_PROG_SENDMAIL'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+ else
+@@ -14006,7 +14030,7 @@
+
+
+ echo $ac_n "checking whether system uses EBCDIC""... $ac_c" 1>&6
+-echo "configure:14010: checking whether system uses EBCDIC" >&5
++echo "configure:14034: checking whether system uses EBCDIC" >&5
+ if eval "test \"`echo '$''{'ac_cv_ebcdic'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+ else
+@@ -14017,7 +14041,7 @@
+
+ else
+ cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
++if { (eval echo configure:14053: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
+ then
+
+ ac_cv_ebcdic=yes
+@@ -14053,7 +14077,7 @@
+
+
+ echo $ac_n "checking whether byte ordering is bigendian""... $ac_c" 1>&6
+-echo "configure:14057: checking whether byte ordering is bigendian" >&5
++echo "configure:14081: checking whether byte ordering is bigendian" >&5
+ if eval "test \"`echo '$''{'ac_cv_c_bigendian_php'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+ else
+@@ -14063,7 +14087,7 @@
+ ac_cv_c_bigendian_php=unknown
+ else
+ cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
++if { (eval echo configure:14107: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
+ then
+ ac_cv_c_bigendian_php=yes
+ else
+@@ -14105,7 +14129,7 @@
+
+
+ echo $ac_n "checking whether writing to stdout works""... $ac_c" 1>&6
+-echo "configure:14109: checking whether writing to stdout works" >&5
++echo "configure:14133: checking whether writing to stdout works" >&5
+ if eval "test \"`echo '$''{'ac_cv_write_stdout'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+ else
+@@ -14116,7 +14140,7 @@
+
+ else
+ cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
++if { (eval echo configure:14162: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
+ then
+
+ ac_cv_write_stdout=yes
+@@ -14209,12 +14233,12 @@
+ unset found
+
+ echo $ac_n "checking for socket""... $ac_c" 1>&6
+-echo "configure:14213: checking for socket" >&5
++echo "configure:14237: checking for socket" >&5
+ if eval "test \"`echo '$''{'ac_cv_func_socket'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+ else
+ cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
++if { (eval echo configure:14265: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+ rm -rf conftest*
+ eval "ac_cv_func_socket=yes"
+ else
+@@ -14255,12 +14279,12 @@
+ else
+ echo "$ac_t""no" 1>&6
+ echo $ac_n "checking for __socket""... $ac_c" 1>&6
+-echo "configure:14259: checking for __socket" >&5
++echo "configure:14283: checking for __socket" >&5
+ if eval "test \"`echo '$''{'ac_cv_func___socket'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+ else
+ cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
++if { (eval echo configure:14311: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+ rm -rf conftest*
+ eval "ac_cv_func___socket=yes"
+ else
+@@ -14321,7 +14345,7 @@
+ unset ac_cv_lib_socket___socket
+ unset found
+ echo $ac_n "checking for socket in -lsocket""... $ac_c" 1>&6
+-echo "configure:14325: checking for socket in -lsocket" >&5
++echo "configure:14349: checking for socket in -lsocket" >&5
+ ac_lib_var=`echo socket'_'socket | sed 'y%./+-%__p_%'`
+ if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+@@ -14329,7 +14353,7 @@
+ ac_save_LIBS="$LIBS"
+ LIBS="-lsocket $LIBS"
+ cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
++if { (eval echo configure:14368: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+ rm -rf conftest*
+ eval "ac_cv_lib_$ac_lib_var=yes"
+ else
+@@ -14360,7 +14384,7 @@
+ echo "$ac_t""no" 1>&6
+
+ echo $ac_n "checking for __socket in -lsocket""... $ac_c" 1>&6
+-echo "configure:14364: checking for __socket in -lsocket" >&5
++echo "configure:14388: checking for __socket in -lsocket" >&5
+ ac_lib_var=`echo socket'_'__socket | sed 'y%./+-%__p_%'`
+ if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+@@ -14368,7 +14392,7 @@
+ ac_save_LIBS="$LIBS"
+ LIBS="-lsocket $LIBS"
+ cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
++if { (eval echo configure:14407: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+ rm -rf conftest*
+ eval "ac_cv_lib_$ac_lib_var=yes"
+ else
+@@ -14411,11 +14435,11 @@
+ found=no
+ else
+ cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
++if { (eval echo configure:14443: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
+ then
+ found=yes
+ else
+@@ -14466,12 +14490,12 @@
+ unset found
+
+ echo $ac_n "checking for socketpair""... $ac_c" 1>&6
+-echo "configure:14470: checking for socketpair" >&5
++echo "configure:14494: checking for socketpair" >&5
+ if eval "test \"`echo '$''{'ac_cv_func_socketpair'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+ else
+ cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
++if { (eval echo configure:14522: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+ rm -rf conftest*
+ eval "ac_cv_func_socketpair=yes"
+ else
+@@ -14512,12 +14536,12 @@
+ else
+ echo "$ac_t""no" 1>&6
+ echo $ac_n "checking for __socketpair""... $ac_c" 1>&6
+-echo "configure:14516: checking for __socketpair" >&5
++echo "configure:14540: checking for __socketpair" >&5
+ if eval "test \"`echo '$''{'ac_cv_func___socketpair'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+ else
+ cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
++if { (eval echo configure:14568: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+ rm -rf conftest*
+ eval "ac_cv_func___socketpair=yes"
+ else
+@@ -14578,7 +14602,7 @@
+ unset ac_cv_lib_socket___socketpair
+ unset found
+ echo $ac_n "checking for socketpair in -lsocket""... $ac_c" 1>&6
+-echo "configure:14582: checking for socketpair in -lsocket" >&5
++echo "configure:14606: checking for socketpair in -lsocket" >&5
+ ac_lib_var=`echo socket'_'socketpair | sed 'y%./+-%__p_%'`
+ if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+@@ -14586,7 +14610,7 @@
+ ac_save_LIBS="$LIBS"
+ LIBS="-lsocket $LIBS"
+ cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
++if { (eval echo configure:14625: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+ rm -rf conftest*
+ eval "ac_cv_lib_$ac_lib_var=yes"
+ else
+@@ -14617,7 +14641,7 @@
+ echo "$ac_t""no" 1>&6
+
+ echo $ac_n "checking for __socketpair in -lsocket""... $ac_c" 1>&6
+-echo "configure:14621: checking for __socketpair in -lsocket" >&5
++echo "configure:14645: checking for __socketpair in -lsocket" >&5
+ ac_lib_var=`echo socket'_'__socketpair | sed 'y%./+-%__p_%'`
+ if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+@@ -14625,7 +14649,7 @@
+ ac_save_LIBS="$LIBS"
+ LIBS="-lsocket $LIBS"
+ cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
++if { (eval echo configure:14664: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+ rm -rf conftest*
+ eval "ac_cv_lib_$ac_lib_var=yes"
+ else
+@@ -14668,11 +14692,11 @@
+ found=no
+ else
+ cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
++if { (eval echo configure:14700: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
+ then
+ found=yes
+ else
+@@ -14723,12 +14747,12 @@
+ unset found
+
+ echo $ac_n "checking for htonl""... $ac_c" 1>&6
+-echo "configure:14727: checking for htonl" >&5
++echo "configure:14751: checking for htonl" >&5
+ if eval "test \"`echo '$''{'ac_cv_func_htonl'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+ else
+ cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
++if { (eval echo configure:14779: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+ rm -rf conftest*
+ eval "ac_cv_func_htonl=yes"
+ else
+@@ -14769,12 +14793,12 @@
+ else
+ echo "$ac_t""no" 1>&6
+ echo $ac_n "checking for __htonl""... $ac_c" 1>&6
+-echo "configure:14773: checking for __htonl" >&5
++echo "configure:14797: checking for __htonl" >&5
+ if eval "test \"`echo '$''{'ac_cv_func___htonl'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+ else
+ cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
++if { (eval echo configure:14825: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+ rm -rf conftest*
+ eval "ac_cv_func___htonl=yes"
+ else
+@@ -14835,7 +14859,7 @@
+ unset ac_cv_lib_socket___htonl
+ unset found
+ echo $ac_n "checking for htonl in -lsocket""... $ac_c" 1>&6
+-echo "configure:14839: checking for htonl in -lsocket" >&5
++echo "configure:14863: checking for htonl in -lsocket" >&5
+ ac_lib_var=`echo socket'_'htonl | sed 'y%./+-%__p_%'`
+ if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+@@ -14843,7 +14867,7 @@
+ ac_save_LIBS="$LIBS"
+ LIBS="-lsocket $LIBS"
+ cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
++if { (eval echo configure:14882: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+ rm -rf conftest*
+ eval "ac_cv_lib_$ac_lib_var=yes"
+ else
+@@ -14874,7 +14898,7 @@
+ echo "$ac_t""no" 1>&6
+
+ echo $ac_n "checking for __htonl in -lsocket""... $ac_c" 1>&6
+-echo "configure:14878: checking for __htonl in -lsocket" >&5
++echo "configure:14902: checking for __htonl in -lsocket" >&5
+ ac_lib_var=`echo socket'_'__htonl | sed 'y%./+-%__p_%'`
+ if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+@@ -14882,7 +14906,7 @@
+ ac_save_LIBS="$LIBS"
+ LIBS="-lsocket $LIBS"
+ cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
++if { (eval echo configure:14921: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+ rm -rf conftest*
+ eval "ac_cv_lib_$ac_lib_var=yes"
+ else
+@@ -14925,11 +14949,11 @@
+ found=no
+ else
+ cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
++if { (eval echo configure:14957: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
+ then
+ found=yes
+ else
+@@ -14980,12 +15004,12 @@
+ unset found
+
+ echo $ac_n "checking for gethostname""... $ac_c" 1>&6
+-echo "configure:14984: checking for gethostname" >&5
++echo "configure:15008: checking for gethostname" >&5
+ if eval "test \"`echo '$''{'ac_cv_func_gethostname'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+ else
+ cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
++if { (eval echo configure:15036: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+ rm -rf conftest*
+ eval "ac_cv_func_gethostname=yes"
+ else
+@@ -15026,12 +15050,12 @@
+ else
+ echo "$ac_t""no" 1>&6
+ echo $ac_n "checking for __gethostname""... $ac_c" 1>&6
+-echo "configure:15030: checking for __gethostname" >&5
++echo "configure:15054: checking for __gethostname" >&5
+ if eval "test \"`echo '$''{'ac_cv_func___gethostname'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+ else
+ cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
++if { (eval echo configure:15082: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+ rm -rf conftest*
+ eval "ac_cv_func___gethostname=yes"
+ else
+@@ -15092,7 +15116,7 @@
+ unset ac_cv_lib_nsl___gethostname
+ unset found
+ echo $ac_n "checking for gethostname in -lnsl""... $ac_c" 1>&6
+-echo "configure:15096: checking for gethostname in -lnsl" >&5
++echo "configure:15120: checking for gethostname in -lnsl" >&5
+ ac_lib_var=`echo nsl'_'gethostname | sed 'y%./+-%__p_%'`
+ if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+@@ -15100,7 +15124,7 @@
+ ac_save_LIBS="$LIBS"
+ LIBS="-lnsl $LIBS"
+ cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
++if { (eval echo configure:15139: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+ rm -rf conftest*
+ eval "ac_cv_lib_$ac_lib_var=yes"
+ else
+@@ -15131,7 +15155,7 @@
+ echo "$ac_t""no" 1>&6
+
+ echo $ac_n "checking for __gethostname in -lnsl""... $ac_c" 1>&6
+-echo "configure:15135: checking for __gethostname in -lnsl" >&5
++echo "configure:15159: checking for __gethostname in -lnsl" >&5
+ ac_lib_var=`echo nsl'_'__gethostname | sed 'y%./+-%__p_%'`
+ if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+@@ -15139,7 +15163,7 @@
+ ac_save_LIBS="$LIBS"
+ LIBS="-lnsl $LIBS"
+ cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
++if { (eval echo configure:15178: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+ rm -rf conftest*
+ eval "ac_cv_lib_$ac_lib_var=yes"
+ else
+@@ -15182,11 +15206,11 @@
+ found=no
+ else
+ cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
++if { (eval echo configure:15214: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
+ then
+ found=yes
+ else
+@@ -15237,12 +15261,12 @@
+ unset found
+
+ echo $ac_n "checking for gethostbyaddr""... $ac_c" 1>&6
+-echo "configure:15241: checking for gethostbyaddr" >&5
++echo "configure:15265: checking for gethostbyaddr" >&5
+ if eval "test \"`echo '$''{'ac_cv_func_gethostbyaddr'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+ else
+ cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
++if { (eval echo configure:15293: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+ rm -rf conftest*
+ eval "ac_cv_func_gethostbyaddr=yes"
+ else
+@@ -15283,12 +15307,12 @@
+ else
+ echo "$ac_t""no" 1>&6
+ echo $ac_n "checking for __gethostbyaddr""... $ac_c" 1>&6
+-echo "configure:15287: checking for __gethostbyaddr" >&5
++echo "configure:15311: checking for __gethostbyaddr" >&5
+ if eval "test \"`echo '$''{'ac_cv_func___gethostbyaddr'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+ else
+ cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
++if { (eval echo configure:15339: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+ rm -rf conftest*
+ eval "ac_cv_func___gethostbyaddr=yes"
+ else
+@@ -15349,7 +15373,7 @@
+ unset ac_cv_lib_nsl___gethostbyaddr
+ unset found
+ echo $ac_n "checking for gethostbyaddr in -lnsl""... $ac_c" 1>&6
+-echo "configure:15353: checking for gethostbyaddr in -lnsl" >&5
++echo "configure:15377: checking for gethostbyaddr in -lnsl" >&5
+ ac_lib_var=`echo nsl'_'gethostbyaddr | sed 'y%./+-%__p_%'`
+ if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+@@ -15357,7 +15381,7 @@
+ ac_save_LIBS="$LIBS"
+ LIBS="-lnsl $LIBS"
+ cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
++if { (eval echo configure:15396: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+ rm -rf conftest*
+ eval "ac_cv_lib_$ac_lib_var=yes"
+ else
+@@ -15388,7 +15412,7 @@
+ echo "$ac_t""no" 1>&6
+
+ echo $ac_n "checking for __gethostbyaddr in -lnsl""... $ac_c" 1>&6
+-echo "configure:15392: checking for __gethostbyaddr in -lnsl" >&5
++echo "configure:15416: checking for __gethostbyaddr in -lnsl" >&5
+ ac_lib_var=`echo nsl'_'__gethostbyaddr | sed 'y%./+-%__p_%'`
+ if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+@@ -15396,7 +15420,7 @@
+ ac_save_LIBS="$LIBS"
+ LIBS="-lnsl $LIBS"
+ cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
++if { (eval echo configure:15435: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+ rm -rf conftest*
+ eval "ac_cv_lib_$ac_lib_var=yes"
+ else
+@@ -15439,11 +15463,11 @@
+ found=no
+ else
+ cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
++if { (eval echo configure:15471: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
+ then
+ found=yes
+ else
+@@ -15494,12 +15518,12 @@
+ unset found
+
+ echo $ac_n "checking for yp_get_default_domain""... $ac_c" 1>&6
+-echo "configure:15498: checking for yp_get_default_domain" >&5
++echo "configure:15522: checking for yp_get_default_domain" >&5
+ if eval "test \"`echo '$''{'ac_cv_func_yp_get_default_domain'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+ else
+ cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
++if { (eval echo configure:15550: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+ rm -rf conftest*
+ eval "ac_cv_func_yp_get_default_domain=yes"
+ else
+@@ -15540,12 +15564,12 @@
+ else
+ echo "$ac_t""no" 1>&6
+ echo $ac_n "checking for __yp_get_default_domain""... $ac_c" 1>&6
+-echo "configure:15544: checking for __yp_get_default_domain" >&5
++echo "configure:15568: checking for __yp_get_default_domain" >&5
+ if eval "test \"`echo '$''{'ac_cv_func___yp_get_default_domain'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+ else
+ cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
++if { (eval echo configure:15596: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+ rm -rf conftest*
+ eval "ac_cv_func___yp_get_default_domain=yes"
+ else
+@@ -15606,7 +15630,7 @@
+ unset ac_cv_lib_nsl___yp_get_default_domain
+ unset found
+ echo $ac_n "checking for yp_get_default_domain in -lnsl""... $ac_c" 1>&6
+-echo "configure:15610: checking for yp_get_default_domain in -lnsl" >&5
++echo "configure:15634: checking for yp_get_default_domain in -lnsl" >&5
+ ac_lib_var=`echo nsl'_'yp_get_default_domain | sed 'y%./+-%__p_%'`
+ if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+@@ -15614,7 +15638,7 @@
+ ac_save_LIBS="$LIBS"
+ LIBS="-lnsl $LIBS"
+ cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
++if { (eval echo configure:15653: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+ rm -rf conftest*
+ eval "ac_cv_lib_$ac_lib_var=yes"
+ else
+@@ -15645,7 +15669,7 @@
+ echo "$ac_t""no" 1>&6
+
+ echo $ac_n "checking for __yp_get_default_domain in -lnsl""... $ac_c" 1>&6
+-echo "configure:15649: checking for __yp_get_default_domain in -lnsl" >&5
++echo "configure:15673: checking for __yp_get_default_domain in -lnsl" >&5
+ ac_lib_var=`echo nsl'_'__yp_get_default_domain | sed 'y%./+-%__p_%'`
+ if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+@@ -15653,7 +15677,7 @@
+ ac_save_LIBS="$LIBS"
+ LIBS="-lnsl $LIBS"
+ cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
++if { (eval echo configure:15692: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+ rm -rf conftest*
+ eval "ac_cv_lib_$ac_lib_var=yes"
+ else
+@@ -15696,11 +15720,11 @@
+ found=no
+ else
+ cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
++if { (eval echo configure:15728: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
+ then
+ found=yes
+ else
+@@ -15752,12 +15776,12 @@
+ unset found
+
+ echo $ac_n "checking for dlopen""... $ac_c" 1>&6
+-echo "configure:15756: checking for dlopen" >&5
++echo "configure:15780: checking for dlopen" >&5
+ if eval "test \"`echo '$''{'ac_cv_func_dlopen'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+ else
+ cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
++if { (eval echo configure:15808: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+ rm -rf conftest*
+ eval "ac_cv_func_dlopen=yes"
+ else
+@@ -15798,12 +15822,12 @@
+ else
+ echo "$ac_t""no" 1>&6
+ echo $ac_n "checking for __dlopen""... $ac_c" 1>&6
+-echo "configure:15802: checking for __dlopen" >&5
++echo "configure:15826: checking for __dlopen" >&5
+ if eval "test \"`echo '$''{'ac_cv_func___dlopen'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+ else
+ cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
++if { (eval echo configure:15854: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+ rm -rf conftest*
+ eval "ac_cv_func___dlopen=yes"
+ else
+@@ -15864,7 +15888,7 @@
+ unset ac_cv_lib_dl___dlopen
+ unset found
+ echo $ac_n "checking for dlopen in -ldl""... $ac_c" 1>&6
+-echo "configure:15868: checking for dlopen in -ldl" >&5
++echo "configure:15892: checking for dlopen in -ldl" >&5
+ ac_lib_var=`echo dl'_'dlopen | sed 'y%./+-%__p_%'`
+ if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+@@ -15872,7 +15896,7 @@
+ ac_save_LIBS="$LIBS"
+ LIBS="-ldl $LIBS"
+ cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
++if { (eval echo configure:15911: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+ rm -rf conftest*
+ eval "ac_cv_lib_$ac_lib_var=yes"
+ else
+@@ -15903,7 +15927,7 @@
+ echo "$ac_t""no" 1>&6
+
+ echo $ac_n "checking for __dlopen in -ldl""... $ac_c" 1>&6
+-echo "configure:15907: checking for __dlopen in -ldl" >&5
++echo "configure:15931: checking for __dlopen in -ldl" >&5
+ ac_lib_var=`echo dl'_'__dlopen | sed 'y%./+-%__p_%'`
+ if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+@@ -15911,7 +15935,7 @@
+ ac_save_LIBS="$LIBS"
+ LIBS="-ldl $LIBS"
+ cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
++if { (eval echo configure:15950: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+ rm -rf conftest*
+ eval "ac_cv_lib_$ac_lib_var=yes"
+ else
+@@ -15954,11 +15978,11 @@
+ found=no
+ else
+ cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
++if { (eval echo configure:15986: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
+ then
+ found=yes
+ else
+@@ -16010,7 +16034,7 @@
+
+ fi
+ echo $ac_n "checking for sin in -lm""... $ac_c" 1>&6
+-echo "configure:16014: checking for sin in -lm" >&5
++echo "configure:16038: checking for sin in -lm" >&5
+ ac_lib_var=`echo m'_'sin | sed 'y%./+-%__p_%'`
+ if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+@@ -16018,7 +16042,7 @@
+ ac_save_LIBS="$LIBS"
+ LIBS="-lm $LIBS"
+ cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
++if { (eval echo configure:16057: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+ rm -rf conftest*
+ eval "ac_cv_lib_$ac_lib_var=yes"
+ else
+@@ -16063,12 +16087,12 @@
+ unset found
+
+ echo $ac_n "checking for inet_aton""... $ac_c" 1>&6
+-echo "configure:16067: checking for inet_aton" >&5
++echo "configure:16091: checking for inet_aton" >&5
+ if eval "test \"`echo '$''{'ac_cv_func_inet_aton'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+ else
+ cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
++if { (eval echo configure:16119: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+ rm -rf conftest*
+ eval "ac_cv_func_inet_aton=yes"
+ else
+@@ -16109,12 +16133,12 @@
+ else
+ echo "$ac_t""no" 1>&6
+ echo $ac_n "checking for __inet_aton""... $ac_c" 1>&6
+-echo "configure:16113: checking for __inet_aton" >&5
++echo "configure:16137: checking for __inet_aton" >&5
+ if eval "test \"`echo '$''{'ac_cv_func___inet_aton'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+ else
+ cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
++if { (eval echo configure:16165: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+ rm -rf conftest*
+ eval "ac_cv_func___inet_aton=yes"
+ else
+@@ -16175,7 +16199,7 @@
+ unset ac_cv_lib_resolv___inet_aton
+ unset found
+ echo $ac_n "checking for inet_aton in -lresolv""... $ac_c" 1>&6
+-echo "configure:16179: checking for inet_aton in -lresolv" >&5
++echo "configure:16203: checking for inet_aton in -lresolv" >&5
+ ac_lib_var=`echo resolv'_'inet_aton | sed 'y%./+-%__p_%'`
+ if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+@@ -16183,7 +16207,7 @@
+ ac_save_LIBS="$LIBS"
+ LIBS="-lresolv $LIBS"
+ cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
++if { (eval echo configure:16222: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+ rm -rf conftest*
+ eval "ac_cv_lib_$ac_lib_var=yes"
+ else
+@@ -16214,7 +16238,7 @@
+ echo "$ac_t""no" 1>&6
+
+ echo $ac_n "checking for __inet_aton in -lresolv""... $ac_c" 1>&6
+-echo "configure:16218: checking for __inet_aton in -lresolv" >&5
++echo "configure:16242: checking for __inet_aton in -lresolv" >&5
+ ac_lib_var=`echo resolv'_'__inet_aton | sed 'y%./+-%__p_%'`
+ if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+@@ -16222,7 +16246,7 @@
+ ac_save_LIBS="$LIBS"
+ LIBS="-lresolv $LIBS"
+ cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
++if { (eval echo configure:16261: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+ rm -rf conftest*
+ eval "ac_cv_lib_$ac_lib_var=yes"
+ else
+@@ -16265,11 +16289,11 @@
+ found=no
+ else
+ cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
++if { (eval echo configure:16297: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
+ then
+ found=yes
+ else
+@@ -16311,7 +16335,7 @@
+ unset ac_cv_lib_bind___inet_aton
+ unset found
+ echo $ac_n "checking for inet_aton in -lbind""... $ac_c" 1>&6
+-echo "configure:16315: checking for inet_aton in -lbind" >&5
++echo "configure:16339: checking for inet_aton in -lbind" >&5
+ ac_lib_var=`echo bind'_'inet_aton | sed 'y%./+-%__p_%'`
+ if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+@@ -16319,7 +16343,7 @@
+ ac_save_LIBS="$LIBS"
+ LIBS="-lbind $LIBS"
+ cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
++if { (eval echo configure:16358: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+ rm -rf conftest*
+ eval "ac_cv_lib_$ac_lib_var=yes"
+ else
+@@ -16350,7 +16374,7 @@
+ echo "$ac_t""no" 1>&6
+
+ echo $ac_n "checking for __inet_aton in -lbind""... $ac_c" 1>&6
+-echo "configure:16354: checking for __inet_aton in -lbind" >&5
++echo "configure:16378: checking for __inet_aton in -lbind" >&5
+ ac_lib_var=`echo bind'_'__inet_aton | sed 'y%./+-%__p_%'`
+ if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+@@ -16358,7 +16382,7 @@
+ ac_save_LIBS="$LIBS"
+ LIBS="-lbind $LIBS"
+ cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
++if { (eval echo configure:16397: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+ rm -rf conftest*
+ eval "ac_cv_lib_$ac_lib_var=yes"
+ else
+@@ -16401,11 +16425,11 @@
+ found=no
+ else
+ cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
++if { (eval echo configure:16433: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
+ then
+ found=yes
+ else
+@@ -16456,12 +16480,12 @@
+
+
+ echo $ac_n "checking for ANSI C header files""... $ac_c" 1>&6
+-echo "configure:16460: checking for ANSI C header files" >&5
++echo "configure:16484: checking for ANSI C header files" >&5
+ if eval "test \"`echo '$''{'ac_cv_header_stdc'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+ else
+ cat > conftest.$ac_ext <
+ #include
+@@ -16469,7 +16493,7 @@
+ #include
+ EOF
+ ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
+-{ (eval echo configure:16473: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
++{ (eval echo configure:16497: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
+ ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
+ if test -z "$ac_err"; then
+ rm -rf conftest*
+@@ -16486,7 +16510,7 @@
+ if test $ac_cv_header_stdc = yes; then
+ # SunOS 4.x string.h does not declare mem*, contrary to ANSI.
+ cat > conftest.$ac_ext <
+ EOF
+@@ -16504,7 +16528,7 @@
+ if test $ac_cv_header_stdc = yes; then
+ # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI.
+ cat > conftest.$ac_ext <
+ EOF
+@@ -16525,7 +16549,7 @@
+ :
+ else
+ cat > conftest.$ac_ext <
+ #define ISLOWER(c) ('a' <= (c) && (c) <= 'z')
+@@ -16536,7 +16560,7 @@
+ exit (0); }
+
+ EOF
+-if { (eval echo configure:16540: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
++if { (eval echo configure:16564: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
+ then
+ :
+ else
+@@ -16564,12 +16588,12 @@
+ do
+ ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'`
+ echo $ac_n "checking for $ac_hdr that defines DIR""... $ac_c" 1>&6
+-echo "configure:16568: checking for $ac_hdr that defines DIR" >&5
++echo "configure:16592: checking for $ac_hdr that defines DIR" >&5
+ if eval "test \"`echo '$''{'ac_cv_header_dirent_$ac_safe'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+ else
+ cat > conftest.$ac_ext <
+ #include <$ac_hdr>
+@@ -16577,7 +16601,7 @@
+ DIR *dirp = 0;
+ ; return 0; }
+ EOF
+-if { (eval echo configure:16581: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
++if { (eval echo configure:16605: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+ rm -rf conftest*
+ eval "ac_cv_header_dirent_$ac_safe=yes"
+ else
+@@ -16602,7 +16626,7 @@
+ # Two versions of opendir et al. are in -ldir and -lx on SCO Xenix.
+ if test $ac_header_dirent = dirent.h; then
+ echo $ac_n "checking for opendir in -ldir""... $ac_c" 1>&6
+-echo "configure:16606: checking for opendir in -ldir" >&5
++echo "configure:16630: checking for opendir in -ldir" >&5
+ ac_lib_var=`echo dir'_'opendir | sed 'y%./+-%__p_%'`
+ if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+@@ -16610,7 +16634,7 @@
+ ac_save_LIBS="$LIBS"
+ LIBS="-ldir $LIBS"
+ cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
++if { (eval echo configure:16649: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+ rm -rf conftest*
+ eval "ac_cv_lib_$ac_lib_var=yes"
+ else
+@@ -16643,7 +16667,7 @@
+
+ else
+ echo $ac_n "checking for opendir in -lx""... $ac_c" 1>&6
+-echo "configure:16647: checking for opendir in -lx" >&5
++echo "configure:16671: checking for opendir in -lx" >&5
+ ac_lib_var=`echo x'_'opendir | sed 'y%./+-%__p_%'`
+ if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+@@ -16651,7 +16675,7 @@
+ ac_save_LIBS="$LIBS"
+ LIBS="-lx $LIBS"
+ cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
++if { (eval echo configure:16690: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+ rm -rf conftest*
+ eval "ac_cv_lib_$ac_lib_var=yes"
+ else
+@@ -16744,17 +16768,17 @@
+ do
+ ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'`
+ echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6
+-echo "configure:16748: checking for $ac_hdr" >&5
++echo "configure:16772: checking for $ac_hdr" >&5
+ if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+ else
+ cat > conftest.$ac_ext <
+ EOF
+ ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
+-{ (eval echo configure:16758: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
++{ (eval echo configure:16782: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
+ ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
+ if test -z "$ac_err"; then
+ rm -rf conftest*
+@@ -16783,12 +16807,12 @@
+
+
+ echo $ac_n "checking for fopencookie""... $ac_c" 1>&6
+-echo "configure:16787: checking for fopencookie" >&5
++echo "configure:16811: checking for fopencookie" >&5
+ if eval "test \"`echo '$''{'ac_cv_func_fopencookie'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+ else
+ cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
++if { (eval echo configure:16839: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+ rm -rf conftest*
+ eval "ac_cv_func_fopencookie=yes"
+ else
+@@ -16833,7 +16857,7 @@
+
+ if test "$have_glibc_fopencookie" = "yes"; then
+ cat > conftest.$ac_ext <&5; (eval $ac_compile) 2>&5; }; then
++if { (eval echo configure:16871: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+ rm -rf conftest*
+ have_cookie_io_functions_t=yes
+ else
+@@ -16862,7 +16886,7 @@
+
+ else
+ cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
++if { (eval echo configure:16922: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
+ then
+
+ cookie_io_functions_use_off64_t=yes
+@@ -16914,7 +16938,7 @@
+ else
+
+ cat > conftest.$ac_ext <&5; (eval $ac_compile) 2>&5; }; then
++if { (eval echo configure:16952: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+ rm -rf conftest*
+ have_IO_cookie_io_functions_t=yes
+ else
+@@ -16958,7 +16982,7 @@
+
+
+ echo $ac_n "checking for broken getcwd""... $ac_c" 1>&6
+-echo "configure:16962: checking for broken getcwd" >&5
++echo "configure:16986: checking for broken getcwd" >&5
+ os=`uname -sr 2>/dev/null`
+ case $os in
+ SunOS*)
+@@ -16973,14 +16997,14 @@
+
+
+ echo $ac_n "checking for broken libc stdio""... $ac_c" 1>&6
+-echo "configure:16977: checking for broken libc stdio" >&5
++echo "configure:17001: checking for broken libc stdio" >&5
+ if eval "test \"`echo '$''{'_cv_have_broken_glibc_fopen_append'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+ else
+
+ if test "$cross_compiling" = yes; then
+ cat > conftest.$ac_ext <
+@@ -16993,7 +17017,7 @@
+
+ ; return 0; }
+ EOF
+-if { (eval echo configure:16997: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
++if { (eval echo configure:17021: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+ rm -rf conftest*
+ _cv_have_broken_glibc_fopen_append=yes
+ else
+@@ -17006,7 +17030,7 @@
+
+ else
+ cat > conftest.$ac_ext <
+@@ -17034,7 +17058,7 @@
+ }
+
+ EOF
+-if { (eval echo configure:17038: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
++if { (eval echo configure:17062: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
+ then
+ _cv_have_broken_glibc_fopen_append=no
+ else
+@@ -17062,12 +17086,12 @@
+
+
+ echo $ac_n "checking whether struct tm is in sys/time.h or time.h""... $ac_c" 1>&6
+-echo "configure:17066: checking whether struct tm is in sys/time.h or time.h" >&5
++echo "configure:17090: checking whether struct tm is in sys/time.h or time.h" >&5
+ if eval "test \"`echo '$''{'ac_cv_struct_tm'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+ else
+ cat > conftest.$ac_ext <
+ #include
+@@ -17075,7 +17099,7 @@
+ struct tm *tp; tp->tm_sec;
+ ; return 0; }
+ EOF
+-if { (eval echo configure:17079: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
++if { (eval echo configure:17103: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+ rm -rf conftest*
+ ac_cv_struct_tm=time.h
+ else
+@@ -17096,12 +17120,12 @@
+ fi
+
+ echo $ac_n "checking for tm_zone in struct tm""... $ac_c" 1>&6
+-echo "configure:17100: checking for tm_zone in struct tm" >&5
++echo "configure:17124: checking for tm_zone in struct tm" >&5
+ if eval "test \"`echo '$''{'ac_cv_struct_tm_zone'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+ else
+ cat > conftest.$ac_ext <
+ #include <$ac_cv_struct_tm>
+@@ -17109,7 +17133,7 @@
+ struct tm tm; tm.tm_zone;
+ ; return 0; }
+ EOF
+-if { (eval echo configure:17113: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
++if { (eval echo configure:17137: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+ rm -rf conftest*
+ ac_cv_struct_tm_zone=yes
+ else
+@@ -17129,12 +17153,12 @@
+
+ else
+ echo $ac_n "checking for tzname""... $ac_c" 1>&6
+-echo "configure:17133: checking for tzname" >&5
++echo "configure:17157: checking for tzname" >&5
+ if eval "test \"`echo '$''{'ac_cv_var_tzname'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+ else
+ cat > conftest.$ac_ext <
+ #ifndef tzname /* For SGI. */
+@@ -17144,7 +17168,7 @@
+ atoi(*tzname);
+ ; return 0; }
+ EOF
+-if { (eval echo configure:17148: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
++if { (eval echo configure:17172: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+ rm -rf conftest*
+ ac_cv_var_tzname=yes
+ else
+@@ -17168,16 +17192,16 @@
+
+
+ echo $ac_n "checking for missing declarations of reentrant functions""... $ac_c" 1>&6
+-echo "configure:17172: checking for missing declarations of reentrant functions" >&5
++echo "configure:17196: checking for missing declarations of reentrant functions" >&5
+ cat > conftest.$ac_ext <
+ int main() {
+ struct tm *(*func)() = localtime_r
+ ; return 0; }
+ EOF
+-if { (eval echo configure:17181: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
++if { (eval echo configure:17205: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+ rm -rf conftest*
+
+ :
+@@ -17195,14 +17219,14 @@
+ fi
+ rm -f conftest*
+ cat > conftest.$ac_ext <
+ int main() {
+ struct tm *(*func)() = gmtime_r
+ ; return 0; }
+ EOF
+-if { (eval echo configure:17206: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
++if { (eval echo configure:17230: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+ rm -rf conftest*
+
+ :
+@@ -17220,14 +17244,14 @@
+ fi
+ rm -f conftest*
+ cat > conftest.$ac_ext <
+ int main() {
+ char *(*func)() = asctime_r
+ ; return 0; }
+ EOF
+-if { (eval echo configure:17231: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
++if { (eval echo configure:17255: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+ rm -rf conftest*
+
+ :
+@@ -17245,14 +17269,14 @@
+ fi
+ rm -f conftest*
+ cat > conftest.$ac_ext <
+ int main() {
+ char *(*func)() = ctime_r
+ ; return 0; }
+ EOF
+-if { (eval echo configure:17256: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
++if { (eval echo configure:17280: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+ rm -rf conftest*
+
+ :
+@@ -17270,14 +17294,14 @@
+ fi
+ rm -f conftest*
+ cat > conftest.$ac_ext <
+ int main() {
+ char *(*func)() = strtok_r
+ ; return 0; }
+ EOF
+-if { (eval echo configure:17281: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
++if { (eval echo configure:17305: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+ rm -rf conftest*
+
+ :
+@@ -17298,16 +17322,16 @@
+
+
+ echo $ac_n "checking for fclose declaration""... $ac_c" 1>&6
+-echo "configure:17302: checking for fclose declaration" >&5
++echo "configure:17326: checking for fclose declaration" >&5
+ cat > conftest.$ac_ext <
+ int main() {
+ int (*func)() = fclose
+ ; return 0; }
+ EOF
+-if { (eval echo configure:17311: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
++if { (eval echo configure:17335: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+ rm -rf conftest*
+
+ cat >> confdefs.h <<\EOF
+@@ -17333,12 +17357,12 @@
+
+
+ echo $ac_n "checking for tm_gmtoff in struct tm""... $ac_c" 1>&6
+-echo "configure:17337: checking for tm_gmtoff in struct tm" >&5
++echo "configure:17361: checking for tm_gmtoff in struct tm" >&5
+ if eval "test \"`echo '$''{'ac_cv_struct_tm_gmtoff'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+ else
+ cat > conftest.$ac_ext <
+ #include <$ac_cv_struct_tm>
+@@ -17346,7 +17370,7 @@
+ struct tm tm; tm.tm_gmtoff;
+ ; return 0; }
+ EOF
+-if { (eval echo configure:17350: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
++if { (eval echo configure:17374: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+ rm -rf conftest*
+ ac_cv_struct_tm_gmtoff=yes
+ else
+@@ -17369,12 +17393,12 @@
+
+
+ echo $ac_n "checking for struct flock""... $ac_c" 1>&6
+-echo "configure:17373: checking for struct flock" >&5
++echo "configure:17397: checking for struct flock" >&5
+ if eval "test \"`echo '$''{'ac_cv_struct_flock'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+ else
+ cat > conftest.$ac_ext <
+@@ -17384,7 +17408,7 @@
+ struct flock x;
+ ; return 0; }
+ EOF
+-if { (eval echo configure:17388: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
++if { (eval echo configure:17412: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+ rm -rf conftest*
+
+ ac_cv_struct_flock=yes
+@@ -17411,12 +17435,12 @@
+
+
+ echo $ac_n "checking for socklen_t""... $ac_c" 1>&6
+-echo "configure:17415: checking for socklen_t" >&5
++echo "configure:17439: checking for socklen_t" >&5
+ if eval "test \"`echo '$''{'ac_cv_socklen_t'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+ else
+ cat > conftest.$ac_ext <
+@@ -17428,7 +17452,7 @@
+
+ ; return 0; }
+ EOF
+-if { (eval echo configure:17432: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
++if { (eval echo configure:17456: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+ rm -rf conftest*
+
+ ac_cv_socklen_t=yes
+@@ -17454,7 +17478,7 @@
+
+
+ echo $ac_n "checking size of size_t""... $ac_c" 1>&6
+-echo "configure:17458: checking size of size_t" >&5
++echo "configure:17482: checking size of size_t" >&5
+ if eval "test \"`echo '$''{'ac_cv_sizeof_size_t'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+ else
+@@ -17462,18 +17486,19 @@
+ ac_cv_sizeof_size_t=8
+ else
+ cat > conftest.$ac_ext <
+-int main()
++#include
++main()
+ {
+ FILE *f=fopen("conftestval", "w");
+- if (!f) return(1);
++ if (!f) exit(1);
+ fprintf(f, "%d\n", sizeof(size_t));
+- return(0);
++ exit(0);
+ }
+ EOF
+-if { (eval echo configure:17477: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
++if { (eval echo configure:17502: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
+ then
+ ac_cv_sizeof_size_t=`cat conftestval`
+ else
+@@ -17493,7 +17518,7 @@
+
+
+ echo $ac_n "checking size of long long""... $ac_c" 1>&6
+-echo "configure:17497: checking size of long long" >&5
++echo "configure:17522: checking size of long long" >&5
+ if eval "test \"`echo '$''{'ac_cv_sizeof_long_long'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+ else
+@@ -17501,18 +17526,19 @@
+ ac_cv_sizeof_long_long=8
+ else
+ cat > conftest.$ac_ext <
+-int main()
++#include
++main()
+ {
+ FILE *f=fopen("conftestval", "w");
+- if (!f) return(1);
++ if (!f) exit(1);
+ fprintf(f, "%d\n", sizeof(long long));
+- return(0);
++ exit(0);
+ }
+ EOF
+-if { (eval echo configure:17516: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
++if { (eval echo configure:17542: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
+ then
+ ac_cv_sizeof_long_long=`cat conftestval`
+ else
+@@ -17532,7 +17558,7 @@
+
+
+ echo $ac_n "checking size of long long int""... $ac_c" 1>&6
+-echo "configure:17536: checking size of long long int" >&5
++echo "configure:17562: checking size of long long int" >&5
+ if eval "test \"`echo '$''{'ac_cv_sizeof_long_long_int'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+ else
+@@ -17540,18 +17566,19 @@
+ ac_cv_sizeof_long_long_int=8
+ else
+ cat > conftest.$ac_ext <
+-int main()
++#include
++main()
+ {
+ FILE *f=fopen("conftestval", "w");
+- if (!f) return(1);
++ if (!f) exit(1);
+ fprintf(f, "%d\n", sizeof(long long int));
+- return(0);
++ exit(0);
+ }
+ EOF
+-if { (eval echo configure:17555: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
++if { (eval echo configure:17582: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
+ then
+ ac_cv_sizeof_long_long_int=`cat conftestval`
+ else
+@@ -17571,7 +17598,7 @@
+
+
+ echo $ac_n "checking size of long""... $ac_c" 1>&6
+-echo "configure:17575: checking size of long" >&5
++echo "configure:17602: checking size of long" >&5
+ if eval "test \"`echo '$''{'ac_cv_sizeof_long'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+ else
+@@ -17579,18 +17606,19 @@
+ ac_cv_sizeof_long=8
+ else
+ cat > conftest.$ac_ext <
+-int main()
++#include
++main()
+ {
+ FILE *f=fopen("conftestval", "w");
+- if (!f) return(1);
++ if (!f) exit(1);
+ fprintf(f, "%d\n", sizeof(long));
+- return(0);
++ exit(0);
+ }
+ EOF
+-if { (eval echo configure:17594: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
++if { (eval echo configure:17622: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
+ then
+ ac_cv_sizeof_long=`cat conftestval`
+ else
+@@ -17610,7 +17638,7 @@
+
+
+ echo $ac_n "checking size of int""... $ac_c" 1>&6
+-echo "configure:17614: checking size of int" >&5
++echo "configure:17642: checking size of int" >&5
+ if eval "test \"`echo '$''{'ac_cv_sizeof_int'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+ else
+@@ -17618,18 +17646,19 @@
+ ac_cv_sizeof_int=4
+ else
+ cat > conftest.$ac_ext <
+-int main()
++#include
++main()
+ {
+ FILE *f=fopen("conftestval", "w");
+- if (!f) return(1);
++ if (!f) exit(1);
+ fprintf(f, "%d\n", sizeof(int));
+- return(0);
++ exit(0);
+ }
+ EOF
+-if { (eval echo configure:17633: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
++if { (eval echo configure:17662: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
+ then
+ ac_cv_sizeof_int=`cat conftestval`
+ else
+@@ -17651,7 +17680,7 @@
+
+
+ echo $ac_n "checking size of intmax_t""... $ac_c" 1>&6
+-echo "configure:17655: checking size of intmax_t" >&5
++echo "configure:17684: checking size of intmax_t" >&5
+
+ php_cache_value=php_cv_sizeof_intmax_t
+ if eval "test \"`echo '$''{'php_cv_sizeof_intmax_t'+set}'`\" = set"; then
+@@ -17668,7 +17697,7 @@
+
+ else
+ cat > conftest.$ac_ext <
+ #if STDC_HEADERS
+@@ -17692,7 +17721,7 @@
+ }
+
+ EOF
+-if { (eval echo configure:17696: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
++if { (eval echo configure:17725: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
+ then
+
+ eval $php_cache_value=`cat conftestval`
+@@ -17731,7 +17760,7 @@
+
+
+ echo $ac_n "checking size of ssize_t""... $ac_c" 1>&6
+-echo "configure:17735: checking size of ssize_t" >&5
++echo "configure:17764: checking size of ssize_t" >&5
+
+ php_cache_value=php_cv_sizeof_ssize_t
+ if eval "test \"`echo '$''{'php_cv_sizeof_ssize_t'+set}'`\" = set"; then
+@@ -17748,7 +17777,7 @@
+
+ else
+ cat > conftest.$ac_ext <
+ #if STDC_HEADERS
+@@ -17772,7 +17801,7 @@
+ }
+
+ EOF
+-if { (eval echo configure:17776: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
++if { (eval echo configure:17805: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
+ then
+
+ eval $php_cache_value=`cat conftestval`
+@@ -17811,7 +17840,7 @@
+
+
+ echo $ac_n "checking size of ptrdiff_t""... $ac_c" 1>&6
+-echo "configure:17815: checking size of ptrdiff_t" >&5
++echo "configure:17844: checking size of ptrdiff_t" >&5
+
+ php_cache_value=php_cv_sizeof_ptrdiff_t
+ if eval "test \"`echo '$''{'php_cv_sizeof_ptrdiff_t'+set}'`\" = set"; then
+@@ -17828,7 +17857,7 @@
+
+ else
+ cat > conftest.$ac_ext <
+ #if STDC_HEADERS
+@@ -17852,7 +17881,7 @@
+ }
+
+ EOF
+-if { (eval echo configure:17856: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
++if { (eval echo configure:17885: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
+ then
+
+ eval $php_cache_value=`cat conftestval`
+@@ -17891,12 +17920,12 @@
+
+
+ echo $ac_n "checking for st_blksize in struct stat""... $ac_c" 1>&6
+-echo "configure:17895: checking for st_blksize in struct stat" >&5
++echo "configure:17924: checking for st_blksize in struct stat" >&5
+ if eval "test \"`echo '$''{'ac_cv_struct_st_blksize'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+ else
+ cat > conftest.$ac_ext <
+ #include
+@@ -17904,7 +17933,7 @@
+ struct stat s; s.st_blksize;
+ ; return 0; }
+ EOF
+-if { (eval echo configure:17908: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
++if { (eval echo configure:17937: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+ rm -rf conftest*
+ ac_cv_struct_st_blksize=yes
+ else
+@@ -17926,12 +17955,12 @@
+
+ if test "`uname -s 2>/dev/null`" != "QNX"; then
+ echo $ac_n "checking for st_blocks in struct stat""... $ac_c" 1>&6
+-echo "configure:17930: checking for st_blocks in struct stat" >&5
++echo "configure:17959: checking for st_blocks in struct stat" >&5
+ if eval "test \"`echo '$''{'ac_cv_struct_st_blocks'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+ else
+ cat > conftest.$ac_ext <
+ #include
+@@ -17939,7 +17968,7 @@
+ struct stat s; s.st_blocks;
+ ; return 0; }
+ EOF
+-if { (eval echo configure:17943: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
++if { (eval echo configure:17972: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+ rm -rf conftest*
+ ac_cv_struct_st_blocks=yes
+ else
+@@ -17966,12 +17995,12 @@
+ WARNING_LEVEL=0
+ fi
+ echo $ac_n "checking for st_rdev in struct stat""... $ac_c" 1>&6
+-echo "configure:17970: checking for st_rdev in struct stat" >&5
++echo "configure:17999: checking for st_rdev in struct stat" >&5
+ if eval "test \"`echo '$''{'ac_cv_struct_st_rdev'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+ else
+ cat > conftest.$ac_ext <
+ #include
+@@ -17979,7 +18008,7 @@
+ struct stat s; s.st_rdev;
+ ; return 0; }
+ EOF
+-if { (eval echo configure:17983: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
++if { (eval echo configure:18012: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+ rm -rf conftest*
+ ac_cv_struct_st_rdev=yes
+ else
+@@ -18001,12 +18030,12 @@
+
+
+ echo $ac_n "checking for size_t""... $ac_c" 1>&6
+-echo "configure:18005: checking for size_t" >&5
++echo "configure:18034: checking for size_t" >&5
+ if eval "test \"`echo '$''{'ac_cv_type_size_t'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+ else
+ cat > conftest.$ac_ext <
+ #if STDC_HEADERS
+@@ -18034,12 +18063,12 @@
+ fi
+
+ echo $ac_n "checking for uid_t in sys/types.h""... $ac_c" 1>&6
+-echo "configure:18038: checking for uid_t in sys/types.h" >&5
++echo "configure:18067: checking for uid_t in sys/types.h" >&5
+ if eval "test \"`echo '$''{'ac_cv_type_uid_t'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+ else
+ cat > conftest.$ac_ext <
+ EOF
+@@ -18070,12 +18099,12 @@
+
+
+ echo $ac_n "checking for struct sockaddr_storage""... $ac_c" 1>&6
+-echo "configure:18074: checking for struct sockaddr_storage" >&5
++echo "configure:18103: checking for struct sockaddr_storage" >&5
+ if eval "test \"`echo '$''{'ac_cv_sockaddr_storage'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+ else
+ cat > conftest.$ac_ext <
+ #include
+@@ -18083,7 +18112,7 @@
+ struct sockaddr_storage s; s
+ ; return 0; }
+ EOF
+-if { (eval echo configure:18087: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
++if { (eval echo configure:18116: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+ rm -rf conftest*
+ ac_cv_sockaddr_storage=yes
+ else
+@@ -18104,13 +18133,13 @@
+
+ fi
+ echo $ac_n "checking for field sa_len in struct sockaddr""... $ac_c" 1>&6
+-echo "configure:18108: checking for field sa_len in struct sockaddr" >&5
++echo "configure:18137: checking for field sa_len in struct sockaddr" >&5
+ if eval "test \"`echo '$''{'ac_cv_sockaddr_sa_len'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+ else
+
+ cat > conftest.$ac_ext <
+ #include
+@@ -18118,7 +18147,7 @@
+ static struct sockaddr sa; int n = (int) sa.sa_len; return n;
+ ; return 0; }
+ EOF
+-if { (eval echo configure:18122: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
++if { (eval echo configure:18151: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+ rm -rf conftest*
+ ac_cv_sockaddr_sa_len=yes
+ else
+@@ -18141,12 +18170,12 @@
+
+
+ echo $ac_n "checking for IPv6 support""... $ac_c" 1>&6
+-echo "configure:18145: checking for IPv6 support" >&5
++echo "configure:18174: checking for IPv6 support" >&5
+ if eval "test \"`echo '$''{'ac_cv_ipv6_support'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+ else
+ cat > conftest.$ac_ext <
+ #include
+@@ -18155,7 +18184,7 @@
+ struct sockaddr_in6 s; struct in6_addr t=in6addr_any; int i=AF_INET6; s; t.s6_addr[0] = 0;
+ ; return 0; }
+ EOF
+-if { (eval echo configure:18159: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
++if { (eval echo configure:18188: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+ rm -rf conftest*
+ ac_cv_ipv6_support=yes
+ else
+@@ -18171,12 +18200,12 @@
+
+
+ echo $ac_n "checking for vprintf""... $ac_c" 1>&6
+-echo "configure:18175: checking for vprintf" >&5
++echo "configure:18204: checking for vprintf" >&5
+ if eval "test \"`echo '$''{'ac_cv_func_vprintf'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+ else
+ cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
++if { (eval echo configure:18232: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+ rm -rf conftest*
+ eval "ac_cv_func_vprintf=yes"
+ else
+@@ -18223,12 +18252,12 @@
+
+ if test "$ac_cv_func_vprintf" != yes; then
+ echo $ac_n "checking for _doprnt""... $ac_c" 1>&6
+-echo "configure:18227: checking for _doprnt" >&5
++echo "configure:18256: checking for _doprnt" >&5
+ if eval "test \"`echo '$''{'ac_cv_func__doprnt'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+ else
+ cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
++if { (eval echo configure:18284: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+ rm -rf conftest*
+ eval "ac_cv_func__doprnt=yes"
+ else
+@@ -18359,12 +18388,12 @@
+
+ do
+ echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
+-echo "configure:18363: checking for $ac_func" >&5
++echo "configure:18392: checking for $ac_func" >&5
+ if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+ else
+ cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
++if { (eval echo configure:18420: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+ rm -rf conftest*
+ eval "ac_cv_func_$ac_func=yes"
+ else
+@@ -18418,7 +18447,7 @@
+ unset ac_cv_lib_rt___nanosleep
+ unset found
+ echo $ac_n "checking for nanosleep in -lrt""... $ac_c" 1>&6
+-echo "configure:18422: checking for nanosleep in -lrt" >&5
++echo "configure:18451: checking for nanosleep in -lrt" >&5
+ ac_lib_var=`echo rt'_'nanosleep | sed 'y%./+-%__p_%'`
+ if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+@@ -18426,7 +18455,7 @@
+ ac_save_LIBS="$LIBS"
+ LIBS="-lrt $LIBS"
+ cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
++if { (eval echo configure:18470: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+ rm -rf conftest*
+ eval "ac_cv_lib_$ac_lib_var=yes"
+ else
+@@ -18457,7 +18486,7 @@
+ echo "$ac_t""no" 1>&6
+
+ echo $ac_n "checking for __nanosleep in -lrt""... $ac_c" 1>&6
+-echo "configure:18461: checking for __nanosleep in -lrt" >&5
++echo "configure:18490: checking for __nanosleep in -lrt" >&5
+ ac_lib_var=`echo rt'_'__nanosleep | sed 'y%./+-%__p_%'`
+ if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+@@ -18465,7 +18494,7 @@
+ ac_save_LIBS="$LIBS"
+ LIBS="-lrt $LIBS"
+ cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
++if { (eval echo configure:18509: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+ rm -rf conftest*
+ eval "ac_cv_lib_$ac_lib_var=yes"
+ else
+@@ -18508,11 +18537,11 @@
+ found=no
+ else
+ cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
++if { (eval echo configure:18545: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
+ then
+ found=yes
+ else
+@@ -18556,25 +18585,25 @@
+
+
+ echo $ac_n "checking for getaddrinfo""... $ac_c" 1>&6
+-echo "configure:18560: checking for getaddrinfo" >&5
++echo "configure:18589: checking for getaddrinfo" >&5
+ if eval "test \"`echo '$''{'ac_cv_func_getaddrinfo'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+ else
+ cat > conftest.$ac_ext <
+ int main() {
+ struct addrinfo *g,h;g=&h;getaddrinfo("","",g,&g);
+ ; return 0; }
+ EOF
+-if { (eval echo configure:18572: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
++if { (eval echo configure:18601: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+ rm -rf conftest*
+ if test "$cross_compiling" = yes; then
+ ac_cv_func_getaddrinfo=no
+ else
+ cat > conftest.$ac_ext <
+@@ -18614,7 +18643,7 @@
+ }
+
+ EOF
+-if { (eval echo configure:18618: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
++if { (eval echo configure:18647: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
+ then
+ ac_cv_func_getaddrinfo=yes
+ else
+@@ -18646,12 +18675,12 @@
+ for ac_func in strlcat strlcpy getopt
+ do
+ echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
+-echo "configure:18650: checking for $ac_func" >&5
++echo "configure:18679: checking for $ac_func" >&5
+ if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+ else
+ cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
++if { (eval echo configure:18707: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+ rm -rf conftest*
+ eval "ac_cv_func_$ac_func=yes"
+ else
+@@ -18701,7 +18730,7 @@
+
+
+ echo $ac_n "checking whether utime accepts a null argument""... $ac_c" 1>&6
+-echo "configure:18705: checking whether utime accepts a null argument" >&5
++echo "configure:18734: checking whether utime accepts a null argument" >&5
+ if eval "test \"`echo '$''{'ac_cv_func_utime_null'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+ else
+@@ -18711,7 +18740,7 @@
+ ac_cv_func_utime_null=no
+ else
+ cat > conftest.$ac_ext <
+ #include
+@@ -18722,7 +18751,7 @@
+ && t.st_mtime - s.st_mtime < 120));
+ }
+ EOF
+-if { (eval echo configure:18726: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
++if { (eval echo configure:18755: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
+ then
+ ac_cv_func_utime_null=yes
+ else
+@@ -18748,19 +18777,19 @@
+ # The Ultrix 4.2 mips builtin alloca declared by alloca.h only works
+ # for constant arguments. Useless!
+ echo $ac_n "checking for working alloca.h""... $ac_c" 1>&6
+-echo "configure:18752: checking for working alloca.h" >&5
++echo "configure:18781: checking for working alloca.h" >&5
+ if eval "test \"`echo '$''{'ac_cv_header_alloca_h'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+ else
+ cat > conftest.$ac_ext <
+ int main() {
+ char *p = alloca(2 * sizeof(int));
+ ; return 0; }
+ EOF
+-if { (eval echo configure:18764: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
++if { (eval echo configure:18793: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+ rm -rf conftest*
+ ac_cv_header_alloca_h=yes
+ else
+@@ -18781,12 +18810,12 @@
+ fi
+
+ echo $ac_n "checking for alloca""... $ac_c" 1>&6
+-echo "configure:18785: checking for alloca" >&5
++echo "configure:18814: checking for alloca" >&5
+ if eval "test \"`echo '$''{'ac_cv_func_alloca_works'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+ else
+ cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
++if { (eval echo configure:18847: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+ rm -rf conftest*
+ ac_cv_func_alloca_works=yes
+ else
+@@ -18846,12 +18875,12 @@
+
+
+ echo $ac_n "checking whether alloca needs Cray hooks""... $ac_c" 1>&6
+-echo "configure:18850: checking whether alloca needs Cray hooks" >&5
++echo "configure:18879: checking whether alloca needs Cray hooks" >&5
+ if eval "test \"`echo '$''{'ac_cv_os_cray'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+ else
+ cat > conftest.$ac_ext <&6
+-echo "configure:18880: checking for $ac_func" >&5
++echo "configure:18909: checking for $ac_func" >&5
+ if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+ else
+ cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
++if { (eval echo configure:18937: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+ rm -rf conftest*
+ eval "ac_cv_func_$ac_func=yes"
+ else
+@@ -18931,7 +18960,7 @@
+ fi
+
+ echo $ac_n "checking stack direction for C alloca""... $ac_c" 1>&6
+-echo "configure:18935: checking stack direction for C alloca" >&5
++echo "configure:18964: checking stack direction for C alloca" >&5
+ if eval "test \"`echo '$''{'ac_cv_c_stack_direction'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+ else
+@@ -18939,7 +18968,7 @@
+ ac_cv_c_stack_direction=0
+ else
+ cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
++if { (eval echo configure:18991: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
+ then
+ ac_cv_c_stack_direction=1
+ else
+@@ -18981,13 +19010,13 @@
+
+
+ echo $ac_n "checking for declared timezone""... $ac_c" 1>&6
+-echo "configure:18985: checking for declared timezone" >&5
++echo "configure:19014: checking for declared timezone" >&5
+ if eval "test \"`echo '$''{'ac_cv_declared_timezone'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+ else
+
+ cat > conftest.$ac_ext <
+@@ -19002,7 +19031,7 @@
+
+ ; return 0; }
+ EOF
+-if { (eval echo configure:19006: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
++if { (eval echo configure:19035: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+ rm -rf conftest*
+
+ ac_cv_declared_timezone=yes
+@@ -19028,7 +19057,7 @@
+
+
+ echo $ac_n "checking for type of reentrant time-related functions""... $ac_c" 1>&6
+-echo "configure:19032: checking for type of reentrant time-related functions" >&5
++echo "configure:19061: checking for type of reentrant time-related functions" >&5
+ if eval "test \"`echo '$''{'ac_cv_time_r_type'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+ else
+@@ -19039,7 +19068,7 @@
+
+ else
+ cat > conftest.$ac_ext <
+@@ -19057,7 +19086,7 @@
+ }
+
+ EOF
+-if { (eval echo configure:19061: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
++if { (eval echo configure:19090: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
+ then
+
+ ac_cv_time_r_type=hpux
+@@ -19073,7 +19102,7 @@
+
+ else
+ cat > conftest.$ac_ext <
+@@ -19089,7 +19118,7 @@
+ }
+
+ EOF
+-if { (eval echo configure:19093: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
++if { (eval echo configure:19122: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
+ then
+
+ ac_cv_time_r_type=irix
+@@ -19127,12 +19156,12 @@
+
+
+ echo $ac_n "checking for readdir_r""... $ac_c" 1>&6
+-echo "configure:19131: checking for readdir_r" >&5
++echo "configure:19160: checking for readdir_r" >&5
+ if eval "test \"`echo '$''{'ac_cv_func_readdir_r'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+ else
+ cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
++if { (eval echo configure:19188: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+ rm -rf conftest*
+ eval "ac_cv_func_readdir_r=yes"
+ else
+@@ -19177,7 +19206,7 @@
+
+ if test "$ac_cv_func_readdir_r" = "yes"; then
+ echo $ac_n "checking for type of readdir_r""... $ac_c" 1>&6
+-echo "configure:19181: checking for type of readdir_r" >&5
++echo "configure:19210: checking for type of readdir_r" >&5
+ if eval "test \"`echo '$''{'ac_cv_what_readdir_r'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+ else
+@@ -19188,7 +19217,7 @@
+
+ else
+ cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
++if { (eval echo configure:19246: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
+ then
+
+ ac_cv_what_readdir_r=POSIX
+@@ -19224,7 +19253,7 @@
+ rm -fr conftest*
+
+ cat > conftest.$ac_ext <&5; (eval $ac_try) 2>&5; }
++{ (eval echo configure:19267: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
+ ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
+ if test -z "$ac_err"; then
+ rm -rf conftest*
+@@ -19276,12 +19305,12 @@
+
+
+ echo $ac_n "checking for in_addr_t""... $ac_c" 1>&6
+-echo "configure:19280: checking for in_addr_t" >&5
++echo "configure:19309: checking for in_addr_t" >&5
+ if eval "test \"`echo '$''{'ac_cv_type_in_addr_t'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+ else
+ cat > conftest.$ac_ext <
+ #if STDC_HEADERS
+@@ -19315,12 +19344,12 @@
+ for ac_func in crypt_r
+ do
+ echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
+-echo "configure:19319: checking for $ac_func" >&5
++echo "configure:19348: checking for $ac_func" >&5
+ if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+ else
+ cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
++if { (eval echo configure:19376: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+ rm -rf conftest*
+ eval "ac_cv_func_$ac_func=yes"
+ else
+@@ -19371,14 +19400,14 @@
+ if test "x$php_crypt_r" = "x1"; then
+
+ echo $ac_n "checking which data struct is used by crypt_r""... $ac_c" 1>&6
+-echo "configure:19375: checking which data struct is used by crypt_r" >&5
++echo "configure:19404: checking which data struct is used by crypt_r" >&5
+ if eval "test \"`echo '$''{'php_cv_crypt_r_style'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+ else
+
+ php_cv_crypt_r_style=none
+ cat > conftest.$ac_ext <&5; (eval $ac_compile) 2>&5; }; then
++if { (eval echo configure:19424: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+ rm -rf conftest*
+ php_cv_crypt_r_style=cryptd
+ else
+@@ -19402,7 +19431,7 @@
+
+ if test "$php_cv_crypt_r_style" = "none"; then
+ cat > conftest.$ac_ext <&5; (eval $ac_compile) 2>&5; }; then
++if { (eval echo configure:19448: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+ rm -rf conftest*
+ php_cv_crypt_r_style=struct_crypt_data
+ else
+@@ -19427,7 +19456,7 @@
+
+ if test "$php_cv_crypt_r_style" = "none"; then
+ cat > conftest.$ac_ext <&5; (eval $ac_compile) 2>&5; }; then
++if { (eval echo configure:19474: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+ rm -rf conftest*
+ php_cv_crypt_r_style=struct_crypt_data_gnu_source
+ else
+@@ -19500,7 +19529,7 @@
+ php_enable_gcov=no
+
+ echo $ac_n "checking whether to include gcov symbols""... $ac_c" 1>&6
+-echo "configure:19504: checking whether to include gcov symbols" >&5
++echo "configure:19533: checking whether to include gcov symbols" >&5
+ # Check whether --enable-gcov or --disable-gcov was given.
+ if test "${enable_gcov+set}" = set; then
+ enableval="$enable_gcov"
+@@ -19539,7 +19568,7 @@
+ # Extract the first word of "lcov", so it can be a program name with args.
+ set dummy lcov; ac_word=$2
+ echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
+-echo "configure:19543: checking for $ac_word" >&5
++echo "configure:19572: checking for $ac_word" >&5
+ if eval "test \"`echo '$''{'ac_cv_prog_LTP'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+ else
+@@ -19568,7 +19597,7 @@
+ # Extract the first word of "genhtml", so it can be a program name with args.
+ set dummy genhtml; ac_word=$2
+ echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
+-echo "configure:19572: checking for $ac_word" >&5
++echo "configure:19601: checking for $ac_word" >&5
+ if eval "test \"`echo '$''{'ac_cv_prog_LTP_GENHTML'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+ else
+@@ -19603,7 +19632,7 @@
+
+ if test "$LTP"; then
+ echo $ac_n "checking for ltp version""... $ac_c" 1>&6
+-echo "configure:19607: checking for ltp version" >&5
++echo "configure:19636: checking for ltp version" >&5
+ if eval "test \"`echo '$''{'php_cv_ltp_version'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+ else
+@@ -19660,7 +19689,7 @@
+ php_enable_debug=no
+
+ echo $ac_n "checking whether to include debugging symbols""... $ac_c" 1>&6
+-echo "configure:19664: checking whether to include debugging symbols" >&5
++echo "configure:19693: checking whether to include debugging symbols" >&5
+ # Check whether --enable-debug or --disable-debug was given.
+ if test "${enable_debug+set}" = set; then
+ enableval="$enable_debug"
+@@ -19708,7 +19737,7 @@
+ php_with_layout=PHP
+
+ echo $ac_n "checking layout of installed files""... $ac_c" 1>&6
+-echo "configure:19712: checking layout of installed files" >&5
++echo "configure:19741: checking layout of installed files" >&5
+ # Check whether --with-layout or --without-layout was given.
+ if test "${with_layout+set}" = set; then
+ withval="$with_layout"
+@@ -19740,7 +19769,7 @@
+ php_with_config_file_path=DEFAULT
+
+ echo $ac_n "checking path to configuration file""... $ac_c" 1>&6
+-echo "configure:19744: checking path to configuration file" >&5
++echo "configure:19773: checking path to configuration file" >&5
+ # Check whether --with-config-file-path or --without-config-file-path was given.
+ if test "${with_config_file_path+set}" = set; then
+ withval="$with_config_file_path"
+@@ -19771,7 +19800,7 @@
+ fi
+
+ echo $ac_n "checking where to scan for configuration files""... $ac_c" 1>&6
+-echo "configure:19775: checking where to scan for configuration files" >&5
++echo "configure:19804: checking where to scan for configuration files" >&5
+
+ php_with_config_file_scan_dir=DEFAULT
+
+@@ -19804,7 +19833,7 @@
+ php_enable_safe_mode=no
+
+ echo $ac_n "checking whether to enable safe mode by default""... $ac_c" 1>&6
+-echo "configure:19808: checking whether to enable safe mode by default" >&5
++echo "configure:19837: checking whether to enable safe mode by default" >&5
+ # Check whether --enable-safe-mode or --disable-safe-mode was given.
+ if test "${enable_safe_mode+set}" = set; then
+ enableval="$enable_safe_mode"
+@@ -19836,7 +19865,7 @@
+ fi
+
+ echo $ac_n "checking for safe mode exec dir""... $ac_c" 1>&6
+-echo "configure:19840: checking for safe mode exec dir" >&5
++echo "configure:19869: checking for safe mode exec dir" >&5
+
+ php_with_exec_dir=no
+
+@@ -19877,7 +19906,7 @@
+ php_enable_sigchild=no
+
+ echo $ac_n "checking whether to enable PHP's own SIGCHLD handler""... $ac_c" 1>&6
+-echo "configure:19881: checking whether to enable PHP's own SIGCHLD handler" >&5
++echo "configure:19910: checking whether to enable PHP's own SIGCHLD handler" >&5
+ # Check whether --enable-sigchild or --disable-sigchild was given.
+ if test "${enable_sigchild+set}" = set; then
+ enableval="$enable_sigchild"
+@@ -19912,7 +19941,7 @@
+ php_enable_magic_quotes=no
+
+ echo $ac_n "checking whether to enable magic quotes by default""... $ac_c" 1>&6
+-echo "configure:19916: checking whether to enable magic quotes by default" >&5
++echo "configure:19945: checking whether to enable magic quotes by default" >&5
+ # Check whether --enable-magic-quotes or --disable-magic-quotes was given.
+ if test "${enable_magic_quotes+set}" = set; then
+ enableval="$enable_magic_quotes"
+@@ -19947,7 +19976,7 @@
+ php_enable_libgcc=no
+
+ echo $ac_n "checking whether to explicitly link against libgcc""... $ac_c" 1>&6
+-echo "configure:19951: checking whether to explicitly link against libgcc" >&5
++echo "configure:19980: checking whether to explicitly link against libgcc" >&5
+ # Check whether --enable-libgcc or --disable-libgcc was given.
+ if test "${enable_libgcc+set}" = set; then
+ enableval="$enable_libgcc"
+@@ -20024,7 +20053,7 @@
+ php_enable_short_tags=yes
+
+ echo $ac_n "checking whether to enable short tags by default""... $ac_c" 1>&6
+-echo "configure:20028: checking whether to enable short tags by default" >&5
++echo "configure:20057: checking whether to enable short tags by default" >&5
+ # Check whether --enable-short-tags or --disable-short-tags was given.
+ if test "${enable_short_tags+set}" = set; then
+ enableval="$enable_short_tags"
+@@ -20059,7 +20088,7 @@
+ php_enable_dmalloc=no
+
+ echo $ac_n "checking whether to enable dmalloc""... $ac_c" 1>&6
+-echo "configure:20063: checking whether to enable dmalloc" >&5
++echo "configure:20092: checking whether to enable dmalloc" >&5
+ # Check whether --enable-dmalloc or --disable-dmalloc was given.
+ if test "${enable_dmalloc+set}" = set; then
+ enableval="$enable_dmalloc"
+@@ -20080,7 +20109,7 @@
+
+ if test "$PHP_DMALLOC" = "yes"; then
+ echo $ac_n "checking for dmalloc_error in -ldmalloc""... $ac_c" 1>&6
+-echo "configure:20084: checking for dmalloc_error in -ldmalloc" >&5
++echo "configure:20113: checking for dmalloc_error in -ldmalloc" >&5
+ ac_lib_var=`echo dmalloc'_'dmalloc_error | sed 'y%./+-%__p_%'`
+ if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+@@ -20088,7 +20117,7 @@
+ ac_save_LIBS="$LIBS"
+ LIBS="-ldmalloc $LIBS"
+ cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
++if { (eval echo configure:20132: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+ rm -rf conftest*
+ eval "ac_cv_lib_$ac_lib_var=yes"
+ else
+@@ -20144,7 +20173,7 @@
+ php_enable_ipv6=yes
+
+ echo $ac_n "checking whether to enable IPv6 support""... $ac_c" 1>&6
+-echo "configure:20148: checking whether to enable IPv6 support" >&5
++echo "configure:20177: checking whether to enable IPv6 support" >&5
+ # Check whether --enable-ipv6 or --disable-ipv6 was given.
+ if test "${enable_ipv6+set}" = set; then
+ enableval="$enable_ipv6"
+@@ -20171,7 +20200,7 @@
+ fi
+
+ echo $ac_n "checking how big to make fd sets""... $ac_c" 1>&6
+-echo "configure:20175: checking how big to make fd sets" >&5
++echo "configure:20204: checking how big to make fd sets" >&5
+
+ php_enable_fd_setsize=no
+
+@@ -20239,7 +20268,7 @@
+
+
+ echo $ac_n "checking size of long""... $ac_c" 1>&6
+-echo "configure:20243: checking size of long" >&5
++echo "configure:20272: checking size of long" >&5
+ if eval "test \"`echo '$''{'ac_cv_sizeof_long'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+ else
+@@ -20247,18 +20276,19 @@
+ ac_cv_sizeof_long=8
+ else
+ cat > conftest.$ac_ext <
+-int main()
++#include
++main()
+ {
+ FILE *f=fopen("conftestval", "w");
+- if (!f) return(1);
++ if (!f) exit(1);
+ fprintf(f, "%d\n", sizeof(long));
+- return(0);
++ exit(0);
+ }
+ EOF
+-if { (eval echo configure:20262: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
++if { (eval echo configure:20292: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
+ then
+ ac_cv_sizeof_long=`cat conftestval`
+ else
+@@ -20278,7 +20308,7 @@
+
+
+ echo $ac_n "checking size of int""... $ac_c" 1>&6
+-echo "configure:20282: checking size of int" >&5
++echo "configure:20312: checking size of int" >&5
+ if eval "test \"`echo '$''{'ac_cv_sizeof_int'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+ else
+@@ -20286,18 +20316,19 @@
+ ac_cv_sizeof_int=4
+ else
+ cat > conftest.$ac_ext <
+-int main()
++#include
++main()
+ {
+ FILE *f=fopen("conftestval", "w");
+- if (!f) return(1);
++ if (!f) exit(1);
+ fprintf(f, "%d\n", sizeof(int));
+- return(0);
++ exit(0);
+ }
+ EOF
+-if { (eval echo configure:20301: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
++if { (eval echo configure:20332: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
+ then
+ ac_cv_sizeof_int=`cat conftestval`
+ else
+@@ -20318,13 +20349,13 @@
+
+
+ echo $ac_n "checking for int32_t""... $ac_c" 1>&6
+-echo "configure:20322: checking for int32_t" >&5
++echo "configure:20353: checking for int32_t" >&5
+ if eval "test \"`echo '$''{'ac_cv_int_type_int32_t'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+ else
+
+ cat > conftest.$ac_ext <&5; (eval $ac_compile) 2>&5; }; then
++if { (eval echo configure:20378: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+ rm -rf conftest*
+ ac_cv_int_type_int32_t=yes
+ else
+@@ -20366,13 +20397,13 @@
+
+
+ echo $ac_n "checking for uint32_t""... $ac_c" 1>&6
+-echo "configure:20370: checking for uint32_t" >&5
++echo "configure:20401: checking for uint32_t" >&5
+ if eval "test \"`echo '$''{'ac_cv_int_type_uint32_t'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+ else
+
+ cat > conftest.$ac_ext <&5; (eval $ac_compile) 2>&5; }; then
++if { (eval echo configure:20426: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+ rm -rf conftest*
+ ac_cv_int_type_uint32_t=yes
+ else
+@@ -20423,17 +20454,17 @@
+ do
+ ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'`
+ echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6
+-echo "configure:20427: checking for $ac_hdr" >&5
++echo "configure:20458: checking for $ac_hdr" >&5
+ if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+ else
+ cat > conftest.$ac_ext <
+ EOF
+ ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
+-{ (eval echo configure:20437: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
++{ (eval echo configure:20468: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
+ ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
+ if test -z "$ac_err"; then
+ rm -rf conftest*
+@@ -20463,12 +20494,12 @@
+ for ac_func in strtoll atoll strftime
+ do
+ echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
+-echo "configure:20467: checking for $ac_func" >&5
++echo "configure:20498: checking for $ac_func" >&5
+ if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+ else
+ cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
++if { (eval echo configure:20526: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+ rm -rf conftest*
+ eval "ac_cv_func_$ac_func=yes"
+ else
+@@ -20953,7 +20984,7 @@
+ esac
+
+ echo $ac_n "checking which regex library to use""... $ac_c" 1>&6
+-echo "configure:20957: checking which regex library to use" >&5
++echo "configure:20988: checking which regex library to use" >&5
+ echo "$ac_t""$REGEX_TYPE" 1>&6
+
+ if test "$REGEX_TYPE" = "php"; then
+@@ -21330,13 +21361,13 @@
+ EOF
+
+ echo $ac_n "checking whether field re_magic exists in struct regex_t""... $ac_c" 1>&6
+-echo "configure:21334: checking whether field re_magic exists in struct regex_t" >&5
++echo "configure:21365: checking whether field re_magic exists in struct regex_t" >&5
+ if eval "test \"`echo '$''{'ac_cv_regex_t_re_magic'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+ else
+
+ cat > conftest.$ac_ext <
+ #include
+@@ -21344,7 +21375,7 @@
+ regex_t rt; rt.re_magic;
+ ; return 0; }
+ EOF
+-if { (eval echo configure:21348: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
++if { (eval echo configure:21379: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+ rm -rf conftest*
+ ac_cv_regex_t_re_magic=yes
+ else
+@@ -21370,7 +21401,7 @@
+ php_enable_libxml=yes
+
+ echo $ac_n "checking whether to enable LIBXML support""... $ac_c" 1>&6
+-echo "configure:21374: checking whether to enable LIBXML support" >&5
++echo "configure:21405: checking whether to enable LIBXML support" >&5
+ # Check whether --enable-libxml or --disable-libxml was given.
+ if test "${enable_libxml+set}" = set; then
+ enableval="$enable_libxml"
+@@ -21415,7 +21446,7 @@
+ php_with_libxml_dir=no
+
+ echo $ac_n "checking libxml2 install dir""... $ac_c" 1>&6
+-echo "configure:21419: checking libxml2 install dir" >&5
++echo "configure:21450: checking libxml2 install dir" >&5
+ # Check whether --with-libxml-dir or --without-libxml-dir was given.
+ if test "${with_libxml_dir+set}" = set; then
+ withval="$with_libxml_dir"
+@@ -21441,7 +21472,7 @@
+
+
+ echo $ac_n "checking for xml2-config path""... $ac_c" 1>&6
+-echo "configure:21445: checking for xml2-config path" >&5
++echo "configure:21476: checking for xml2-config path" >&5
+ if eval "test \"`echo '$''{'ac_cv_php_xml2_config_path'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+ else
+@@ -21599,7 +21630,7 @@
+
+
+ echo $ac_n "checking whether libxml build works""... $ac_c" 1>&6
+-echo "configure:21603: checking whether libxml build works" >&5
++echo "configure:21634: checking whether libxml build works" >&5
+ if eval "test \"`echo '$''{'php_cv_libxml_build_works'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+ else
+@@ -21615,7 +21646,7 @@
+
+ else
+ cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
++if { (eval echo configure:21661: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
+ then
+
+ LIBS=$old_LIBS
+@@ -21991,7 +22022,7 @@
+ php_with_openssl=no
+
+ echo $ac_n "checking for OpenSSL support""... $ac_c" 1>&6
+-echo "configure:21995: checking for OpenSSL support" >&5
++echo "configure:22026: checking for OpenSSL support" >&5
+ # Check whether --with-openssl or --without-openssl was given.
+ if test "${with_openssl+set}" = set; then
+ withval="$with_openssl"
+@@ -22035,7 +22066,7 @@
+ php_with_kerberos=no
+
+ echo $ac_n "checking for Kerberos support""... $ac_c" 1>&6
+-echo "configure:22039: checking for Kerberos support" >&5
++echo "configure:22070: checking for Kerberos support" >&5
+ # Check whether --with-kerberos or --without-kerberos was given.
+ if test "${with_kerberos+set}" = set; then
+ withval="$with_kerberos"
+@@ -22361,7 +22392,7 @@
+ # Extract the first word of "krb5-config", so it can be a program name with args.
+ set dummy krb5-config; ac_word=$2
+ echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
+-echo "configure:22365: checking for $ac_word" >&5
++echo "configure:22396: checking for $ac_word" >&5
+ if eval "test \"`echo '$''{'ac_cv_path_KRB5_CONFIG'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+ else
+@@ -22721,7 +22752,7 @@
+ fi
+
+ echo $ac_n "checking for DSA_get_default_method in -lssl""... $ac_c" 1>&6
+-echo "configure:22725: checking for DSA_get_default_method in -lssl" >&5
++echo "configure:22756: checking for DSA_get_default_method in -lssl" >&5
+ ac_lib_var=`echo ssl'_'DSA_get_default_method | sed 'y%./+-%__p_%'`
+ if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+@@ -22729,7 +22760,7 @@
+ ac_save_LIBS="$LIBS"
+ LIBS="-lssl $LIBS"
+ cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
++if { (eval echo configure:22775: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+ rm -rf conftest*
+ eval "ac_cv_lib_$ac_lib_var=yes"
+ else
+@@ -22782,7 +22813,7 @@
+ # Extract the first word of "pkg-config", so it can be a program name with args.
+ set dummy pkg-config; ac_word=$2
+ echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
+-echo "configure:22786: checking for $ac_word" >&5
++echo "configure:22817: checking for $ac_word" >&5
+ if eval "test \"`echo '$''{'ac_cv_path_PKG_CONFIG'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+ else
+@@ -22987,9 +23018,9 @@
+ old_CPPFLAGS=$CPPFLAGS
+ CPPFLAGS=-I$OPENSSL_INCDIR
+ echo $ac_n "checking for OpenSSL version""... $ac_c" 1>&6
+-echo "configure:22991: checking for OpenSSL version" >&5
++echo "configure:23022: checking for OpenSSL version" >&5
+ cat > conftest.$ac_ext <
+@@ -23144,7 +23175,7 @@
+ done
+
+ echo $ac_n "checking for CRYPTO_free in -lcrypto""... $ac_c" 1>&6
+-echo "configure:23148: checking for CRYPTO_free in -lcrypto" >&5
++echo "configure:23179: checking for CRYPTO_free in -lcrypto" >&5
+ ac_lib_var=`echo crypto'_'CRYPTO_free | sed 'y%./+-%__p_%'`
+ if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+@@ -23152,7 +23183,7 @@
+ ac_save_LIBS="$LIBS"
+ LIBS="-lcrypto $LIBS"
+ cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
++if { (eval echo configure:23198: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+ rm -rf conftest*
+ eval "ac_cv_lib_$ac_lib_var=yes"
+ else
+@@ -23320,7 +23351,7 @@
+ done
+
+ echo $ac_n "checking for SSL_CTX_set_ssl_version in -lssl""... $ac_c" 1>&6
+-echo "configure:23324: checking for SSL_CTX_set_ssl_version in -lssl" >&5
++echo "configure:23355: checking for SSL_CTX_set_ssl_version in -lssl" >&5
+ ac_lib_var=`echo ssl'_'SSL_CTX_set_ssl_version | sed 'y%./+-%__p_%'`
+ if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+@@ -23328,7 +23359,7 @@
+ ac_save_LIBS="$LIBS"
+ LIBS="-lssl $LIBS"
+ cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
++if { (eval echo configure:23374: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+ rm -rf conftest*
+ eval "ac_cv_lib_$ac_lib_var=yes"
+ else
+@@ -23481,7 +23512,7 @@
+
+ if test "$PHP_PCRE_REGEX" != "yes" && test "$PHP_PCRE_REGEX" != "no"; then
+ echo $ac_n "checking for PCRE headers location""... $ac_c" 1>&6
+-echo "configure:23485: checking for PCRE headers location" >&5
++echo "configure:23516: checking for PCRE headers location" >&5
+ for i in $PHP_PCRE_REGEX $PHP_PCRE_REGEX/include $PHP_PCRE_REGEX/include/pcre $PHP_PCRE_REGEX/local/include; do
+ test -f $i/pcre.h && PCRE_INCDIR=$i
+ done
+@@ -23492,7 +23523,7 @@
+ echo "$ac_t""$PCRE_INCDIR" 1>&6
+
+ echo $ac_n "checking for PCRE library location""... $ac_c" 1>&6
+-echo "configure:23496: checking for PCRE library location" >&5
++echo "configure:23527: checking for PCRE library location" >&5
+ for j in $PHP_PCRE_REGEX $PHP_PCRE_REGEX/$PHP_LIBDIR; do
+ test -f $j/libpcre.a || test -f $j/libpcre.$SHLIB_SUFFIX_NAME && PCRE_LIBDIR=$j
+ done
+@@ -23914,7 +23945,7 @@
+
+ else
+ echo $ac_n "checking for PCRE library to use""... $ac_c" 1>&6
+-echo "configure:23918: checking for PCRE library to use" >&5
++echo "configure:23949: checking for PCRE library to use" >&5
+ echo "$ac_t""bundled" 1>&6
+ pcrelib_sources="pcrelib/pcre_chartables.c pcrelib/pcre_ucd.c \
+ pcrelib/pcre_compile.c pcrelib/pcre_config.c pcrelib/pcre_exec.c \
+@@ -24251,7 +24282,7 @@
+ php_with_sqlite3=yes
+
+ echo $ac_n "checking whether to enable the SQLite3 extension""... $ac_c" 1>&6
+-echo "configure:24255: checking whether to enable the SQLite3 extension" >&5
++echo "configure:24286: checking whether to enable the SQLite3 extension" >&5
+ # Check whether --with-sqlite3 or --without-sqlite3 was given.
+ if test "${with_sqlite3+set}" = set; then
+ withval="$with_sqlite3"
+@@ -24306,7 +24337,7 @@
+
+ if test $PHP_SQLITE3 != "yes"; then
+ echo $ac_n "checking for sqlite3 files in default path""... $ac_c" 1>&6
+-echo "configure:24310: checking for sqlite3 files in default path" >&5
++echo "configure:24341: checking for sqlite3 files in default path" >&5
+ for i in $PHP_SQLITE3 /usr/local /usr; do
+ if test -r $i/include/sqlite3.h; then
+ SQLITE3_DIR=$i
+@@ -24321,7 +24352,7 @@
+ fi
+
+ echo $ac_n "checking for SQLite 3.3.9+""... $ac_c" 1>&6
+-echo "configure:24325: checking for SQLite 3.3.9+" >&5
++echo "configure:24356: checking for SQLite 3.3.9+" >&5
+
+ save_old_LDFLAGS=$LDFLAGS
+ ac_stuff="
+@@ -24420,7 +24451,7 @@
+ done
+
+ echo $ac_n "checking for sqlite3_prepare_v2 in -lsqlite3""... $ac_c" 1>&6
+-echo "configure:24424: checking for sqlite3_prepare_v2 in -lsqlite3" >&5
++echo "configure:24455: checking for sqlite3_prepare_v2 in -lsqlite3" >&5
+ ac_lib_var=`echo sqlite3'_'sqlite3_prepare_v2 | sed 'y%./+-%__p_%'`
+ if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+@@ -24428,7 +24459,7 @@
+ ac_save_LIBS="$LIBS"
+ LIBS="-lsqlite3 $LIBS"
+ cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
++if { (eval echo configure:24474: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+ rm -rf conftest*
+ eval "ac_cv_lib_$ac_lib_var=yes"
+ else
+@@ -24699,7 +24730,7 @@
+ done
+
+ echo $ac_n "checking for sqlite3_key in -lsqlite3""... $ac_c" 1>&6
+-echo "configure:24703: checking for sqlite3_key in -lsqlite3" >&5
++echo "configure:24734: checking for sqlite3_key in -lsqlite3" >&5
+ ac_lib_var=`echo sqlite3'_'sqlite3_key | sed 'y%./+-%__p_%'`
+ if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+@@ -24707,7 +24738,7 @@
+ ac_save_LIBS="$LIBS"
+ LIBS="-lsqlite3 $LIBS"
+ cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
++if { (eval echo configure:24753: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+ rm -rf conftest*
+ eval "ac_cv_lib_$ac_lib_var=yes"
+ else
+@@ -24850,7 +24881,7 @@
+ done
+
+ echo $ac_n "checking for sqlite3_load_extension in -lsqlite3""... $ac_c" 1>&6
+-echo "configure:24854: checking for sqlite3_load_extension in -lsqlite3" >&5
++echo "configure:24885: checking for sqlite3_load_extension in -lsqlite3" >&5
+ ac_lib_var=`echo sqlite3'_'sqlite3_load_extension | sed 'y%./+-%__p_%'`
+ if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+@@ -24858,7 +24889,7 @@
+ ac_save_LIBS="$LIBS"
+ LIBS="-lsqlite3 $LIBS"
+ cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
++if { (eval echo configure:24904: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+ rm -rf conftest*
+ eval "ac_cv_lib_$ac_lib_var=yes"
+ else
+@@ -24906,7 +24937,7 @@
+
+ else
+ echo $ac_n "checking bundled sqlite3 library""... $ac_c" 1>&6
+-echo "configure:24910: checking bundled sqlite3 library" >&5
++echo "configure:24941: checking bundled sqlite3 library" >&5
+ echo "$ac_t""yes" 1>&6
+
+ sqlite3_extra_sources="libsqlite/sqlite3.c"
+@@ -25262,7 +25293,7 @@
+ php_with_zlib=no
+
+ echo $ac_n "checking for ZLIB support""... $ac_c" 1>&6
+-echo "configure:25266: checking for ZLIB support" >&5
++echo "configure:25297: checking for ZLIB support" >&5
+ # Check whether --with-zlib or --without-zlib was given.
+ if test "${with_zlib+set}" = set; then
+ withval="$with_zlib"
+@@ -25306,7 +25337,7 @@
+ php_with_zlib_dir=no
+
+ echo $ac_n "checking if the location of ZLIB install directory is defined""... $ac_c" 1>&6
+-echo "configure:25310: checking if the location of ZLIB install directory is defined" >&5
++echo "configure:25341: checking if the location of ZLIB install directory is defined" >&5
+ # Check whether --with-zlib-dir or --without-zlib-dir was given.
+ if test "${with_zlib_dir+set}" = set; then
+ withval="$with_zlib_dir"
+@@ -25749,7 +25780,7 @@
+ done
+
+ echo $ac_n "checking for gzgets in -lz""... $ac_c" 1>&6
+-echo "configure:25753: checking for gzgets in -lz" >&5
++echo "configure:25784: checking for gzgets in -lz" >&5
+ ac_lib_var=`echo z'_'gzgets | sed 'y%./+-%__p_%'`
+ if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+@@ -25757,7 +25788,7 @@
+ ac_save_LIBS="$LIBS"
+ LIBS="-lz $LIBS"
+ cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
++if { (eval echo configure:25803: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+ rm -rf conftest*
+ eval "ac_cv_lib_$ac_lib_var=yes"
+ else
+@@ -25905,10 +25936,999 @@
+
+
+
++php_enable_apc=no
++
++echo $ac_n "checking whether to enable APC support""... $ac_c" 1>&6
++echo "configure:25943: checking whether to enable APC support" >&5
++# Check whether --enable-apc or --disable-apc was given.
++if test "${enable_apc+set}" = set; then
++ enableval="$enable_apc"
++ PHP_APC=$enableval
++else
++
++ PHP_APC=no
++ test "$PHP_ENABLE_ALL" && PHP_APC=$PHP_ENABLE_ALL
++
++fi
++
++
++
++ext_output="yes, shared"
++ext_shared=yes
++case $PHP_APC in
++shared,*)
++ PHP_APC=`echo "$PHP_APC"|$SED 's/^shared,//'`
++ ;;
++shared)
++ PHP_APC=yes
++ ;;
++no)
++ ext_output=no
++ ext_shared=no
++ ;;
++*)
++ ext_output=yes
++ ext_shared=no
++ ;;
++esac
++
++
++
++echo "$ac_t""$ext_output" 1>&6
++
++
++
++
++# Check whether --enable-apc-debug or --disable-apc-debug was given.
++if test "${enable_apc_debug+set}" = set; then
++ enableval="$enable_apc_debug"
++
++ PHP_APC_DEBUG=yes
++
++else
++
++ PHP_APC_DEBUG=no
++
++fi
++
++
++echo $ac_n "checking whether we should enable cache request file info""... $ac_c" 1>&6
++echo "configure:25997: checking whether we should enable cache request file info" >&5
++# Check whether --enable-apc-filehits or --disable-apc-filehits was given.
++if test "${enable_apc_filehits+set}" = set; then
++ enableval="$enable_apc_filehits"
++
++ PHP_APC_FILEHITS=$enableval
++ echo "$ac_t""$enableval" 1>&6
++
++else
++
++ PHP_APC_FILEHITS=no
++ echo "$ac_t""no" 1>&6
++
++fi
++
++
++echo $ac_n "checking whether we should use mmap""... $ac_c" 1>&6
++echo "configure:26014: checking whether we should use mmap" >&5
++# Check whether --enable-apc-mmap or --disable-apc-mmap was given.
++if test "${enable_apc_mmap+set}" = set; then
++ enableval="$enable_apc_mmap"
++
++ PHP_APC_MMAP=$enableval
++ echo "$ac_t""$enableval" 1>&6
++
++else
++
++ PHP_APC_MMAP=yes
++ echo "$ac_t""yes" 1>&6
++
++fi
++
++
++echo $ac_n "checking whether we should use semaphore locking instead of fcntl""... $ac_c" 1>&6
++echo "configure:26031: checking whether we should use semaphore locking instead of fcntl" >&5
++# Check whether --enable-apc-sem or --disable-apc-sem was given.
++if test "${enable_apc_sem+set}" = set; then
++ enableval="$enable_apc_sem"
++
++ PHP_APC_SEM=$enableval
++ echo "$ac_t""$enableval" 1>&6
++
++else
++
++ PHP_APC_SEM=no
++ echo "$ac_t""no" 1>&6
++
++fi
++
++
++echo $ac_n "checking whether we should use pthread mutex locking""... $ac_c" 1>&6
++echo "configure:26048: checking whether we should use pthread mutex locking" >&5
++# Check whether --enable-apc-pthreadmutex or --disable-apc-pthreadmutex was given.
++if test "${enable_apc_pthreadmutex+set}" = set; then
++ enableval="$enable_apc_pthreadmutex"
++
++ PHP_APC_PTHREADMUTEX=$enableval
++ echo "$ac_t""$enableval" 1>&6
++
++else
++
++ PHP_APC_PTHREADMUTEX=yes
++ echo "$ac_t""yes" 1>&6
++
++fi
++
++
++if test "$PHP_APC_PTHREADMUTEX" != "no"; then
++ orig_LIBS="$LIBS"
++ LIBS="$LIBS -lpthread"
++ if test "$cross_compiling" = yes; then
++
++
++
++ case pthread in
++ c|c_r|pthread*) ;;
++ *)
++ LIBS="-lpthread $LIBS"
++ ;;
++ esac
++
++
++
++
++else
++ cat > conftest.$ac_ext <
++ #include
++ main() {
++ pthread_mutex_t mutex;
++ pthread_mutexattr_t attr;
++
++ if(pthread_mutexattr_init(&attr)) {
++ puts("Unable to initialize pthread attributes (pthread_mutexattr_init).");
++ return -1;
++ }
++ if(pthread_mutexattr_setpshared(&attr, PTHREAD_PROCESS_SHARED)) {
++ puts("Unable to set PTHREAD_PROCESS_SHARED (pthread_mutexattr_setpshared), your system may not support shared mutex's.");
++ return -1;
++ }
++ if(pthread_mutex_init(&mutex, &attr)) {
++ puts("Unable to initialize the mutex (pthread_mutex_init).");
++ return -1;
++ }
++ if(pthread_mutexattr_destroy(&attr)) {
++ puts("Unable to destroy mutex attributes (pthread_mutexattr_destroy).");
++ return -1;
++ }
++ if(pthread_mutex_destroy(&mutex)) {
++ puts("Unable to destroy mutex (pthread_mutex_destroy).");
++ return -1;
++ }
++
++ puts("pthread mutex's are supported!");
++ return 0;
++ }
++
++EOF
++if { (eval echo configure:26118: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
++then
++
++
++ case pthread in
++ c|c_r|pthread*) ;;
++ *)
++ LIBS="-lpthread $LIBS"
++ ;;
++ esac
++
++
++
++else
++ echo "configure: failed program was:" >&5
++ cat conftest.$ac_ext >&5
++ rm -fr conftest*
++ echo "configure: warning: It doesn't appear that pthread mutex's are supported on your system" 1>&2
++ PHP_APC_PTHREADMUTEX=no
++
++fi
++rm -fr conftest*
++fi
++
++ LIBS="$orig_LIBS"
++fi
++
++echo $ac_n "checking whether we should use spin locks""... $ac_c" 1>&6
++echo "configure:26146: checking whether we should use spin locks" >&5
++# Check whether --enable-apc-spinlocks or --disable-apc-spinlocks was given.
++if test "${enable_apc_spinlocks+set}" = set; then
++ enableval="$enable_apc_spinlocks"
++
++ PHP_APC_SPINLOCKS=$enableval
++ echo "$ac_t""$enableval" 1>&6
++
++else
++
++ PHP_APC_SPINLOCKS=no
++ echo "$ac_t""no" 1>&6
++
++fi
++
++
++echo $ac_n "checking whether we should enable memory protection""... $ac_c" 1>&6
++echo "configure:26163: checking whether we should enable memory protection" >&5
++# Check whether --enable-apc-memprotect or --disable-apc-memprotect was given.
++if test "${enable_apc_memprotect+set}" = set; then
++ enableval="$enable_apc_memprotect"
++
++ PHP_APC_MEMPROTECT=$enableval
++ echo "$ac_t""$enableval" 1>&6
++
++else
++
++ PHP_APC_MEMPROTECT=no
++ echo "$ac_t""no" 1>&6
++
++fi
++
++
++if test "$PHP_APC" != "no"; then
++ test "$PHP_APC_MMAP" != "no" && cat >> confdefs.h <<\EOF
++#define APC_MMAP 1
++EOF
++
++ test "$PHP_APC_FILEHITS" != "no" && cat >> confdefs.h <<\EOF
++#define APC_FILEHITS 1
++EOF
++
++
++ if test "$PHP_APC_DEBUG" != "no"; then
++ cat >> confdefs.h <<\EOF
++#define __DEBUG_APC__ 1
++EOF
++
++ fi
++
++ if test "$PHP_APC_SEM" != "no"; then
++ cat >> confdefs.h <<\EOF
++#define APC_SEM_LOCKS 1
++EOF
++
++ elif test "$PHP_APC_SPINLOCKS" != "no"; then
++ cat >> confdefs.h <<\EOF
++#define APC_SPIN_LOCKS 1
++EOF
++
++ elif test "$PHP_APC_PTHREADMUTEX" != "no"; then
++ cat >> confdefs.h <<\EOF
++#define APC_PTHREADMUTEX_LOCKS 1
++EOF
++
++ else
++ cat >> confdefs.h <<\EOF
++#define APC_FCNTL_LOCKS 1
++EOF
++
++ fi
++
++ if test "$PHP_APC_MEMPROTECT" != "no"; then
++ cat >> confdefs.h <<\EOF
++#define APC_MEMPROTECT 1
++EOF
++
++ fi
++
++ echo $ac_n "checking for zend_set_lookup_function_hook""... $ac_c" 1>&6
++echo "configure:26226: checking for zend_set_lookup_function_hook" >&5
++if eval "test \"`echo '$''{'php_cv_zend_set_lookup_function_hook'+set}'`\" = set"; then
++ echo $ac_n "(cached) $ac_c" 1>&6
++else
++
++ orig_cflags=$CFLAGS
++ CFLAGS="$INCLUDES $EXTRA_INCLUDES"
++ cat > conftest.$ac_ext <&5; (eval $ac_compile) 2>&5; }; then
++ rm -rf conftest*
++
++ php_cv_zend_set_lookup_function_hook=yes
++
++else
++ echo "configure: failed program was:" >&5
++ cat conftest.$ac_ext >&5
++ rm -rf conftest*
++
++ php_cv_zend_set_lookup_function_hook=no
++
++fi
++rm -f conftest*
++ CFLAGS=$orig_cflags
++
++fi
++
++echo "$ac_t""$php_cv_zend_set_lookup_function_hook" 1>&6
++ if test "$php_cv_zend_set_lookup_function_hook" = "yes"; then
++ cat >> confdefs.h <<\EOF
++#define APC_HAVE_LOOKUP_HOOKS 1
++EOF
++
++ else
++ cat >> confdefs.h <<\EOF
++#define APC_HAVE_LOOKUP_HOOKS 0
++EOF
++
++ fi
++
++ for ac_func in sigaction
++do
++echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
++echo "configure:26280: checking for $ac_func" >&5
++if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
++ echo $ac_n "(cached) $ac_c" 1>&6
++else
++ cat > conftest.$ac_ext <
++/* Override any gcc2 internal prototype to avoid an error. */
++/* We use char because int might match the return type of a gcc2
++ builtin and then its argument prototype would still apply. */
++char $ac_func();
++
++int main() {
++
++/* The GNU C library defines this for functions which it implements
++ to always fail with ENOSYS. Some functions are actually named
++ something starting with __ and the normal name is an alias. */
++#if defined (__stub_$ac_func) || defined (__stub___$ac_func)
++choke me
++#else
++$ac_func();
++#endif
++
++; return 0; }
++EOF
++if { (eval echo configure:26308: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
++ rm -rf conftest*
++ eval "ac_cv_func_$ac_func=yes"
++else
++ echo "configure: failed program was:" >&5
++ cat conftest.$ac_ext >&5
++ rm -rf conftest*
++ eval "ac_cv_func_$ac_func=no"
++fi
++rm -f conftest*
++fi
++
++if eval "test \"`echo '$ac_cv_func_'$ac_func`\" = yes"; then
++ echo "$ac_t""yes" 1>&6
++ ac_tr_func=HAVE_`echo $ac_func | tr 'abcdefghijklmnopqrstuvwxyz' 'ABCDEFGHIJKLMNOPQRSTUVWXYZ'`
++ cat >> confdefs.h <&6
++fi
++done
++
++ echo $ac_n "checking for union semun""... $ac_c" 1>&6
++echo "configure:26333: checking for union semun" >&5
++if eval "test \"`echo '$''{'php_cv_semun'+set}'`\" = set"; then
++ echo $ac_n "(cached) $ac_c" 1>&6
++else
++
++ cat > conftest.$ac_ext <
++#include
++#include
++
++int main() {
++union semun x; x.val=1
++; return 0; }
++EOF
++if { (eval echo configure:26350: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
++ rm -rf conftest*
++
++ php_cv_semun=yes
++
++else
++ echo "configure: failed program was:" >&5
++ cat conftest.$ac_ext >&5
++ rm -rf conftest*
++
++ php_cv_semun=no
++
++fi
++rm -f conftest*
++
++fi
++
++echo "$ac_t""$php_cv_semun" 1>&6
++ if test "$php_cv_semun" = "yes"; then
++ cat >> confdefs.h <<\EOF
++#define HAVE_SEMUN 1
++EOF
++
++ else
++ cat >> confdefs.h <<\EOF
++#define HAVE_SEMUN 0
++EOF
++
++ fi
++
++ echo $ac_n "checking whether we should enable valgrind support""... $ac_c" 1>&6
++echo "configure:26381: checking whether we should enable valgrind support" >&5
++ # Check whether --enable-valgrind-checks or --disable-valgrind-checks was given.
++if test "${enable_valgrind_checks+set}" = set; then
++ enableval="$enable_valgrind_checks"
++
++ PHP_APC_VALGRIND=$enableval
++ echo "$ac_t""$enableval" 1>&6
++
++else
++
++ PHP_APC_VALGRIND=yes
++ echo "$ac_t""yes" 1>&6
++ ac_safe=`echo "valgrind/memcheck.h" | sed 'y%./+-%__p_%'`
++echo $ac_n "checking for valgrind/memcheck.h""... $ac_c" 1>&6
++echo "configure:26395: checking for valgrind/memcheck.h" >&5
++if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then
++ echo $ac_n "(cached) $ac_c" 1>&6
++else
++ cat > conftest.$ac_ext <
++EOF
++ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
++{ (eval echo configure:26405: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
++ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
++if test -z "$ac_err"; then
++ rm -rf conftest*
++ eval "ac_cv_header_$ac_safe=yes"
++else
++ echo "$ac_err" >&5
++ echo "configure: failed program was:" >&5
++ cat conftest.$ac_ext >&5
++ rm -rf conftest*
++ eval "ac_cv_header_$ac_safe=no"
++fi
++rm -f conftest*
++fi
++if eval "test \"`echo '$ac_cv_header_'$ac_safe`\" = yes"; then
++ echo "$ac_t""yes" 1>&6
++ cat >> confdefs.h <<\EOF
++#define HAVE_VALGRIND_MEMCHECK_H 1
++EOF
++
++else
++ echo "$ac_t""no" 1>&6
++fi
++
++
++fi
++
++
++ apc_sources="apc.c php_apc.c \
++ apc_cache.c \
++ apc_compile.c \
++ apc_debug.c \
++ apc_fcntl.c \
++ apc_main.c \
++ apc_mmap.c \
++ apc_sem.c \
++ apc_shm.c \
++ apc_pthreadmutex.c \
++ apc_spin.c \
++ pgsql_s_lock.c \
++ apc_sma.c \
++ apc_stack.c \
++ apc_zend.c \
++ apc_rfc1867.c \
++ apc_signal.c \
++ apc_pool.c \
++ apc_iterator.c \
++ apc_bin.c \
++ apc_string.c "
++
++
++ save_old_LDFLAGS=$LDFLAGS
++ ac_stuff=""
++
++ save_ext_shared=$ext_shared
++ ext_shared=yes
++
++ for ac_i in $ac_stuff; do
++ case $ac_i in
++ -pthread)
++ if test "$ext_shared" = "yes"; then
++ LDFLAGS="$LDFLAGS -pthread"
++ else
++
++
++ unique=`echo $ac_i|$SED 's/[^a-zA-Z0-9]/_/g'`
++
++ cmd="echo $ac_n \"\$EXTRA_LDFLAGS$unique$ac_c\""
++ if test -n "$unique" && test "`eval $cmd`" = "" ; then
++ eval "EXTRA_LDFLAGS$unique=set"
++ EXTRA_LDFLAGS="$EXTRA_LDFLAGS $ac_i"
++ fi
++
++ fi
++ ;;
++ -l*)
++ ac_ii=`echo $ac_i|cut -c 3-`
++
++
++ case $ac_ii in
++ c|c_r|pthread*) ;;
++ *)
++ if test "$ext_shared" = "yes"; then
++ LDFLAGS="$LDFLAGS -l$ac_ii"
++ else
++
++
++ case $ac_ii in
++ c|c_r|pthread*) ;;
++ *)
++ LIBS="$LIBS -l$ac_ii"
++ ;;
++ esac
++
++
++ fi
++ ;;
++ esac
++
++
++ ;;
++ -L*)
++ ac_ii=`echo $ac_i|cut -c 3-`
++
++ if test "$ac_ii" != "/usr/$PHP_LIBDIR" && test "$ac_ii" != "/usr/lib"; then
++
++ if test -z "$ac_ii" || echo "$ac_ii" | grep '^/' >/dev/null ; then
++ ai_p=$ac_ii
++ else
++
++ ep_dir="`echo $ac_ii|$SED 's%/*[^/][^/]*/*$%%'`"
++
++ ep_realdir="`(cd \"$ep_dir\" && pwd)`"
++ ai_p="$ep_realdir/`basename \"$ac_ii\"`"
++ fi
++
++
++ if test "$ext_shared" = "yes"; then
++ LDFLAGS="-L$ai_p $LDFLAGS"
++ test -n "$ld_runpath_switch" && LDFLAGS="$ld_runpath_switch$ai_p $LDFLAGS"
++ else
++
++
++
++ unique=`echo $ai_p|$SED 's/[^a-zA-Z0-9]/_/g'`
++
++ cmd="echo $ac_n \"\$LIBPATH$unique$ac_c\""
++ if test -n "$unique" && test "`eval $cmd`" = "" ; then
++ eval "LIBPATH$unique=set"
++
++ test -n "$ld_runpath_switch" && LDFLAGS="$LDFLAGS $ld_runpath_switch$ai_p"
++ LDFLAGS="$LDFLAGS -L$ai_p"
++ PHP_RPATHS="$PHP_RPATHS $ai_p"
++
++ fi
++
++
++ fi
++
++ fi
++
++ ;;
++ esac
++ done
++
++ echo $ac_n "checking for shm_open in -lrt""... $ac_c" 1>&6
++echo "configure:26551: checking for shm_open in -lrt" >&5
++ac_lib_var=`echo rt'_'shm_open | sed 'y%./+-%__p_%'`
++if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
++ echo $ac_n "(cached) $ac_c" 1>&6
++else
++ ac_save_LIBS="$LIBS"
++LIBS="-lrt $LIBS"
++cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
++ rm -rf conftest*
++ eval "ac_cv_lib_$ac_lib_var=yes"
++else
++ echo "configure: failed program was:" >&5
++ cat conftest.$ac_ext >&5
++ rm -rf conftest*
++ eval "ac_cv_lib_$ac_lib_var=no"
++fi
++rm -f conftest*
++LIBS="$ac_save_LIBS"
++
++fi
++if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then
++ echo "$ac_t""yes" 1>&6
++
++ LDFLAGS=$save_old_LDFLAGS
++ ext_shared=$save_ext_shared
++
++
++ case rt in
++ c|c_r|pthread*) ;;
++ *)
++ if test "$ext_shared" = "yes"; then
++ APC_SHARED_LIBADD="-lrt $APC_SHARED_LIBADD"
++ else
++
++
++ case rt in
++ c|c_r|pthread*) ;;
++ *)
++ LIBS="-lrt $LIBS"
++ ;;
++ esac
++
++
++ fi
++ ;;
++ esac
++
++
++
++else
++ echo "$ac_t""no" 1>&6
++
++ LDFLAGS=$save_old_LDFLAGS
++ ext_shared=$save_ext_shared
++ unset ac_cv_lib_rt_shm_open
++
++
++fi
++
++
++ ext_builddir=ext/apc
++ ext_srcdir=$abs_srcdir/ext/apc
++
++ ac_extra=`echo "\\$(APC_CFLAGS)"|$SED s#@ext_srcdir@#$ext_srcdir#g|$SED s#@ext_builddir@#$ext_builddir#g`
++
++ if test "$ext_shared" != "shared" && test "$ext_shared" != "yes" && test "" != "cli"; then
++ PHP_APC_SHARED=no
++
++
++ case ext/apc in
++ "") ac_srcdir="$abs_srcdir/"; unset ac_bdir; ac_inc="-I. -I$abs_srcdir" ;;
++ /*) ac_srcdir=`echo "ext/apc"|cut -c 2-`"/"; ac_bdir=$ac_srcdir; ac_inc="-I$ac_bdir -I$abs_srcdir/$ac_bdir" ;;
++ *) ac_srcdir="$abs_srcdir/ext/apc/"; ac_bdir="ext/apc/"; ac_inc="-I$ac_bdir -I$ac_srcdir" ;;
++ esac
++
++
++
++ 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
++ b_lo=$php_lo
++
++
++ old_IFS=$IFS
++ for ac_src in $apc_sources; do
++
++ IFS=.
++ set $ac_src
++ ac_obj=$1
++ IFS=$old_IFS
++
++ PHP_GLOBAL_OBJS="$PHP_GLOBAL_OBJS $ac_bdir$ac_obj.lo"
++
++ case $ac_src in
++ *.c) ac_comp="$b_c_pre $ac_extra $ac_inc $b_c_meta -c $ac_srcdir$ac_src -o $ac_bdir$ac_obj.$b_lo $b_c_post" ;;
++ *.s) ac_comp="$b_c_pre $ac_extra $ac_inc $b_c_meta -c $ac_srcdir$ac_src -o $ac_bdir$ac_obj.$b_lo $b_c_post" ;;
++ *.S) ac_comp="$b_c_pre $ac_extra $ac_inc $b_c_meta -c $ac_srcdir$ac_src -o $ac_bdir$ac_obj.$b_lo $b_c_post" ;;
++ *.cpp|*.cc|*.cxx) ac_comp="$b_cxx_pre $ac_extra $ac_inc $b_cxx_meta -c $ac_srcdir$ac_src -o $ac_bdir$ac_obj.$b_lo $b_cxx_post" ;;
++ esac
++
++ cat >>Makefile.objects<>Makefile.objects<>Makefile.objects<>Makefile.objects<> confdefs.h <>Makefile.objects<>Makefile.objects<> confdefs.h <<\EOF
++#define HAVE_APC 1
++EOF
++
++fi
++
++
++
++
+ php_enable_bcmath=no
+
+ echo $ac_n "checking whether to enable bc style precision math functions""... $ac_c" 1>&6
+-echo "configure:25912: checking whether to enable bc style precision math functions" >&5
++echo "configure:26932: checking whether to enable bc style precision math functions" >&5
+ # Check whether --enable-bcmath or --disable-bcmath was given.
+ if test "${enable_bcmath+set}" = set; then
+ enableval="$enable_bcmath"
+@@ -26273,7 +27293,7 @@
+ php_with_bz2=no
+
+ echo $ac_n "checking for BZip2 support""... $ac_c" 1>&6
+-echo "configure:26277: checking for BZip2 support" >&5
++echo "configure:27297: checking for BZip2 support" >&5
+ # Check whether --with-bz2 or --without-bz2 was given.
+ if test "${with_bz2+set}" = set; then
+ withval="$with_bz2"
+@@ -26318,7 +27338,7 @@
+ BZIP_DIR=$PHP_BZ2
+ else
+ echo $ac_n "checking for BZip2 in default path""... $ac_c" 1>&6
+-echo "configure:26322: checking for BZip2 in default path" >&5
++echo "configure:27342: checking for BZip2 in default path" >&5
+ for i in /usr/local /usr; do
+ if test -r $i/include/bzlib.h; then
+ BZIP_DIR=$i
+@@ -26431,7 +27451,7 @@
+ done
+
+ echo $ac_n "checking for BZ2_bzerror in -lbz2""... $ac_c" 1>&6
+-echo "configure:26435: checking for BZ2_bzerror in -lbz2" >&5
++echo "configure:27455: checking for BZ2_bzerror in -lbz2" >&5
+ ac_lib_var=`echo bz2'_'BZ2_bzerror | sed 'y%./+-%__p_%'`
+ if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+@@ -26439,7 +27459,7 @@
+ ac_save_LIBS="$LIBS"
+ LIBS="-lbz2 $LIBS"
+ cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
++if { (eval echo configure:27474: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+ rm -rf conftest*
+ eval "ac_cv_lib_$ac_lib_var=yes"
+ else
+@@ -26918,7 +27938,7 @@
+ php_enable_calendar=no
+
+ echo $ac_n "checking whether to enable calendar conversion support""... $ac_c" 1>&6
+-echo "configure:26922: checking whether to enable calendar conversion support" >&5
++echo "configure:27942: checking whether to enable calendar conversion support" >&5
+ # Check whether --enable-calendar or --disable-calendar was given.
+ if test "${enable_calendar+set}" = set; then
+ enableval="$enable_calendar"
+@@ -27262,7 +28282,7 @@
+ php_enable_ctype=yes
+
+ echo $ac_n "checking whether to enable ctype functions""... $ac_c" 1>&6
+-echo "configure:27266: checking whether to enable ctype functions" >&5
++echo "configure:28286: checking whether to enable ctype functions" >&5
+ # Check whether --enable-ctype or --disable-ctype was given.
+ if test "${enable_ctype+set}" = set; then
+ enableval="$enable_ctype"
+@@ -27606,7 +28626,7 @@
+ php_with_curl=no
+
+ echo $ac_n "checking for cURL support""... $ac_c" 1>&6
+-echo "configure:27610: checking for cURL support" >&5
++echo "configure:28630: checking for cURL support" >&5
+ # Check whether --with-curl or --without-curl was given.
+ if test "${with_curl+set}" = set; then
+ withval="$with_curl"
+@@ -27650,7 +28670,7 @@
+ php_with_curlwrappers=no
+
+ echo $ac_n "checking if we should use cURL for url streams""... $ac_c" 1>&6
+-echo "configure:27654: checking if we should use cURL for url streams" >&5
++echo "configure:28674: checking if we should use cURL for url streams" >&5
+ # Check whether --with-curlwrappers or --without-curlwrappers was given.
+ if test "${with_curlwrappers+set}" = set; then
+ withval="$with_curlwrappers"
+@@ -27674,7 +28694,7 @@
+ CURL_DIR=$PHP_CURL
+ else
+ echo $ac_n "checking for cURL in default path""... $ac_c" 1>&6
+-echo "configure:27678: checking for cURL in default path" >&5
++echo "configure:28698: checking for cURL in default path" >&5
+ for i in /usr/local /usr; do
+ if test -r $i/include/curl/easy.h; then
+ CURL_DIR=$i
+@@ -27692,7 +28712,7 @@
+
+ CURL_CONFIG="curl-config"
+ echo $ac_n "checking for cURL 7.10.5 or greater""... $ac_c" 1>&6
+-echo "configure:27696: checking for cURL 7.10.5 or greater" >&5
++echo "configure:28716: checking for cURL 7.10.5 or greater" >&5
+
+ if ${CURL_DIR}/bin/curl-config --libs > /dev/null 2>&1; then
+ CURL_CONFIG=${CURL_DIR}/bin/curl-config
+@@ -27930,7 +28950,7 @@
+
+
+ echo $ac_n "checking for SSL support in libcurl""... $ac_c" 1>&6
+-echo "configure:27934: checking for SSL support in libcurl" >&5
++echo "configure:28954: checking for SSL support in libcurl" >&5
+ CURL_SSL=`$CURL_CONFIG --feature | $EGREP SSL`
+ if test "$CURL_SSL" = "SSL"; then
+ echo "$ac_t""yes" 1>&6
+@@ -27943,7 +28963,7 @@
+ CFLAGS="`$CURL_CONFIG --cflags`"
+
+ echo $ac_n "checking how to run the C preprocessor""... $ac_c" 1>&6
+-echo "configure:27947: checking how to run the C preprocessor" >&5
++echo "configure:28967: checking how to run the C preprocessor" >&5
+ # On Suns, sometimes $CPP names a directory.
+ if test -n "$CPP" && test -d "$CPP"; then
+ CPP=
+@@ -27958,13 +28978,13 @@
+ # On the NeXT, cc -E runs the code through the compiler's parser,
+ # not just through cpp.
+ cat > conftest.$ac_ext <
+ Syntax Error
+ EOF
+ ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
+-{ (eval echo configure:27968: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
++{ (eval echo configure:28988: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
+ ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
+ if test -z "$ac_err"; then
+ :
+@@ -27975,13 +28995,13 @@
+ rm -rf conftest*
+ CPP="${CC-cc} -E -traditional-cpp"
+ cat > conftest.$ac_ext <
+ Syntax Error
+ EOF
+ ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
+-{ (eval echo configure:27985: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
++{ (eval echo configure:29005: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
+ ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
+ if test -z "$ac_err"; then
+ :
+@@ -27992,13 +29012,13 @@
+ rm -rf conftest*
+ CPP="${CC-cc} -nologo -E"
+ cat > conftest.$ac_ext <
+ Syntax Error
+ EOF
+ ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
+-{ (eval echo configure:28002: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
++{ (eval echo configure:29022: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
+ ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
+ if test -z "$ac_err"; then
+ :
+@@ -28023,14 +29043,14 @@
+ echo "$ac_t""$CPP" 1>&6
+
+ echo $ac_n "checking for openssl support in libcurl""... $ac_c" 1>&6
+-echo "configure:28027: checking for openssl support in libcurl" >&5
++echo "configure:29047: checking for openssl support in libcurl" >&5
+ if test "$cross_compiling" = yes; then
+
+ echo "$ac_t""no" 1>&6
+
+ else
+ cat > conftest.$ac_ext <
+@@ -28049,7 +29069,7 @@
+ }
+
+ EOF
+-if { (eval echo configure:28053: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
++if { (eval echo configure:29073: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
+ then
+
+ echo "$ac_t""yes" 1>&6
+@@ -28057,17 +29077,17 @@
+ do
+ ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'`
+ echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6
+-echo "configure:28061: checking for $ac_hdr" >&5
++echo "configure:29081: checking for $ac_hdr" >&5
+ if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+ else
+ cat > conftest.$ac_ext <
+ EOF
+ ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
+-{ (eval echo configure:28071: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
++{ (eval echo configure:29091: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
+ ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
+ if test -z "$ac_err"; then
+ rm -rf conftest*
+@@ -28112,14 +29132,14 @@
+
+
+ echo $ac_n "checking for gnutls support in libcurl""... $ac_c" 1>&6
+-echo "configure:28116: checking for gnutls support in libcurl" >&5
++echo "configure:29136: checking for gnutls support in libcurl" >&5
+ if test "$cross_compiling" = yes; then
+
+ echo "$ac_t""no" 1>&6
+
+ else
+ cat > conftest.$ac_ext <
+@@ -28138,23 +29158,23 @@
+ }
+
+ EOF
+-if { (eval echo configure:28142: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
++if { (eval echo configure:29162: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
+ then
+
+ echo "$ac_t""yes" 1>&6
+ ac_safe=`echo "gcrypt.h" | sed 'y%./+-%__p_%'`
+ echo $ac_n "checking for gcrypt.h""... $ac_c" 1>&6
+-echo "configure:28148: checking for gcrypt.h" >&5
++echo "configure:29168: checking for gcrypt.h" >&5
+ if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+ else
+ cat > conftest.$ac_ext <
+ EOF
+ ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
+-{ (eval echo configure:28158: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
++{ (eval echo configure:29178: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
+ ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"`
+ if test -z "$ac_err"; then
+ rm -rf conftest*
+@@ -28296,7 +29316,7 @@
+ done
+
+ echo $ac_n "checking for curl_easy_perform in -lcurl""... $ac_c" 1>&6
+-echo "configure:28300: checking for curl_easy_perform in -lcurl" >&5
++echo "configure:29320: checking for curl_easy_perform in -lcurl" >&5
+ ac_lib_var=`echo curl'_'curl_easy_perform | sed 'y%./+-%__p_%'`
+ if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+@@ -28304,7 +29324,7 @@
+ ac_save_LIBS="$LIBS"
+ LIBS="-lcurl $LIBS"
+ cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
++if { (eval echo configure:29339: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+ rm -rf conftest*
+ eval "ac_cv_lib_$ac_lib_var=yes"
+ else
+@@ -28451,7 +29471,7 @@
+ done
+
+ echo $ac_n "checking for curl_version_info in -lcurl""... $ac_c" 1>&6
+-echo "configure:28455: checking for curl_version_info in -lcurl" >&5
++echo "configure:29475: checking for curl_version_info in -lcurl" >&5
+ ac_lib_var=`echo curl'_'curl_version_info | sed 'y%./+-%__p_%'`
+ if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+@@ -28459,7 +29479,7 @@
+ ac_save_LIBS="$LIBS"
+ LIBS="-lcurl $LIBS"
+ cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
++if { (eval echo configure:29494: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+ rm -rf conftest*
+ eval "ac_cv_lib_$ac_lib_var=yes"
+ else
+@@ -28604,7 +29624,7 @@
+ done
+
+ echo $ac_n "checking for curl_easy_strerror in -lcurl""... $ac_c" 1>&6
+-echo "configure:28608: checking for curl_easy_strerror in -lcurl" >&5
++echo "configure:29628: checking for curl_easy_strerror in -lcurl" >&5
+ ac_lib_var=`echo curl'_'curl_easy_strerror | sed 'y%./+-%__p_%'`
+ if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+@@ -28612,7 +29632,7 @@
+ ac_save_LIBS="$LIBS"
+ LIBS="-lcurl $LIBS"
+ cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
++if { (eval echo configure:29647: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+ rm -rf conftest*
+ eval "ac_cv_lib_$ac_lib_var=yes"
+ else
+@@ -28757,7 +29777,7 @@
+ done
+
+ echo $ac_n "checking for curl_multi_strerror in -lcurl""... $ac_c" 1>&6
+-echo "configure:28761: checking for curl_multi_strerror in -lcurl" >&5
++echo "configure:29781: checking for curl_multi_strerror in -lcurl" >&5
+ ac_lib_var=`echo curl'_'curl_multi_strerror | sed 'y%./+-%__p_%'`
+ if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+@@ -28765,7 +29785,7 @@
+ ac_save_LIBS="$LIBS"
+ LIBS="-lcurl $LIBS"
+ cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
++if { (eval echo configure:29800: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+ rm -rf conftest*
+ eval "ac_cv_lib_$ac_lib_var=yes"
+ else
+@@ -29462,7 +30482,7 @@
+ done
+
+ echo $ac_n "checking for dpopen in -l$LIB""... $ac_c" 1>&6
+-echo "configure:29466: checking for dpopen in -l$LIB" >&5
++echo "configure:30486: checking for dpopen in -l$LIB" >&5
+ ac_lib_var=`echo $LIB'_'dpopen | sed 'y%./+-%__p_%'`
+ if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+@@ -29470,7 +30490,7 @@
+ ac_save_LIBS="$LIBS"
+ LIBS="-l$LIB $LIBS"
+ cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
++if { (eval echo configure:30505: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+ rm -rf conftest*
+ eval "ac_cv_lib_$ac_lib_var=yes"
+ else
+@@ -29650,7 +30670,7 @@
+ THIS_FULL_NAME="$THIS_NAME"
+ fi
+ echo $ac_n "checking for $THIS_FULL_NAME support""... $ac_c" 1>&6
+-echo "configure:29654: checking for $THIS_FULL_NAME support" >&5
++echo "configure:30674: checking for $THIS_FULL_NAME support" >&5
+ if test -n ""; then
+ { echo "configure: error: " 1>&2; exit 1; }
+ fi
+@@ -29678,7 +30698,7 @@
+ THIS_FULL_NAME="$THIS_NAME"
+ fi
+ echo $ac_n "checking for $THIS_FULL_NAME support""... $ac_c" 1>&6
+-echo "configure:29682: checking for $THIS_FULL_NAME support" >&5
++echo "configure:30702: checking for $THIS_FULL_NAME support" >&5
+ if test -n "You cannot combine --with-gdbm with --with-qdbm"; then
+ { echo "configure: error: You cannot combine --with-gdbm with --with-qdbm" 1>&2; exit 1; }
+ fi
+@@ -29797,7 +30817,7 @@
+ done
+
+ echo $ac_n "checking for gdbm_open in -lgdbm""... $ac_c" 1>&6
+-echo "configure:29801: checking for gdbm_open in -lgdbm" >&5
++echo "configure:30821: checking for gdbm_open in -lgdbm" >&5
+ ac_lib_var=`echo gdbm'_'gdbm_open | sed 'y%./+-%__p_%'`
+ if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+@@ -29805,7 +30825,7 @@
+ ac_save_LIBS="$LIBS"
+ LIBS="-lgdbm $LIBS"
+ cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
++if { (eval echo configure:30840: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+ rm -rf conftest*
+ eval "ac_cv_lib_$ac_lib_var=yes"
+ else
+@@ -29981,7 +31001,7 @@
+ THIS_FULL_NAME="$THIS_NAME"
+ fi
+ echo $ac_n "checking for $THIS_FULL_NAME support""... $ac_c" 1>&6
+-echo "configure:29985: checking for $THIS_FULL_NAME support" >&5
++echo "configure:31005: checking for $THIS_FULL_NAME support" >&5
+ if test -n ""; then
+ { echo "configure: error: " 1>&2; exit 1; }
+ fi
+@@ -30110,7 +31130,7 @@
+ done
+
+ echo $ac_n "checking for dbm_open in -l$LIB""... $ac_c" 1>&6
+-echo "configure:30114: checking for dbm_open in -l$LIB" >&5
++echo "configure:31134: checking for dbm_open in -l$LIB" >&5
+ ac_lib_var=`echo $LIB'_'dbm_open | sed 'y%./+-%__p_%'`
+ if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+@@ -30118,7 +31138,7 @@
+ ac_save_LIBS="$LIBS"
+ LIBS="-l$LIB $LIBS"
+ cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
++if { (eval echo configure:31153: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+ rm -rf conftest*
+ eval "ac_cv_lib_$ac_lib_var=yes"
+ else
+@@ -30298,7 +31318,7 @@
+ THIS_FULL_NAME="$THIS_NAME"
+ fi
+ echo $ac_n "checking for $THIS_FULL_NAME support""... $ac_c" 1>&6
+-echo "configure:30302: checking for $THIS_FULL_NAME support" >&5
++echo "configure:31322: checking for $THIS_FULL_NAME support" >&5
+ if test -n ""; then
+ { echo "configure: error: " 1>&2; exit 1; }
+ fi
+@@ -30382,7 +31402,7 @@
+ LIBS="-l$LIB $LIBS"
+
+ cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
++if { (eval echo configure:31417: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+ rm -rf conftest*
+
+ cat > conftest.$ac_ext <&6
+-echo "configure:30438: checking for DB4 major version" >&5
++echo "configure:31458: checking for DB4 major version" >&5
+ { echo "configure: error: Header contains different version" 1>&2; exit 1; }
+ fi
+ if test "4" = "4"; then
+ echo $ac_n "checking for DB4 minor version and patch level""... $ac_c" 1>&6
+-echo "configure:30443: checking for DB4 minor version and patch level" >&5
++echo "configure:31463: checking for DB4 minor version and patch level" >&5
+ cat > conftest.$ac_ext <&6
+-echo "configure:30471: checking if dba can be used as shared extension" >&5
++echo "configure:31491: checking if dba can be used as shared extension" >&5
+ cat > conftest.$ac_ext <&6
+-echo "configure:30630: checking for $THIS_FULL_NAME support" >&5
++echo "configure:31650: checking for $THIS_FULL_NAME support" >&5
+ if test -n ""; then
+ { echo "configure: error: " 1>&2; exit 1; }
+ fi
+@@ -30654,7 +31674,7 @@
+ THIS_FULL_NAME="$THIS_NAME"
+ fi
+ echo $ac_n "checking for $THIS_FULL_NAME support""... $ac_c" 1>&6
+-echo "configure:30658: checking for $THIS_FULL_NAME support" >&5
++echo "configure:31678: checking for $THIS_FULL_NAME support" >&5
+ if test -n "You cannot combine --with-db3 with --with-db4"; then
+ { echo "configure: error: You cannot combine --with-db3 with --with-db4" 1>&2; exit 1; }
+ fi
+@@ -30705,7 +31725,7 @@
+ LIBS="-l$LIB $LIBS"
+
+ cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
++if { (eval echo configure:31740: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+ rm -rf conftest*
+
+ cat > conftest.$ac_ext <&6
+-echo "configure:30761: checking for DB3 major version" >&5
++echo "configure:31781: checking for DB3 major version" >&5
+ { echo "configure: error: Header contains different version" 1>&2; exit 1; }
+ fi
+ if test "3" = "4"; then
+ echo $ac_n "checking for DB4 minor version and patch level""... $ac_c" 1>&6
+-echo "configure:30766: checking for DB4 minor version and patch level" >&5
++echo "configure:31786: checking for DB4 minor version and patch level" >&5
+ cat > conftest.$ac_ext <&6
+-echo "configure:30794: checking if dba can be used as shared extension" >&5
++echo "configure:31814: checking if dba can be used as shared extension" >&5
+ cat > conftest.$ac_ext <&6
+-echo "configure:30953: checking for $THIS_FULL_NAME support" >&5
++echo "configure:31973: checking for $THIS_FULL_NAME support" >&5
+ if test -n ""; then
+ { echo "configure: error: " 1>&2; exit 1; }
+ fi
+@@ -30977,7 +31997,7 @@
+ THIS_FULL_NAME="$THIS_NAME"
+ fi
+ echo $ac_n "checking for $THIS_FULL_NAME support""... $ac_c" 1>&6
+-echo "configure:30981: checking for $THIS_FULL_NAME support" >&5
++echo "configure:32001: checking for $THIS_FULL_NAME support" >&5
+ if test -n "You cannot combine --with-db2 with --with-db3 or --with-db4"; then
+ { echo "configure: error: You cannot combine --with-db2 with --with-db3 or --with-db4" 1>&2; exit 1; }
+ fi
+@@ -31028,7 +32048,7 @@
+ LIBS="-l$LIB $LIBS"
+
+ cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
++if { (eval echo configure:32063: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+ rm -rf conftest*
+
+ cat > conftest.$ac_ext <&6
+-echo "configure:31084: checking for DB2 major version" >&5
++echo "configure:32104: checking for DB2 major version" >&5
+ { echo "configure: error: Header contains different version" 1>&2; exit 1; }
+ fi
+ if test "2" = "4"; then
+ echo $ac_n "checking for DB4 minor version and patch level""... $ac_c" 1>&6
+-echo "configure:31089: checking for DB4 minor version and patch level" >&5
++echo "configure:32109: checking for DB4 minor version and patch level" >&5
+ cat > conftest.$ac_ext <&6
+-echo "configure:31117: checking if dba can be used as shared extension" >&5
++echo "configure:32137: checking if dba can be used as shared extension" >&5
+ cat > conftest.$ac_ext <&6
+-echo "configure:31276: checking for $THIS_FULL_NAME support" >&5
++echo "configure:32296: checking for $THIS_FULL_NAME support" >&5
+ if test -n ""; then
+ { echo "configure: error: " 1>&2; exit 1; }
+ fi
+@@ -31292,7 +32312,7 @@
+ unset THIS_INCLUDE THIS_LIBS THIS_LFLAGS THIS_PREFIX THIS_RESULT
+
+ echo $ac_n "checking for DB1 in library""... $ac_c" 1>&6
+-echo "configure:31296: checking for DB1 in library" >&5
++echo "configure:32316: checking for DB1 in library" >&5
+ if test "$HAVE_DB4" = "1"; then
+ THIS_VERSION=4
+ THIS_LIBS=$DB4_LIBS
+@@ -31340,7 +32360,7 @@
+ fi
+ echo "$ac_t""$THIS_LIBS" 1>&6
+ echo $ac_n "checking for DB1 in header""... $ac_c" 1>&6
+-echo "configure:31344: checking for DB1 in header" >&5
++echo "configure:32364: checking for DB1 in header" >&5
+ echo "$ac_t""$THIS_INCLUDE" 1>&6
+ if test -n "$THIS_INCLUDE"; then
+
+@@ -31350,7 +32370,7 @@
+ LIBS="-l$THIS_LIBS $LIBS"
+
+ cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
++if { (eval echo configure:32385: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+ rm -rf conftest*
+
+ cat >> confdefs.h <&6
+-echo "configure:31515: checking for $THIS_FULL_NAME support" >&5
++echo "configure:32535: checking for $THIS_FULL_NAME support" >&5
+ if test -n ""; then
+ { echo "configure: error: " 1>&2; exit 1; }
+ fi
+@@ -31539,7 +32559,7 @@
+ THIS_FULL_NAME="$THIS_NAME"
+ fi
+ echo $ac_n "checking for $THIS_FULL_NAME support""... $ac_c" 1>&6
+-echo "configure:31543: checking for $THIS_FULL_NAME support" >&5
++echo "configure:32563: checking for $THIS_FULL_NAME support" >&5
+ if test -n "You cannot combine --with-dbm with --with-qdbm"; then
+ { echo "configure: error: You cannot combine --with-dbm with --with-qdbm" 1>&2; exit 1; }
+ fi
+@@ -31663,7 +32683,7 @@
+ done
+
+ echo $ac_n "checking for dbminit in -l$LIB""... $ac_c" 1>&6
+-echo "configure:31667: checking for dbminit in -l$LIB" >&5
++echo "configure:32687: checking for dbminit in -l$LIB" >&5
+ ac_lib_var=`echo $LIB'_'dbminit | sed 'y%./+-%__p_%'`
+ if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+@@ -31671,7 +32691,7 @@
+ ac_save_LIBS="$LIBS"
+ LIBS="-l$LIB $LIBS"
+ cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
++if { (eval echo configure:32706: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+ rm -rf conftest*
+ eval "ac_cv_lib_$ac_lib_var=yes"
+ else
+@@ -31702,7 +32722,7 @@
+ ext_shared=$save_ext_shared
+
+ echo $ac_n "checking for DBM using GDBM""... $ac_c" 1>&6
+-echo "configure:31706: checking for DBM using GDBM" >&5
++echo "configure:32726: checking for DBM using GDBM" >&5
+ cat >> confdefs.h <&6
+-echo "configure:31870: checking for $THIS_FULL_NAME support" >&5
++echo "configure:32890: checking for $THIS_FULL_NAME support" >&5
+ if test -n ""; then
+ { echo "configure: error: " 1>&2; exit 1; }
+ fi
+@@ -32078,7 +33098,7 @@
+ done
+
+ echo $ac_n "checking for cdb_read in -l$LIB""... $ac_c" 1>&6
+-echo "configure:32082: checking for cdb_read in -l$LIB" >&5
++echo "configure:33102: checking for cdb_read in -l$LIB" >&5
+ ac_lib_var=`echo $LIB'_'cdb_read | sed 'y%./+-%__p_%'`
+ if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+@@ -32086,7 +33106,7 @@
+ ac_save_LIBS="$LIBS"
+ LIBS="-l$LIB $LIBS"
+ cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
++if { (eval echo configure:33121: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+ rm -rf conftest*
+ eval "ac_cv_lib_$ac_lib_var=yes"
+ else
+@@ -32266,7 +33286,7 @@
+ THIS_FULL_NAME="$THIS_NAME"
+ fi
+ echo $ac_n "checking for $THIS_FULL_NAME support""... $ac_c" 1>&6
+-echo "configure:32270: checking for $THIS_FULL_NAME support" >&5
++echo "configure:33290: checking for $THIS_FULL_NAME support" >&5
+ if test -n ""; then
+ { echo "configure: error: " 1>&2; exit 1; }
+ fi
+@@ -32297,7 +33317,7 @@
+ THIS_FULL_NAME="$THIS_NAME"
+ fi
+ echo $ac_n "checking for $THIS_FULL_NAME support""... $ac_c" 1>&6
+-echo "configure:32301: checking for $THIS_FULL_NAME support" >&5
++echo "configure:33321: checking for $THIS_FULL_NAME support" >&5
+ if test -n ""; then
+ { echo "configure: error: " 1>&2; exit 1; }
+ fi
+@@ -32328,7 +33348,7 @@
+ THIS_FULL_NAME="$THIS_NAME"
+ fi
+ echo $ac_n "checking for $THIS_FULL_NAME support""... $ac_c" 1>&6
+-echo "configure:32332: checking for $THIS_FULL_NAME support" >&5
++echo "configure:33352: checking for $THIS_FULL_NAME support" >&5
+ if test -n ""; then
+ { echo "configure: error: " 1>&2; exit 1; }
+ fi
+@@ -32343,7 +33363,7 @@
+
+
+ echo $ac_n "checking whether to enable DBA interface""... $ac_c" 1>&6
+-echo "configure:32347: checking whether to enable DBA interface" >&5
++echo "configure:33367: checking whether to enable DBA interface" >&5
+ if test "$HAVE_DBA" = "1"; then
+ if test "$ext_shared" = "yes"; then
+ echo "$ac_t""yes, shared" 1>&6
+@@ -32673,7 +33693,7 @@
+ php_enable_dom=yes
+
+ echo $ac_n "checking whether to enable DOM support""... $ac_c" 1>&6
+-echo "configure:32677: checking whether to enable DOM support" >&5
++echo "configure:33697: checking whether to enable DOM support" >&5
+ # Check whether --enable-dom or --disable-dom was given.
+ if test "${enable_dom+set}" = set; then
+ enableval="$enable_dom"
+@@ -32718,7 +33738,7 @@
+ php_with_libxml_dir=no
+
+ echo $ac_n "checking libxml2 install dir""... $ac_c" 1>&6
+-echo "configure:32722: checking libxml2 install dir" >&5
++echo "configure:33742: checking libxml2 install dir" >&5
+ # Check whether --with-libxml-dir or --without-libxml-dir was given.
+ if test "${with_libxml_dir+set}" = set; then
+ withval="$with_libxml_dir"
+@@ -32746,7 +33766,7 @@
+
+
+ echo $ac_n "checking for xml2-config path""... $ac_c" 1>&6
+-echo "configure:32750: checking for xml2-config path" >&5
++echo "configure:33770: checking for xml2-config path" >&5
+ if eval "test \"`echo '$''{'ac_cv_php_xml2_config_path'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+ else
+@@ -32904,7 +33924,7 @@
+
+
+ echo $ac_n "checking whether libxml build works""... $ac_c" 1>&6
+-echo "configure:32908: checking whether libxml build works" >&5
++echo "configure:33928: checking whether libxml build works" >&5
+ if eval "test \"`echo '$''{'php_cv_libxml_build_works'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+ else
+@@ -32920,7 +33940,7 @@
+
+ else
+ cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
++if { (eval echo configure:33955: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
+ then
+
+ LIBS=$old_LIBS
+@@ -33354,7 +34374,7 @@
+ php_with_enchant=no
+
+ echo $ac_n "checking for ENCHANT support""... $ac_c" 1>&6
+-echo "configure:33358: checking for ENCHANT support" >&5
++echo "configure:34378: checking for ENCHANT support" >&5
+ # Check whether --with-enchant or --without-enchant was given.
+ if test "${with_enchant+set}" = set; then
+ withval="$with_enchant"
+@@ -33939,7 +34959,7 @@
+ done
+
+ echo $ac_n "checking for enchant_broker_set_param in -lenchant""... $ac_c" 1>&6
+-echo "configure:33943: checking for enchant_broker_set_param in -lenchant" >&5
++echo "configure:34963: checking for enchant_broker_set_param in -lenchant" >&5
+ ac_lib_var=`echo enchant'_'enchant_broker_set_param | sed 'y%./+-%__p_%'`
+ if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+@@ -33947,7 +34967,7 @@
+ ac_save_LIBS="$LIBS"
+ LIBS="-lenchant $LIBS"
+ cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
++if { (eval echo configure:34982: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+ rm -rf conftest*
+ eval "ac_cv_lib_$ac_lib_var=yes"
+ else
+@@ -34005,7 +35025,7 @@
+ php_enable_exif=no
+
+ echo $ac_n "checking whether to enable EXIF (metadata from images) support""... $ac_c" 1>&6
+-echo "configure:34009: checking whether to enable EXIF (metadata from images) support" >&5
++echo "configure:35029: checking whether to enable EXIF (metadata from images) support" >&5
+ # Check whether --enable-exif or --disable-exif was given.
+ if test "${enable_exif+set}" = set; then
+ enableval="$enable_exif"
+@@ -34349,7 +35369,7 @@
+ php_enable_fileinfo=yes
+
+ echo $ac_n "checking for fileinfo support""... $ac_c" 1>&6
+-echo "configure:34353: checking for fileinfo support" >&5
++echo "configure:35373: checking for fileinfo support" >&5
+ # Check whether --enable-fileinfo or --disable-fileinfo was given.
+ if test "${enable_fileinfo+set}" = set; then
+ enableval="$enable_fileinfo"
+@@ -34699,12 +35719,12 @@
+ for ac_func in utimes strndup
+ do
+ echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
+-echo "configure:34703: checking for $ac_func" >&5
++echo "configure:35723: checking for $ac_func" >&5
+ if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+ else
+ cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
++if { (eval echo configure:35751: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+ rm -rf conftest*
+ eval "ac_cv_func_$ac_func=yes"
+ else
+@@ -34765,7 +35785,7 @@
+ php_enable_filter=yes
+
+ echo $ac_n "checking whether to enable input filter support""... $ac_c" 1>&6
+-echo "configure:34769: checking whether to enable input filter support" >&5
++echo "configure:35789: checking whether to enable input filter support" >&5
+ # Check whether --enable-filter or --disable-filter was given.
+ if test "${enable_filter+set}" = set; then
+ enableval="$enable_filter"
+@@ -34809,7 +35829,7 @@
+ php_with_pcre_dir=no
+
+ echo $ac_n "checking pcre install prefix""... $ac_c" 1>&6
+-echo "configure:34813: checking pcre install prefix" >&5
++echo "configure:35833: checking pcre install prefix" >&5
+ # Check whether --with-pcre-dir or --without-pcre-dir was given.
+ if test "${with_pcre_dir+set}" = set; then
+ withval="$with_pcre_dir"
+@@ -34836,7 +35856,7 @@
+ old_CPPFLAGS=$CPPFLAGS
+ CPPFLAGS=$INCLUDES
+ cat > conftest.$ac_ext <
+@@ -34855,7 +35875,7 @@
+ rm -rf conftest*
+
+ cat > conftest.$ac_ext <
+@@ -35225,7 +36245,7 @@
+ php_enable_ftp=no
+
+ echo $ac_n "checking whether to enable FTP support""... $ac_c" 1>&6
+-echo "configure:35229: checking whether to enable FTP support" >&5
++echo "configure:36249: checking whether to enable FTP support" >&5
+ # Check whether --enable-ftp or --disable-ftp was given.
+ if test "${enable_ftp+set}" = set; then
+ enableval="$enable_ftp"
+@@ -35269,7 +36289,7 @@
+ php_with_openssl_dir=no
+
+ echo $ac_n "checking OpenSSL dir for FTP""... $ac_c" 1>&6
+-echo "configure:35273: checking OpenSSL dir for FTP" >&5
++echo "configure:36293: checking OpenSSL dir for FTP" >&5
+ # Check whether --with-openssl-dir or --without-openssl-dir was given.
+ if test "${with_openssl_dir+set}" = set; then
+ withval="$with_openssl_dir"
+@@ -35607,7 +36627,7 @@
+ # Extract the first word of "pkg-config", so it can be a program name with args.
+ set dummy pkg-config; ac_word=$2
+ echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
+-echo "configure:35611: checking for $ac_word" >&5
++echo "configure:36631: checking for $ac_word" >&5
+ if eval "test \"`echo '$''{'ac_cv_path_PKG_CONFIG'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+ else
+@@ -35812,9 +36832,9 @@
+ old_CPPFLAGS=$CPPFLAGS
+ CPPFLAGS=-I$OPENSSL_INCDIR
+ echo $ac_n "checking for OpenSSL version""... $ac_c" 1>&6
+-echo "configure:35816: checking for OpenSSL version" >&5
++echo "configure:36836: checking for OpenSSL version" >&5
+ cat > conftest.$ac_ext <
+@@ -35969,7 +36989,7 @@
+ done
+
+ echo $ac_n "checking for CRYPTO_free in -lcrypto""... $ac_c" 1>&6
+-echo "configure:35973: checking for CRYPTO_free in -lcrypto" >&5
++echo "configure:36993: checking for CRYPTO_free in -lcrypto" >&5
+ ac_lib_var=`echo crypto'_'CRYPTO_free | sed 'y%./+-%__p_%'`
+ if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+@@ -35977,7 +36997,7 @@
+ ac_save_LIBS="$LIBS"
+ LIBS="-lcrypto $LIBS"
+ cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
++if { (eval echo configure:37012: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+ rm -rf conftest*
+ eval "ac_cv_lib_$ac_lib_var=yes"
+ else
+@@ -36145,7 +37165,7 @@
+ done
+
+ echo $ac_n "checking for SSL_CTX_set_ssl_version in -lssl""... $ac_c" 1>&6
+-echo "configure:36149: checking for SSL_CTX_set_ssl_version in -lssl" >&5
++echo "configure:37169: checking for SSL_CTX_set_ssl_version in -lssl" >&5
+ ac_lib_var=`echo ssl'_'SSL_CTX_set_ssl_version | sed 'y%./+-%__p_%'`
+ if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+@@ -36153,7 +37173,7 @@
+ ac_save_LIBS="$LIBS"
+ LIBS="-lssl $LIBS"
+ cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
++if { (eval echo configure:37188: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+ rm -rf conftest*
+ eval "ac_cv_lib_$ac_lib_var=yes"
+ else
+@@ -36283,7 +37303,7 @@
+ php_with_gd=no
+
+ echo $ac_n "checking for GD support""... $ac_c" 1>&6
+-echo "configure:36287: checking for GD support" >&5
++echo "configure:37307: checking for GD support" >&5
+ # Check whether --with-gd or --without-gd was given.
+ if test "${with_gd+set}" = set; then
+ withval="$with_gd"
+@@ -36328,7 +37348,7 @@
+ php_with_jpeg_dir=no
+
+ echo $ac_n "checking for the location of libjpeg""... $ac_c" 1>&6
+-echo "configure:36332: checking for the location of libjpeg" >&5
++echo "configure:37352: checking for the location of libjpeg" >&5
+ # Check whether --with-jpeg-dir or --without-jpeg-dir was given.
+ if test "${with_jpeg_dir+set}" = set; then
+ withval="$with_jpeg_dir"
+@@ -36353,7 +37373,7 @@
+ php_with_png_dir=no
+
+ echo $ac_n "checking for the location of libpng""... $ac_c" 1>&6
+-echo "configure:36357: checking for the location of libpng" >&5
++echo "configure:37377: checking for the location of libpng" >&5
+ # Check whether --with-png-dir or --without-png-dir was given.
+ if test "${with_png_dir+set}" = set; then
+ withval="$with_png_dir"
+@@ -36378,7 +37398,7 @@
+ php_with_zlib_dir=no
+
+ echo $ac_n "checking for the location of libz""... $ac_c" 1>&6
+-echo "configure:36382: checking for the location of libz" >&5
++echo "configure:37402: checking for the location of libz" >&5
+ # Check whether --with-zlib-dir or --without-zlib-dir was given.
+ if test "${with_zlib_dir+set}" = set; then
+ withval="$with_zlib_dir"
+@@ -36402,7 +37422,7 @@
+ php_with_xpm_dir=no
+
+ echo $ac_n "checking for the location of libXpm""... $ac_c" 1>&6
+-echo "configure:36406: checking for the location of libXpm" >&5
++echo "configure:37426: checking for the location of libXpm" >&5
+ # Check whether --with-xpm-dir or --without-xpm-dir was given.
+ if test "${with_xpm_dir+set}" = set; then
+ withval="$with_xpm_dir"
+@@ -36425,7 +37445,7 @@
+ php_with_freetype_dir=no
+
+ echo $ac_n "checking for FreeType 2""... $ac_c" 1>&6
+-echo "configure:36429: checking for FreeType 2" >&5
++echo "configure:37449: checking for FreeType 2" >&5
+ # Check whether --with-freetype-dir or --without-freetype-dir was given.
+ if test "${with_freetype_dir+set}" = set; then
+ withval="$with_freetype_dir"
+@@ -36448,7 +37468,7 @@
+ php_with_t1lib=no
+
+ echo $ac_n "checking for T1lib support""... $ac_c" 1>&6
+-echo "configure:36452: checking for T1lib support" >&5
++echo "configure:37472: checking for T1lib support" >&5
+ # Check whether --with-t1lib or --without-t1lib was given.
+ if test "${with_t1lib+set}" = set; then
+ withval="$with_t1lib"
+@@ -36471,7 +37491,7 @@
+ php_enable_gd_native_ttf=no
+
+ echo $ac_n "checking whether to enable truetype string function in GD""... $ac_c" 1>&6
+-echo "configure:36475: checking whether to enable truetype string function in GD" >&5
++echo "configure:37495: checking whether to enable truetype string function in GD" >&5
+ # Check whether --enable-gd-native-ttf or --disable-gd-native-ttf was given.
+ if test "${enable_gd_native_ttf+set}" = set; then
+ enableval="$enable_gd_native_ttf"
+@@ -36494,7 +37514,7 @@
+ php_enable_gd_jis_conv=no
+
+ echo $ac_n "checking whether to enable JIS-mapped Japanese font support in GD""... $ac_c" 1>&6
+-echo "configure:36498: checking whether to enable JIS-mapped Japanese font support in GD" >&5
++echo "configure:37518: checking whether to enable JIS-mapped Japanese font support in GD" >&5
+ # Check whether --enable-gd-jis-conv or --disable-gd-jis-conv was given.
+ if test "${enable_gd_jis_conv+set}" = set; then
+ enableval="$enable_gd_jis_conv"
+@@ -36546,12 +37566,12 @@
+ for ac_func in fabsf floorf
+ do
+ echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
+-echo "configure:36550: checking for $ac_func" >&5
++echo "configure:37570: checking for $ac_func" >&5
+ if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+ else
+ cat > conftest.$ac_ext <