--- ./configure.in Mon May 6 16:02:07 2002 +++ ../inn-2.3.3/./configure.in Fri Jun 14 14:56:11 2002 @@ -583,23 +583,28 @@ dnl other platforms where it may be necessary (it isn't on Linux; Linux dnl shared libraries can manage their own dependencies). if test x"$DO_PERL" = xDO ; then - AC_MSG_CHECKING(for Perl linkage) - inn_perl_core_path=`$_PATH_PERL -MConfig -e 'print $Config{archlibexp}'` - inn_perl_core_flags=`$_PATH_PERL -MExtUtils::Embed -e ccopts` - inn_perl_core_libs=`$_PATH_PERL -MExtUtils::Embed -e ldopts 2>&1 | tail -1` - for i in $LIBS ; do - inn_perl_core_libs=`echo "$inn_perl_core_libs" | sed "s/ $i//"` - done - case $host in - *-linux*) - inn_perl_core_libs=`echo "$inn_perl_core_libs" | sed 's/ -lgdbm//'` - ;; - esac - inn_perl_core_flags=`echo "$inn_perl_core_flags" | sed 's/^ *//'` - inn_perl_core_libs=`echo "$inn_perl_core_libs" | sed 's/^ *//'` - PERL_INC="$inn_perl_core_flags" - PERL_LIB="$inn_perl_core_libs" - AC_MSG_RESULT($inn_perl_core_path) + if test -z "$PERL_INC"; then + AC_MSG_CHECKING(for Perl linkage) + inn_perl_core_flags=`$_PATH_PERL -MExtUtils::Embed -e ccopts` + inn_perl_core_flags=`echo "$inn_perl_core_flags" | sed 's/^ *//'` + inn_perl_core_path=`$_PATH_PERL -MConfig -e 'print $Config{archlibexp}'` + PERL_INC="$inn_perl_core_flags" + AC_MSG_RESULT($inn_perl_core_path) + fi + + if test -z "$PERL_LIB"; then + inn_perl_core_libs=`$_PATH_PERL -MExtUtils::Embed -e ldopts 2>&1 | tail -1` + for i in $LIBS ; do + inn_perl_core_libs=`echo "$inn_perl_core_libs" | sed "s/ $i//"` + done + case $host in + *-linux*) + inn_perl_core_libs=`echo "$inn_perl_core_libs" | sed 's/ -lgdbm//'` + ;; + esac + inn_perl_core_libs=`echo "$inn_perl_core_libs" | sed 's/^ *//'` + PERL_LIB="$inn_perl_core_libs" + fi else PERL_INC='' PERL_LIB='' --- ./storage/Make.ovmethods Mon May 6 16:02:07 2002 +++ ../inn-2.3.3/./storage/Make.ovmethods Fri Jun 14 17:23:49 2002 @@ -1,5 +1,5 @@ # This file is automatically generated by ovbuildconfig -OVSUBDIR = ovdb ov3 buffindexed -OV_OBJECTS = ./buffindexed/buffindexed.o ./ov3/ov3.o ./ovdb/ovdb.o -LOV_OBJECTS = ./buffindexed/buffindexed.lo ./ov3/ov3.lo ./ovdb/ovdb.lo +OVSUBDIR = buffindexed ovdb ov3 +OV_OBJECTS = ./ov3/ov3.o ./ovdb/ovdb.o ./buffindexed/buffindexed.o +LOV_OBJECTS = ./ov3/ov3.lo ./ovdb/ovdb.lo ./buffindexed/buffindexed.lo --- ./storage/Makefile Mon May 6 16:02:07 2002 +++ ../inn-2.3.3/./storage/Makefile Fri Jun 14 17:23:38 2002 @@ -29,6 +29,7 @@ rm -f ovmethods.c ovmethods.h rm -f profiled libstorage_p.a rm -f buildconfig ovbuildconfig + rm -f buildconfig.was ovbuildconfig.was @for D in $(SUBDIR) $(OVSUBDIR); do \ cd $$D; $(MAKE) clean; cd .. ;\ done @@ -58,10 +59,16 @@ @./ovbuildconfig `find . -name ovmethod.config -print` buildconfig: buildconfig.in $(FIXSCRIPT) - $(FIXSCRIPT) -i buildconfig.in + $(FIXSCRIPT) -i $@.in && cp $@ $@.was + PD=`dirname $(PERLINC)`; PD=`dirname $$PD`; \ + sed -e "s+^#! *\(/usr/freeware/bin/perl\)+#! $(ROOT)\1 $$PD+" $@.was > $@ + chmod u+x $@ ovbuildconfig: ovbuildconfig.in $(FIXSCRIPT) - $(FIXSCRIPT) -i ovbuildconfig.in + $(FIXSCRIPT) -i $@.in && cp $@ $@.was + PD=`dirname $(PERLINC)`; PD=`dirname $$PD`; \ + sed -e "s+^#! *\(/usr/freeware/bin/perl\)+#! $(ROOT)\1 $$PD+" $@.was > $@ + chmod u+x $@ ## Profiling. The rules are a bit brute-force, but good enough. profiled: ../libstorage_p.a --- ./storage/Make.methods Mon May 6 16:02:07 2002 +++ ../inn-2.3.3/./storage/Make.methods Fri Jun 14 17:23:49 2002 @@ -1,5 +1,5 @@ # This file is automatically generated by buildconfig -SUBDIR = tradspool timecaf trash cnfs timehash -SM_OBJECTS = ./cnfs/cnfs.o ./timecaf/caf.o ./timecaf/timecaf.o ./timehash/timehash.o ./tradspool/tradspool.o ./trash/trash.o -LSM_OBJECTS = ./cnfs/cnfs.lo ./timecaf/caf.lo ./timecaf/timecaf.lo ./timehash/timehash.lo ./tradspool/tradspool.lo ./trash/trash.lo +SUBDIR = timehash cnfs timecaf trash tradspool +SM_OBJECTS = ./cnfs/cnfs.o ./tradspool/tradspool.o ./trash/trash.o ./timehash/timehash.o ./timecaf/caf.o ./timecaf/timecaf.o +LSM_OBJECTS = ./cnfs/cnfs.lo ./tradspool/tradspool.lo ./trash/trash.lo ./timehash/timehash.lo ./timecaf/caf.lo ./timecaf/timecaf.lo --- ./configure Mon May 6 16:02:07 2002 +++ ../inn-2.3.3/./configure Fri Jun 14 14:56:19 2002 @@ -1,6 +1,6 @@ #! /bin/sh -# From configure.in Revision: 1.163.2.22 +# From configure.in Revision: 1.163.2.23 ## libtool.m4 - Configure libtool for the target system. -*-Shell-script-*- @@ -3934,24 +3934,29 @@ if test x"$DO_PERL" = xDO ; then - echo $ac_n "checking for Perl linkage""... $ac_c" 1>&6 -echo "configure:3939: checking for Perl linkage" >&5 - inn_perl_core_path=`$_PATH_PERL -MConfig -e 'print $Config{archlibexp}'` - inn_perl_core_flags=`$_PATH_PERL -MExtUtils::Embed -e ccopts` - inn_perl_core_libs=`$_PATH_PERL -MExtUtils::Embed -e ldopts 2>&1 | tail -1` - for i in $LIBS ; do - inn_perl_core_libs=`echo "$inn_perl_core_libs" | sed "s/ $i//"` - done - case $host in - *-linux*) - inn_perl_core_libs=`echo "$inn_perl_core_libs" | sed 's/ -lgdbm//'` - ;; - esac - inn_perl_core_flags=`echo "$inn_perl_core_flags" | sed 's/^ *//'` - inn_perl_core_libs=`echo "$inn_perl_core_libs" | sed 's/^ *//'` - PERL_INC="$inn_perl_core_flags" - PERL_LIB="$inn_perl_core_libs" - echo "$ac_t""$inn_perl_core_path" 1>&6 + if test -z "$PERL_INC"; then + echo $ac_n "checking for Perl linkage""... $ac_c" 1>&6 +echo "configure:3940: checking for Perl linkage" >&5 + inn_perl_core_flags=`$_PATH_PERL -MExtUtils::Embed -e ccopts` + inn_perl_core_flags=`echo "$inn_perl_core_flags" | sed 's/^ *//'` + inn_perl_core_path=`$_PATH_PERL -MConfig -e 'print $Config{archlibexp}'` + PERL_INC="$inn_perl_core_flags" + echo "$ac_t""$inn_perl_core_path" 1>&6 + fi + + if test -z "$PERL_LIB"; then + inn_perl_core_libs=`$_PATH_PERL -MExtUtils::Embed -e ldopts 2>&1 | tail -1` + for i in $LIBS ; do + inn_perl_core_libs=`echo "$inn_perl_core_libs" | sed "s/ $i//"` + done + case $host in + *-linux*) + inn_perl_core_libs=`echo "$inn_perl_core_libs" | sed 's/ -lgdbm//'` + ;; + esac + inn_perl_core_libs=`echo "$inn_perl_core_libs" | sed 's/^ *//'` + PERL_LIB="$inn_perl_core_libs" + fi else PERL_INC='' PERL_LIB='' @@ -3961,7 +3966,7 @@ if test x"$DO_PYTHON" = xdefine ; then echo $ac_n "checking for Python linkage""... $ac_c" 1>&6 -echo "configure:3965: checking for Python linkage" >&5 +echo "configure:3970: checking for Python linkage" >&5 py_prefix=`$_PATH_PYTHON -c 'import sys; print sys.prefix'` py_ver=`$_PATH_PYTHON -c 'import sys; print sys.version[:3]'` py_libdir="${py_prefix}/lib/python${py_ver}" @@ -3989,7 +3994,7 @@ if test x"$DO_LFS" = xDO ; then echo $ac_n "checking for largefile linkage""... $ac_c" 1>&6 -echo "configure:3993: checking for largefile linkage" >&5 +echo "configure:3998: checking for largefile linkage" >&5 case "$host" in *-aix4.01*) echo "$ac_t""no" 1>&6 @@ -4016,7 +4021,7 @@ # Extract the first word of "getconf", so it can be a program name with args. set dummy getconf; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:4020: checking for $ac_word" >&5 +echo "configure:4025: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_path_GETCONF'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -4077,7 +4082,7 @@ fi echo $ac_n "checking if OpenSSL is desired""... $ac_c" 1>&6 -echo "configure:4081: checking if OpenSSL is desired" >&5 +echo "configure:4086: checking if OpenSSL is desired" >&5 if test x"$OPENSSL_DIR" = xno ; then echo "$ac_t""no" 1>&6 SSL_BIN= @@ -4086,7 +4091,7 @@ else echo "$ac_t""yes" 1>&6 echo $ac_n "checking for OpenSSL location""... $ac_c" 1>&6 -echo "configure:4090: checking for OpenSSL location" >&5 +echo "configure:4095: checking for OpenSSL location" >&5 if test x"$OPENSSL_DIR" = xyes ; then for dir in $prefix /usr/local/ssl /usr/lib/ssl /usr/ssl /usr/pkg \ /usr/local /usr ; do @@ -4114,7 +4119,7 @@ LIBS="$LIBS -L${OPENSSL_DIR}/lib" SSL_LIB='' echo $ac_n "checking for RSAPublicEncrypt in -lrsaref""... $ac_c" 1>&6 -echo "configure:4118: checking for RSAPublicEncrypt in -lrsaref" >&5 +echo "configure:4123: checking for RSAPublicEncrypt in -lrsaref" >&5 ac_lib_var=`echo rsaref'_'RSAPublicEncrypt | sed 'y%./+-%__p_%'` if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -4122,7 +4127,7 @@ ac_save_LIBS="$LIBS" LIBS="-lrsaref $LIBS" cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:4142: \"$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 @@ -4149,7 +4154,7 @@ if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then echo "$ac_t""yes" 1>&6 echo $ac_n "checking for RSAPublicEncrypt in -lRSAglue""... $ac_c" 1>&6 -echo "configure:4153: checking for RSAPublicEncrypt in -lRSAglue" >&5 +echo "configure:4158: checking for RSAPublicEncrypt in -lRSAglue" >&5 ac_lib_var=`echo RSAglue'_'RSAPublicEncrypt | sed 'y%./+-%__p_%'` if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -4157,7 +4162,7 @@ ac_save_LIBS="$LIBS" LIBS="-lRSAglue -lrsaref $LIBS" cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:4177: \"$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 @@ -4193,7 +4198,7 @@ fi echo $ac_n "checking for BIO_new in -lcrypto""... $ac_c" 1>&6 -echo "configure:4197: checking for BIO_new in -lcrypto" >&5 +echo "configure:4202: checking for BIO_new in -lcrypto" >&5 ac_lib_var=`echo crypto'_'BIO_new | sed 'y%./+-%__p_%'` if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -4201,7 +4206,7 @@ ac_save_LIBS="$LIBS" LIBS="-lcrypto $SSL_LIB $LIBS" cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:4221: \"$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 @@ -4228,7 +4233,7 @@ if eval "test \"`echo '$ac_cv_lib_'$ac_lib_var`\" = yes"; then echo "$ac_t""yes" 1>&6 echo $ac_n "checking for DSO_load in -ldl""... $ac_c" 1>&6 -echo "configure:4232: checking for DSO_load in -ldl" >&5 +echo "configure:4237: checking for DSO_load in -ldl" >&5 ac_lib_var=`echo dl'_'DSO_load | sed 'y%./+-%__p_%'` if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -4236,7 +4241,7 @@ ac_save_LIBS="$LIBS" LIBS="-ldl -lcrypto -ldl $SSL_LIB $LIBS" cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:4256: \"$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 @@ -4274,7 +4279,7 @@ fi echo $ac_n "checking for SSL_library_init in -lssl""... $ac_c" 1>&6 -echo "configure:4278: checking for SSL_library_init in -lssl" >&5 +echo "configure:4283: checking for SSL_library_init in -lssl" >&5 ac_lib_var=`echo ssl'_'SSL_library_init | sed 'y%./+-%__p_%'` if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -4282,7 +4287,7 @@ ac_save_LIBS="$LIBS" LIBS="-lssl $SSL_LIB $LIBS" cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:4302: \"$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 @@ -4328,12 +4333,12 @@ echo $ac_n "checking for ANSI C header files""... $ac_c" 1>&6 -echo "configure:4332: checking for ANSI C header files" >&5 +echo "configure:4337: 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 @@ -4341,7 +4346,7 @@ #include EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:4345: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:4350: \"$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* @@ -4358,7 +4363,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 @@ -4376,7 +4381,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 @@ -4397,7 +4402,7 @@ : else cat > conftest.$ac_ext < #define ISLOWER(c) ('a' <= (c) && (c) <= 'z') @@ -4408,7 +4413,7 @@ exit (0); } EOF -if { (eval echo configure:4412: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:4417: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null then : else @@ -4437,17 +4442,17 @@ do ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 -echo "configure:4441: checking for $ac_hdr" >&5 +echo "configure:4446: 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:4451: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:4456: \"$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* @@ -4476,12 +4481,12 @@ for ac_func in memcpy strchr do echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 -echo "configure:4480: checking for $ac_func" >&5 +echo "configure:4485: 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:4513: \"$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 @@ -4531,12 +4536,12 @@ for ac_func in memchr memmove memset do echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 -echo "configure:4535: checking for $ac_func" >&5 +echo "configure:4540: 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:4568: \"$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 @@ -4592,12 +4597,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:4596: checking for $ac_hdr that defines DIR" >&5 +echo "configure:4601: 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> @@ -4605,7 +4610,7 @@ DIR *dirp = 0; ; return 0; } EOF -if { (eval echo configure:4609: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:4614: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* eval "ac_cv_header_dirent_$ac_safe=yes" else @@ -4630,7 +4635,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:4634: checking for opendir in -ldir" >&5 +echo "configure:4639: 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 @@ -4638,7 +4643,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:4658: \"$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 @@ -4671,7 +4676,7 @@ else echo $ac_n "checking for opendir in -lx""... $ac_c" 1>&6 -echo "configure:4675: checking for opendir in -lx" >&5 +echo "configure:4680: 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 @@ -4679,7 +4684,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:4699: \"$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 @@ -4713,12 +4718,12 @@ fi echo $ac_n "checking whether time.h and sys/time.h may both be included""... $ac_c" 1>&6 -echo "configure:4717: checking whether time.h and sys/time.h may both be included" >&5 +echo "configure:4722: checking whether time.h and sys/time.h may both be included" >&5 if eval "test \"`echo '$''{'ac_cv_header_time'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < #include @@ -4727,7 +4732,7 @@ struct tm *tp; ; return 0; } EOF -if { (eval echo configure:4731: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:4736: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ac_cv_header_time=yes else @@ -4748,12 +4753,12 @@ fi echo $ac_n "checking for sys/wait.h that is POSIX.1 compatible""... $ac_c" 1>&6 -echo "configure:4752: checking for sys/wait.h that is POSIX.1 compatible" >&5 +echo "configure:4757: checking for sys/wait.h that is POSIX.1 compatible" >&5 if eval "test \"`echo '$''{'ac_cv_header_sys_wait_h'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < #include @@ -4769,7 +4774,7 @@ s = WIFEXITED (s) ? WEXITSTATUS (s) : 1; ; return 0; } EOF -if { (eval echo configure:4773: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:4778: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ac_cv_header_sys_wait_h=yes else @@ -4796,17 +4801,17 @@ do ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 -echo "configure:4800: checking for $ac_hdr" >&5 +echo "configure:4805: 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:4810: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:4815: \"$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* @@ -4838,17 +4843,17 @@ do ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 -echo "configure:4842: checking for $ac_hdr" >&5 +echo "configure:4847: 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:4852: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:4857: \"$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* @@ -4877,12 +4882,12 @@ fi echo $ac_n "checking for st_blksize in struct stat""... $ac_c" 1>&6 -echo "configure:4881: checking for st_blksize in struct stat" >&5 +echo "configure:4886: 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 @@ -4890,7 +4895,7 @@ struct stat s; s.st_blksize; ; return 0; } EOF -if { (eval echo configure:4894: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:4899: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ac_cv_struct_st_blksize=yes else @@ -4911,12 +4916,12 @@ fi echo $ac_n "checking whether struct tm is in sys/time.h or time.h""... $ac_c" 1>&6 -echo "configure:4915: checking whether struct tm is in sys/time.h or time.h" >&5 +echo "configure:4920: 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 @@ -4924,7 +4929,7 @@ struct tm *tp; tp->tm_sec; ; return 0; } EOF -if { (eval echo configure:4928: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:4933: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ac_cv_struct_tm=time.h else @@ -4945,12 +4950,12 @@ fi echo $ac_n "checking for working const""... $ac_c" 1>&6 -echo "configure:4949: checking for working const" >&5 +echo "configure:4954: checking for working const" >&5 if eval "test \"`echo '$''{'ac_cv_c_const'+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:5008: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ac_cv_c_const=yes else @@ -5020,12 +5025,12 @@ fi echo $ac_n "checking for size_t""... $ac_c" 1>&6 -echo "configure:5024: checking for size_t" >&5 +echo "configure:5029: 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 @@ -5053,12 +5058,12 @@ fi echo $ac_n "checking for uid_t in sys/types.h""... $ac_c" 1>&6 -echo "configure:5057: checking for uid_t in sys/types.h" >&5 +echo "configure:5062: 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 @@ -5087,12 +5092,12 @@ fi echo $ac_n "checking for off_t""... $ac_c" 1>&6 -echo "configure:5091: checking for off_t" >&5 +echo "configure:5096: checking for off_t" >&5 if eval "test \"`echo '$''{'ac_cv_type_off_t'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < #if STDC_HEADERS @@ -5120,12 +5125,12 @@ fi echo $ac_n "checking for pid_t""... $ac_c" 1>&6 -echo "configure:5124: checking for pid_t" >&5 +echo "configure:5129: checking for pid_t" >&5 if eval "test \"`echo '$''{'ac_cv_type_pid_t'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < #if STDC_HEADERS @@ -5153,12 +5158,12 @@ fi echo $ac_n "checking for caddr_t""... $ac_c" 1>&6 -echo "configure:5157: checking for caddr_t" >&5 +echo "configure:5162: checking for caddr_t" >&5 if eval "test \"`echo '$''{'ac_cv_type_caddr_t'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < #if STDC_HEADERS @@ -5186,12 +5191,12 @@ fi echo $ac_n "checking for ssize_t""... $ac_c" 1>&6 -echo "configure:5190: checking for ssize_t" >&5 +echo "configure:5195: checking for ssize_t" >&5 if eval "test \"`echo '$''{'ac_cv_type_ssize_t'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < #if STDC_HEADERS @@ -5223,12 +5228,12 @@ echo $ac_n "checking for sig_atomic_t""... $ac_c" 1>&6 -echo "configure:5227: checking for sig_atomic_t" >&5 +echo "configure:5232: checking for sig_atomic_t" >&5 if eval "test \"`echo '$''{'ac_cv_type_sig_atomic_t'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < @@ -5260,12 +5265,12 @@ echo $ac_n "checking for socklen_t""... $ac_c" 1>&6 -echo "configure:5264: checking for socklen_t" >&5 +echo "configure:5269: checking for socklen_t" >&5 if eval "test \"`echo '$''{'ac_cv_type_socklen_t'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < @@ -5299,7 +5304,7 @@ echo $ac_n "checking value of IOV_MAX""... $ac_c" 1>&6 -echo "configure:5303: checking value of IOV_MAX" >&5 +echo "configure:5308: checking value of IOV_MAX" >&5 if eval "test \"`echo '$''{'inn_cv_macro_iov_max'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -5307,7 +5312,7 @@ 16 else cat > conftest.$ac_ext < @@ -5356,7 +5361,7 @@ } EOF -if { (eval echo configure:5360: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:5365: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null then inn_cv_macro_iov_max=`cat conftestval` else @@ -5386,12 +5391,12 @@ echo $ac_n "checking for SUN_LEN""... $ac_c" 1>&6 -echo "configure:5390: checking for SUN_LEN" >&5 +echo "configure:5395: checking for SUN_LEN" >&5 if eval "test \"`echo '$''{'inn_cv_macro_sun_len'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < @@ -5406,7 +5411,7 @@ ; return 0; } EOF -if { (eval echo configure:5410: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:5415: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* inn_cv_macro_sun_len=yes else @@ -5429,12 +5434,12 @@ echo $ac_n "checking for tm_gmtoff in struct tm""... $ac_c" 1>&6 -echo "configure:5433: checking for tm_gmtoff in struct tm" >&5 +echo "configure:5438: checking for tm_gmtoff in struct tm" >&5 if eval "test \"`echo '$''{'inn_cv_struct_tm_gmtoff'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < int main() { @@ -5441,7 +5446,7 @@ struct tm t; t.tm_gmtoff = 3600 ; return 0; } EOF -if { (eval echo configure:5445: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:5450: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* inn_cv_struct_tm_gmtoff=yes else @@ -5463,12 +5468,12 @@ echo $ac_n "checking for tm_zone in struct tm""... $ac_c" 1>&6 -echo "configure:5467: checking for tm_zone in struct tm" >&5 +echo "configure:5472: checking for tm_zone in struct tm" >&5 if eval "test \"`echo '$''{'inn_cv_struct_tm_zone'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < int main() { @@ -5475,7 +5480,7 @@ struct tm t; t.tm_zone = "UTC" ; return 0; } EOF -if { (eval echo configure:5479: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:5484: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* inn_cv_struct_tm_zone=yes else @@ -5497,12 +5502,12 @@ echo $ac_n "checking for timezone variable""... $ac_c" 1>&6 -echo "configure:5501: checking for timezone variable" >&5 +echo "configure:5506: checking for timezone variable" >&5 if eval "test \"`echo '$''{'inn_cv_var_timezone'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < int main() { @@ -5509,7 +5514,7 @@ timezone = 3600; altzone = 7200 ; return 0; } EOF -if { (eval echo configure:5513: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:5518: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* inn_cv_var_timezone=yes else @@ -5531,12 +5536,12 @@ echo $ac_n "checking for tzname variable""... $ac_c" 1>&6 -echo "configure:5535: checking for tzname variable" >&5 +echo "configure:5540: checking for tzname variable" >&5 if eval "test \"`echo '$''{'inn_cv_var_tzname'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < int main() { @@ -5543,7 +5548,7 @@ *tzname = "UTC" ; return 0; } EOF -if { (eval echo configure:5547: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:5552: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* inn_cv_var_tzname=yes else @@ -5566,7 +5571,7 @@ echo $ac_n "checking size of int""... $ac_c" 1>&6 -echo "configure:5570: checking size of int" >&5 +echo "configure:5575: 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 @@ -5574,7 +5579,7 @@ ac_cv_sizeof_int=4 else cat > conftest.$ac_ext < main() @@ -5585,7 +5590,7 @@ exit(0); } EOF -if { (eval echo configure:5589: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:5594: \"$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 @@ -5605,7 +5610,7 @@ else echo $ac_n "checking size of long""... $ac_c" 1>&6 -echo "configure:5609: checking size of long" >&5 +echo "configure:5614: 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 @@ -5613,7 +5618,7 @@ ac_cv_sizeof_long=4 else cat > conftest.$ac_ext < main() @@ -5624,7 +5629,7 @@ exit(0); } EOF -if { (eval echo configure:5628: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:5633: \"$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 @@ -5644,7 +5649,7 @@ else echo $ac_n "checking size of short""... $ac_c" 1>&6 -echo "configure:5648: checking size of short" >&5 +echo "configure:5653: checking size of short" >&5 if eval "test \"`echo '$''{'ac_cv_sizeof_short'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -5652,7 +5657,7 @@ ac_cv_sizeof_short=2 else cat > conftest.$ac_ext < main() @@ -5663,7 +5668,7 @@ exit(0); } EOF -if { (eval echo configure:5667: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:5672: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null then ac_cv_sizeof_short=`cat conftestval` else @@ -5692,12 +5697,12 @@ echo $ac_n "checking for int32_t""... $ac_c" 1>&6 -echo "configure:5696: checking for int32_t" >&5 +echo "configure:5701: checking for int32_t" >&5 if eval "test \"`echo '$''{'ac_cv_type_int32_t'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < @@ -5736,12 +5741,12 @@ echo $ac_n "checking for uint32_t""... $ac_c" 1>&6 -echo "configure:5740: checking for uint32_t" >&5 +echo "configure:5745: checking for uint32_t" >&5 if eval "test \"`echo '$''{'ac_cv_type_uint32_t'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < @@ -5779,7 +5784,7 @@ echo $ac_n "checking for 8-bit clean memcmp""... $ac_c" 1>&6 -echo "configure:5783: checking for 8-bit clean memcmp" >&5 +echo "configure:5788: checking for 8-bit clean memcmp" >&5 if eval "test \"`echo '$''{'ac_cv_func_memcmp_clean'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -5787,7 +5792,7 @@ ac_cv_func_memcmp_clean=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:5806: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null then ac_cv_func_memcmp_clean=yes else @@ -5816,17 +5821,17 @@ ac_safe=`echo "vfork.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for vfork.h""... $ac_c" 1>&6 -echo "configure:5820: checking for vfork.h" >&5 +echo "configure:5825: checking for vfork.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:5830: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:5835: \"$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* @@ -5851,18 +5856,18 @@ fi echo $ac_n "checking for working vfork""... $ac_c" 1>&6 -echo "configure:5855: checking for working vfork" >&5 +echo "configure:5860: checking for working vfork" >&5 if eval "test \"`echo '$''{'ac_cv_func_vfork_works'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else if test "$cross_compiling" = yes; then echo $ac_n "checking for vfork""... $ac_c" 1>&6 -echo "configure:5861: checking for vfork" >&5 +echo "configure:5866: checking for vfork" >&5 if eval "test \"`echo '$''{'ac_cv_func_vfork'+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:5894: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_vfork=yes" else @@ -5907,7 +5912,7 @@ ac_cv_func_vfork_works=$ac_cv_func_vfork else cat > conftest.$ac_ext < @@ -6002,7 +6007,7 @@ } } EOF -if { (eval echo configure:6006: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:6011: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null then ac_cv_func_vfork_works=yes else @@ -6025,12 +6030,12 @@ fi echo $ac_n "checking return type of signal handlers""... $ac_c" 1>&6 -echo "configure:6029: checking return type of signal handlers" >&5 +echo "configure:6034: checking return type of signal handlers" >&5 if eval "test \"`echo '$''{'ac_cv_type_signal'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < #include @@ -6047,7 +6052,7 @@ int i; ; return 0; } EOF -if { (eval echo configure:6051: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:6056: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ac_cv_type_signal=void else @@ -6072,12 +6077,12 @@ symlink waitpid do echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 -echo "configure:6076: checking for $ac_func" >&5 +echo "configure:6081: 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:6109: \"$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 @@ -6128,12 +6133,12 @@ for ac_func in seteuid setreuid do echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 -echo "configure:6132: checking for $ac_func" >&5 +echo "configure:6137: 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:6165: \"$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 @@ -6182,12 +6187,12 @@ echo $ac_n "checking for getrlimit""... $ac_c" 1>&6 -echo "configure:6186: checking for getrlimit" >&5 +echo "configure:6191: checking for getrlimit" >&5 if eval "test \"`echo '$''{'ac_cv_func_getrlimit'+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:6219: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_getrlimit=yes" else @@ -6225,12 +6230,12 @@ if eval "test \"`echo '$ac_cv_func_'getrlimit`\" = yes"; then echo "$ac_t""yes" 1>&6 echo $ac_n "checking for setrlimit""... $ac_c" 1>&6 -echo "configure:6229: checking for setrlimit" >&5 +echo "configure:6234: checking for setrlimit" >&5 if eval "test \"`echo '$''{'ac_cv_func_setrlimit'+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:6262: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_setrlimit=yes" else @@ -6283,12 +6288,12 @@ for ac_func in sysconf getdtablesize ulimit do echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 -echo "configure:6287: checking for $ac_func" >&5 +echo "configure:6292: 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:6320: \"$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 @@ -6338,12 +6343,12 @@ if test x"$ac_cv_func_fcntl" = xno ; then echo $ac_n "checking for flock""... $ac_c" 1>&6 -echo "configure:6342: checking for flock" >&5 +echo "configure:6347: checking for flock" >&5 if eval "test \"`echo '$''{'ac_cv_func_flock'+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:6375: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_flock=yes" else @@ -6387,7 +6392,7 @@ else echo "$ac_t""no" 1>&6 echo $ac_n "checking for flock in -lbsd""... $ac_c" 1>&6 -echo "configure:6391: checking for flock in -lbsd" >&5 +echo "configure:6396: checking for flock in -lbsd" >&5 ac_lib_var=`echo bsd'_'flock | sed 'y%./+-%__p_%'` if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -6395,7 +6400,7 @@ ac_save_LIBS="$LIBS" LIBS="-lbsd $LIBS" cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:6415: \"$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 @@ -6431,12 +6436,12 @@ for ac_func in lockf do echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 -echo "configure:6435: checking for $ac_func" >&5 +echo "configure:6440: 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:6468: \"$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 @@ -6493,12 +6498,12 @@ for ac_func in statfs do echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 -echo "configure:6497: checking for $ac_func" >&5 +echo "configure:6502: 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:6530: \"$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 @@ -6549,17 +6554,17 @@ do ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 -echo "configure:6553: checking for $ac_hdr" >&5 +echo "configure:6558: 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:6563: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:6568: \"$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* @@ -6591,12 +6596,12 @@ strcasecmp strdup strerror strspn setenv hstrerror do echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 -echo "configure:6595: checking for $ac_func" >&5 +echo "configure:6600: 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:6628: \"$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 @@ -6648,7 +6653,7 @@ if test "$ac_cv_func_fseeko" = no || test "$ac_cv_func_ftello" = no ; then echo $ac_n "checking for off_t-compatible fpos_t""... $ac_c" 1>&6 -echo "configure:6652: checking for off_t-compatible fpos_t" >&5 +echo "configure:6657: checking for off_t-compatible fpos_t" >&5 if eval "test \"`echo '$''{'inn_cv_type_fpos_t_large'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -6656,7 +6661,7 @@ inn_cv_type_fpos_t_large=no else cat > conftest.$ac_ext < #include @@ -6670,7 +6675,7 @@ exit(off == (off_t) 9223372036854775807ULL ? 0 : 1); } EOF -if { (eval echo configure:6674: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:6679: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null then inn_cv_type_fpos_t_large=yes else @@ -6707,12 +6712,12 @@ echo $ac_n "checking if mmap() sees write()s""... $ac_c" 1>&6 -echo "configure:6711: checking if mmap() sees write()s" >&5 +echo "configure:6716: checking if mmap() sees write()s" >&5 if test "$cross_compiling" = yes; then result="yes" else cat > conftest.$ac_ext < #include @@ -6744,7 +6749,7 @@ } EOF -if { (eval echo configure:6748: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:6753: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null then result="yes" else @@ -6768,7 +6773,7 @@ echo $ac_n "checking for working mmap""... $ac_c" 1>&6 -echo "configure:6772: checking for working mmap" >&5 +echo "configure:6777: checking for working mmap" >&5 if eval "test \"`echo '$''{'ac_cv_func_mmap_shared'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -6776,7 +6781,7 @@ ac_cv_func_mmap_shared=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:6885: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null then ac_cv_func_mmap_shared=yes else @@ -6900,12 +6905,12 @@ for ac_func in madvise do echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 -echo "configure:6904: checking for $ac_func" >&5 +echo "configure:6909: 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:6937: \"$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 @@ -6955,7 +6960,7 @@ fi echo $ac_n "checking whether msync is needed""... $ac_c" 1>&6 -echo "configure:6959: checking whether msync is needed" >&5 +echo "configure:6964: checking whether msync is needed" >&5 if eval "test \"`echo '$''{'ac_cv_func_need_msync'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -6963,7 +6968,7 @@ ac_cv_func_need_msync=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:7084: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null then ac_cv_func_need_msync=yes else @@ -7100,12 +7105,12 @@ if test $ac_cv_lib_regex_regexec = no; then echo $ac_n "checking for regexec""... $ac_c" 1>&6 -echo "configure:7104: checking for regexec" >&5 +echo "configure:7109: checking for regexec" >&5 if eval "test \"`echo '$''{'ac_cv_func_regexec'+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:7137: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_regexec=yes" else @@ -7153,12 +7158,12 @@ fi echo $ac_n "checking for three argument msync""... $ac_c" 1>&6 -echo "configure:7157: checking for three argument msync" >&5 +echo "configure:7162: checking for three argument msync" >&5 if eval "test \"`echo '$''{'inn_cv_func_msync_3_args'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext < @@ -7167,7 +7172,7 @@ char *p; int psize; msync(p,psize,MS_ASYNC); ; return 0; } EOF -if { (eval echo configure:7171: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:7176: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* inn_cv_func_msync_3_args=yes else @@ -7188,9 +7193,9 @@ fi echo $ac_n "checking for Unix domain sockets""... $ac_c" 1>&6 -echo "configure:7192: checking for Unix domain sockets" >&5 +echo "configure:7197: checking for Unix domain sockets" >&5 cat > conftest.$ac_ext < @@ -7216,10 +7221,10 @@ echo $ac_n "checking log facility for news""... $ac_c" 1>&6 -echo "configure:7220: checking log facility for news" >&5 +echo "configure:7225: checking log facility for news" >&5 if test x"$SYSLOG_FACILITY" = xnone ; then cat > conftest.$ac_ext <