diff options
-rw-r--r-- | ACE-configuration.txt | 72 | ||||
-rw-r--r-- | Makefile | 4 | ||||
-rwxr-xr-x | bin/bootstrap | 3 | ||||
-rwxr-xr-x | configure | 3148 | ||||
-rw-r--r-- | configure.in | 22 |
5 files changed, 1629 insertions, 1620 deletions
diff --git a/ACE-configuration.txt b/ACE-configuration.txt index cb68fad0edc..c638cfe8459 100644 --- a/ACE-configuration.txt +++ b/ACE-configuration.txt @@ -6,26 +6,19 @@ Configuring ACE Using the `configure' Script QuickStart ---------- -Since autoconf support in ACE is still under development, to enable -support for autoconf in ACE, run the script `bootstrap' in the `bin' -directory found in the top-level ACE source directory from the -top-level source directory. For example, the following set of -commands will set up ACE's autoconf support, and cause ACE to be -configured and built: +GNU Autoconf support in ACE is still under development. However it is +a small subset of Autoconf support in ACE has been made available for +testing and feedback purposes. To use Autoconf support in ACE, do +something like the following: - - bin/bootstrap + cd ACE_wrappers mkdir objdir cd objdir - ../configure --enable-maintainer-mode. - make -Note that this bootstrapping procedure requires that GNU Autoconf (>= -2.13), GNU Automake (>= 1.4) and GNU libtool (>= 1.3.3) are installed -and available in your path in order for the procedure to be -successful. Once autoconf support in ACE is fully integrated, these -requirements will not be necessary. You will be able to simply run -the configure script without any options. +Then: + Bourne Shell: CXX=c++ ../configure + C Shell: env CXX=c++ ../configure +make Description ----------- @@ -138,42 +131,51 @@ Features and packages: --with-orbix[=DIR] compile ACE with Orbix [default=no] --with-tli-device[=DEV] device for TCP on TLI [default=/dev/tcp] -To enable debugging and disable code inlining, for example, just enter the -following on the command line: +To enable debugging and disable code inlining, for example, just enter +the following on the command line: ./configure --enable-debug --disable-inline -This will generate a configuration header file `ace/config.h' to be used when -compiling ACE that will enable ACE debugging macros and disable code inlining -during compilation of ACE. +This will generate a configuration header file `ace/config.h' to be +used when compiling ACE that will enable ACE debugging macros and +disable code inlining during compilation of ACE. -Once the `ace/config.h' header has been created you will have to select a -platform macros file. Please read the ACE installation documents for more -information about this. +Once the `ace/config.h' header has been created you will have to +select a platform macros file. Please read the ACE installation +documents for more information about this. ---------------------------------------------------------------- Caveats ---------------------------------------------------------------- -Much of the power of the `configure' script will not be useful until the -automatically generated makefiles are enabled in ACE. Configuration options -such as "--prefix" will not be useful for this reason. - -The `configure' script will check for libraries that contain certain functions. -If it finds a library that isn't listed in your platform_macros.GNU file you -will have to add that library to the list of libraries to link against. +The `configure' script will check for libraries that contain certain +functions. If it finds a library that isn't listed in your +platform_macros.GNU file you will have to add that library to the list +of libraries to link against. + +Shared library generation when using ACE Autoconf support is different +from the stock ACE shared library generation mechanism. The Autoconf +supported shared library mechanism does not yet fully support all of +the platforms ACE's stock shared library mechanism supports. As such, +you may encounter problems if an attempt is made to build a shared +library when using ACE's autoconf support. + +Remember that the stock ACE build procedure is always available. If +your attempts to use ACE's Autoconf support are unsuccessful then +contact the parties listed below, and use ACE stock build procedure as +described in ACE-INSTALL.html. ---------------------------------------------------------------- Contacts ---------------------------------------------------------------- -If you do have problems please e-mail the ACE Configuration Project maintainer -at: +If you do have problems please e-mail the ACE Configuration Project +maintainer at: Ossama Othman <othman@cs.wustl.edu> or send mail to the ACE mailing list. -For more information take at a look at the ACE Configuration Project web page -at: +For more information take at a look at the ACE Configuration Project +web page at: http://www.cs.wustl.edu/~othman/aceconf @@ -198,7 +198,7 @@ REL = beta ZIP_FILES = #### The release target creates the ACE (only) kit. -release: $(APPLY_NEW_TAG) +release: $(APPLY_NEW_TAG) ACE-INSTALL @$(ACE_ROOT)/bin/make_release -k ace $(ACE_TAG) \ $(INSTALL_KIT) $(GENERATE_MAN_PAGES) $(ZIP_FILES) $(CHECK) @@ -218,7 +218,7 @@ releasetao: #### recursively invoking make release in the TAO directory. #### The make then recursively invokes make releasetao in this #### directory to create the combined ACE-TAO kit. -releaseall: $(APPLY_NEW_TAG) +releaseall: $(APPLY_NEW_TAG) ACE-INSTALL @cd TAO && $(MAKE) -s release REL=$(REL) .PHONY: show_controlled_files show_release_files show_release_lib_files diff --git a/bin/bootstrap b/bin/bootstrap index 05d0a972382..4a11c2d1ad8 100755 --- a/bin/bootstrap +++ b/bin/bootstrap @@ -103,6 +103,7 @@ if test -d m4; then export PATH fi + # Provide some "useful" information. echo Bootstrapping... # Generate an `aclocal.m4' file from all existing m4 macro files @@ -179,6 +180,8 @@ if test -d m4; then echo Creating a NEWS file cp VERSION NEWS + # Provide some more "useful" information. + echo Done bootstrapping. else echo ACE must be bootstrapped from the top-level ACE source directory. exit 1; diff --git a/configure b/configure index e831c17ac11..e9ebea5dc69 100755 --- a/configure +++ b/configure @@ -4972,6 +4972,114 @@ EOF fi +# Autoconf's AC_OBJEXT and AC_EXEEXT macros only works for C compilers! +# Libtool's setup macro calls AC_OBJEXT and AC_EXEEXT without setting +# the test language to C. We do it before any libtool setup macros are +# called so that the proper values are cached beforehand. We also do +# it before any linker flags (LDFLAGS) are set so that C++ specific +# ones don't break the tests. + +ac_ext=c +# CFLAGS is not in ac_cpp because -g, -O, etc. are not valid cpp options. +ac_cpp='$CPP $CPPFLAGS' +ac_compile='${CC-cc} -c $CFLAGS $CPPFLAGS conftest.$ac_ext 1>&5' +ac_link='${CC-cc} -o conftest${ac_exeext} $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&5' +cross_compiling=$ac_cv_prog_cc_cross + +echo $ac_n "checking for object suffix""... $ac_c" 1>&6 +echo "configure:4991: checking for object suffix" >&5 +if eval "test \"`echo '$''{'ac_cv_objext'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 +else + rm -f conftest* +echo 'int i = 1;' > conftest.$ac_ext +if { (eval echo configure:4997: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then + for ac_file in conftest.*; do + case $ac_file in + *.c) ;; + *) ac_cv_objext=`echo $ac_file | sed -e s/conftest.//` ;; + esac + done +else + { echo "configure: error: installation or configuration problem; compiler does not work" 1>&2; exit 1; } +fi +rm -f conftest* +fi + +echo "$ac_t""$ac_cv_objext" 1>&6 +OBJEXT=$ac_cv_objext +ac_objext=$ac_cv_objext + +echo $ac_n "checking for mingw32 environment""... $ac_c" 1>&6 +echo "configure:5015: 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 <<EOF +#line 5020 "configure" +#include "confdefs.h" + +int main() { +return __MINGW32__; +; return 0; } +EOF +if { (eval echo configure:5027: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then + rm -rf conftest* + ac_cv_mingw32=yes +else + echo "configure: failed program was:" >&5 + cat conftest.$ac_ext >&5 + rm -rf conftest* + ac_cv_mingw32=no +fi +rm -f conftest* +rm -f conftest* +fi + +echo "$ac_t""$ac_cv_mingw32" 1>&6 +MINGW32= +test "$ac_cv_mingw32" = yes && MINGW32=yes + + +echo $ac_n "checking for executable suffix""... $ac_c" 1>&6 +echo "configure:5046: checking for executable suffix" >&5 +if eval "test \"`echo '$''{'ac_cv_exeext'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 +else + if test "$CYGWIN" = yes || test "$MINGW32" = yes; then + ac_cv_exeext=.exe +else + rm -f conftest* + echo 'int main () { return 0; }' > conftest.$ac_ext + ac_cv_exeext= + if { (eval echo configure:5056: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; }; then + for file in conftest.*; do + case $file in + *.c | *.o | *.obj) ;; + *) ac_cv_exeext=`echo $file | sed -e s/conftest//` ;; + esac + done + else + { echo "configure: error: installation or configuration problem: compiler cannot create executables." 1>&2; exit 1; } + fi + rm -f conftest* + test x"${ac_cv_exeext}" = x && ac_cv_exeext=no +fi +fi + +EXEEXT="" +test x"${ac_cv_exeext}" != xno && EXEEXT=${ac_cv_exeext} +echo "$ac_t""${ac_cv_exeext}" 1>&6 +ac_exeext=$EXEEXT + +ac_ext=C +# CXXFLAGS is not in ac_cpp because -g, -O, etc. are not valid cpp options. +ac_cpp='$CXXCPP $CPPFLAGS' +ac_compile='${CXX-g++} -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext 1>&5' +ac_link='${CXX-g++} -o conftest${ac_exeext} $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&5' +cross_compiling=$ac_cv_prog_cxx_cross + + @@ -5354,7 +5462,7 @@ XTREACTOR_TEST_XLIBS="" xt_reactor_go=no echo $ac_n "checking for XmCreateRowColumn in -lXm""... $ac_c" 1>&6 -echo "configure:5358: checking for XmCreateRowColumn in -lXm" >&5 +echo "configure:5466: checking for XmCreateRowColumn in -lXm" >&5 ac_lib_var=`echo Xm'_'XmCreateRowColumn | sed 'y%./+-%__p_%'` if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -5362,7 +5470,7 @@ else ac_save_LIBS="$LIBS" LIBS="-lXm -lXt $LIBS" cat > conftest.$ac_ext <<EOF -#line 5366 "configure" +#line 5474 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ #ifdef __cplusplus @@ -5376,7 +5484,7 @@ int main() { XmCreateRowColumn() ; return 0; } EOF -if { (eval echo configure:5380: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:5488: \"$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 @@ -5403,7 +5511,7 @@ else EOF echo $ac_n "checking for XawInitializeWidgetSet in -lXaw""... $ac_c" 1>&6 -echo "configure:5407: checking for XawInitializeWidgetSet in -lXaw" >&5 +echo "configure:5515: checking for XawInitializeWidgetSet in -lXaw" >&5 ac_lib_var=`echo Xaw'_'XawInitializeWidgetSet | sed 'y%./+-%__p_%'` if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -5411,7 +5519,7 @@ else ac_save_LIBS="$LIBS" LIBS="-lXaw -lXmu $LIBS" cat > conftest.$ac_ext <<EOF -#line 5415 "configure" +#line 5523 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ #ifdef __cplusplus @@ -5425,7 +5533,7 @@ int main() { XawInitializeWidgetSet() ; return 0; } EOF -if { (eval echo configure:5429: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:5537: \"$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 @@ -5475,7 +5583,7 @@ fi echo $ac_n "checking for library containing dlopen""... $ac_c" 1>&6 -echo "configure:5479: checking for library containing dlopen" >&5 +echo "configure:5587: checking for library containing dlopen" >&5 if eval "test \"`echo '$''{'ac_cv_search_dlopen'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -5486,7 +5594,7 @@ else cat > conftest.$ac_ext <<EOF -#line 5490 "configure" +#line 5598 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char dlopen(); below. */ @@ -5512,7 +5620,7 @@ dlopen(); ; return 0; } EOF -if { (eval echo configure:5516: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:5624: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* ac_cv_search_dlopen="none required" else @@ -5526,7 +5634,7 @@ rm -f conftest* LIBS="-l$i $ac_func_search_save_LIBS" cat > conftest.$ac_ext <<EOF -#line 5530 "configure" +#line 5638 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char dlopen(); below. */ @@ -5552,7 +5660,7 @@ dlopen(); ; return 0; } EOF -if { (eval echo configure:5556: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:5664: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* ac_cv_search_dlopen="-l$i" @@ -5579,7 +5687,7 @@ echo "$ac_t""$ac_cv_search_dlopen" 1>&6 ace_has_svr4_dynamic_linking=no echo $ac_n "checking for shl_get in -ldld""... $ac_c" 1>&6 -echo "configure:5583: checking for shl_get in -ldld" >&5 +echo "configure:5691: checking for shl_get in -ldld" >&5 ac_lib_var=`echo dld'_'shl_get | sed 'y%./+-%__p_%'` if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -5587,7 +5695,7 @@ else ac_save_LIBS="$LIBS" LIBS="-ldld $LIBS" cat > conftest.$ac_ext <<EOF -#line 5591 "configure" +#line 5699 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ #ifdef __cplusplus @@ -5601,7 +5709,7 @@ int main() { shl_get() ; return 0; } EOF -if { (eval echo configure:5605: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:5713: \"$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 @@ -5634,7 +5742,7 @@ fi echo $ac_n "checking for library containing socket""... $ac_c" 1>&6 -echo "configure:5638: checking for library containing socket" >&5 +echo "configure:5746: 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 @@ -5645,7 +5753,7 @@ else cat > conftest.$ac_ext <<EOF -#line 5649 "configure" +#line 5757 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char socket(); below. */ @@ -5671,7 +5779,7 @@ socket(); ; return 0; } EOF -if { (eval echo configure:5675: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:5783: \"$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 @@ -5685,7 +5793,7 @@ rm -f conftest* LIBS="-l$i -lnsl $ac_func_search_save_LIBS" cat > conftest.$ac_ext <<EOF -#line 5689 "configure" +#line 5797 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char socket(); below. */ @@ -5711,7 +5819,7 @@ socket(); ; return 0; } EOF -if { (eval echo configure:5715: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:5823: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* ac_cv_search_socket="-l$i" @@ -5740,7 +5848,7 @@ echo "$ac_t""$ac_cv_search_socket" 1>&6 echo $ac_n "checking for library containing gethostbyname""... $ac_c" 1>&6 -echo "configure:5744: checking for library containing gethostbyname" >&5 +echo "configure:5852: checking for library containing gethostbyname" >&5 if eval "test \"`echo '$''{'ac_cv_search_gethostbyname'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -5751,7 +5859,7 @@ else cat > conftest.$ac_ext <<EOF -#line 5755 "configure" +#line 5863 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char gethostbyname(); below. */ @@ -5777,7 +5885,7 @@ gethostbyname(); ; return 0; } EOF -if { (eval echo configure:5781: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:5889: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* ac_cv_search_gethostbyname="none required" else @@ -5791,7 +5899,7 @@ rm -f conftest* LIBS="-l$i $ac_func_search_save_LIBS" cat > conftest.$ac_ext <<EOF -#line 5795 "configure" +#line 5903 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char gethostbyname(); below. */ @@ -5817,7 +5925,7 @@ gethostbyname(); ; return 0; } EOF -if { (eval echo configure:5821: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:5929: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* ac_cv_search_gethostbyname="-l$i" @@ -5846,7 +5954,7 @@ echo "$ac_t""$ac_cv_search_gethostbyname" 1>&6 echo $ac_n "checking for library containing getservbyname""... $ac_c" 1>&6 -echo "configure:5850: checking for library containing getservbyname" >&5 +echo "configure:5958: checking for library containing getservbyname" >&5 if eval "test \"`echo '$''{'ac_cv_search_getservbyname'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -5857,7 +5965,7 @@ else cat > conftest.$ac_ext <<EOF -#line 5861 "configure" +#line 5969 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char getservbyname(); below. */ @@ -5883,7 +5991,7 @@ getservbyname(); ; return 0; } EOF -if { (eval echo configure:5887: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:5995: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* ac_cv_search_getservbyname="none required" else @@ -5897,7 +6005,7 @@ rm -f conftest* LIBS="-l$i -lnsl $ac_func_search_save_LIBS" cat > conftest.$ac_ext <<EOF -#line 5901 "configure" +#line 6009 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char getservbyname(); below. */ @@ -5923,7 +6031,7 @@ getservbyname(); ; return 0; } EOF -if { (eval echo configure:5927: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:6035: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* ac_cv_search_getservbyname="-l$i" @@ -5956,7 +6064,7 @@ EOF echo $ac_n "checking for library containing compile""... $ac_c" 1>&6 -echo "configure:5960: checking for library containing compile" >&5 +echo "configure:6068: checking for library containing compile" >&5 if eval "test \"`echo '$''{'ac_cv_search_compile'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -5967,7 +6075,7 @@ else cat > conftest.$ac_ext <<EOF -#line 5971 "configure" +#line 6079 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char compile(); below. */ @@ -5993,7 +6101,7 @@ compile(); ; return 0; } EOF -if { (eval echo configure:5997: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:6105: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* ac_cv_search_compile="none required" else @@ -6007,7 +6115,7 @@ rm -f conftest* LIBS="-l$i $ac_func_search_save_LIBS" cat > conftest.$ac_ext <<EOF -#line 6011 "configure" +#line 6119 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char compile(); below. */ @@ -6033,7 +6141,7 @@ compile(); ; return 0; } EOF -if { (eval echo configure:6037: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:6145: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* ac_cv_search_compile="-l$i" @@ -6062,7 +6170,7 @@ echo "$ac_t""$ac_cv_search_compile" 1>&6 echo $ac_n "checking for library containing exc_continue""... $ac_c" 1>&6 -echo "configure:6066: checking for library containing exc_continue" >&5 +echo "configure:6174: checking for library containing exc_continue" >&5 if eval "test \"`echo '$''{'ac_cv_search_exc_continue'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -6073,7 +6181,7 @@ else cat > conftest.$ac_ext <<EOF -#line 6077 "configure" +#line 6185 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char exc_continue(); below. */ @@ -6099,7 +6207,7 @@ exc_continue(); ; return 0; } EOF -if { (eval echo configure:6103: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:6211: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* ac_cv_search_exc_continue="none required" else @@ -6113,7 +6221,7 @@ rm -f conftest* LIBS="-l$i $ac_func_search_save_LIBS" cat > conftest.$ac_ext <<EOF -#line 6117 "configure" +#line 6225 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char exc_continue(); below. */ @@ -6139,7 +6247,7 @@ exc_continue(); ; return 0; } EOF -if { (eval echo configure:6143: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:6251: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* ac_cv_search_exc_continue="-l$i" @@ -6168,7 +6276,7 @@ echo "$ac_t""$ac_cv_search_exc_continue" 1>&6 echo $ac_n "checking for library containing ctime_r""... $ac_c" 1>&6 -echo "configure:6172: checking for library containing ctime_r" >&5 +echo "configure:6280: checking for library containing ctime_r" >&5 if eval "test \"`echo '$''{'ac_cv_search_ctime_r'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -6179,7 +6287,7 @@ else cat > conftest.$ac_ext <<EOF -#line 6183 "configure" +#line 6291 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char ctime_r(); below. */ @@ -6205,7 +6313,7 @@ ctime_r(); ; return 0; } EOF -if { (eval echo configure:6209: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:6317: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* ac_cv_search_ctime_r="none required" else @@ -6219,7 +6327,7 @@ rm -f conftest* LIBS="-l$i $ac_func_search_save_LIBS" cat > conftest.$ac_ext <<EOF -#line 6223 "configure" +#line 6331 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char ctime_r(); below. */ @@ -6245,7 +6353,7 @@ ctime_r(); ; return 0; } EOF -if { (eval echo configure:6249: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:6357: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* ac_cv_search_ctime_r="-l$i" @@ -6274,7 +6382,7 @@ echo "$ac_t""$ac_cv_search_ctime_r" 1>&6 echo $ac_n "checking for library containing t_accept""... $ac_c" 1>&6 -echo "configure:6278: checking for library containing t_accept" >&5 +echo "configure:6386: checking for library containing t_accept" >&5 if eval "test \"`echo '$''{'ac_cv_search_t_accept'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -6285,7 +6393,7 @@ else cat > conftest.$ac_ext <<EOF -#line 6289 "configure" +#line 6397 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char t_accept(); below. */ @@ -6311,7 +6419,7 @@ t_accept(); ; return 0; } EOF -if { (eval echo configure:6315: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:6423: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* ac_cv_search_t_accept="none required" else @@ -6325,7 +6433,7 @@ rm -f conftest* LIBS="-l$i $ac_func_search_save_LIBS" cat > conftest.$ac_ext <<EOF -#line 6329 "configure" +#line 6437 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char t_accept(); below. */ @@ -6351,7 +6459,7 @@ t_accept(); ; return 0; } EOF -if { (eval echo configure:6355: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:6463: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* ac_cv_search_t_accept="-l$i" @@ -6384,7 +6492,7 @@ if test "$ace_user_enable_threads" = yes; then echo $ac_n "checking if compiler may need a thread flag""... $ac_c" 1>&6 -echo "configure:6388: checking if compiler may need a thread flag" >&5 +echo "configure:6496: checking if compiler may need a thread flag" >&5 if eval "test \"`echo '$''{'ace_cv_feature_may_need_thread_flag'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -6397,7 +6505,7 @@ else cat > conftest.$ac_ext <<EOF -#line 6401 "configure" +#line 6509 "configure" #include "confdefs.h" #ifndef _REENTRANT @@ -6418,7 +6526,7 @@ thr_create(); ; return 0; } EOF -if { (eval echo configure:6422: \"$ac_link\") 1>&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* ace_cv_feature_may_need_thread_flag=no @@ -6431,14 +6539,14 @@ else cat > conftest.$ac_ext <<EOF -#line 6435 "configure" +#line 6543 "configure" #include "confdefs.h" #include <pthread.h> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:6442: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:6550: \"$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* @@ -6470,7 +6578,7 @@ fi rm -f conftest* cat > conftest.$ac_ext <<EOF -#line 6474 "configure" +#line 6582 "configure" #include "confdefs.h" #ifndef _REENTRANT @@ -6490,7 +6598,7 @@ $ace_real_function(); ; return 0; } EOF -if { (eval echo configure:6494: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:6602: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* ace_cv_feature_may_need_thread_flag=no @@ -6523,7 +6631,7 @@ fi echo $ac_n "checking for compiler thread flag""... $ac_c" 1>&6 -echo "configure:6527: checking for compiler thread flag" >&5 +echo "configure:6635: checking for compiler thread flag" >&5 if eval "test \"`echo '$''{'ace_cv_thread_flag_search'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -6541,7 +6649,7 @@ else cat > conftest.$ac_ext <<EOF -#line 6545 "configure" +#line 6653 "configure" #include "confdefs.h" #ifndef _REENTRANT @@ -6562,7 +6670,7 @@ thr_create(); ; return 0; } EOF -if { (eval echo configure:6566: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:6674: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* ace_cv_thread_flag_search="-$i" @@ -6577,14 +6685,14 @@ else cat > conftest.$ac_ext <<EOF -#line 6581 "configure" +#line 6689 "configure" #include "confdefs.h" #include <pthread.h> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:6588: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:6696: \"$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* @@ -6616,7 +6724,7 @@ fi rm -f conftest* cat > conftest.$ac_ext <<EOF -#line 6620 "configure" +#line 6728 "configure" #include "confdefs.h" #ifndef _REENTRANT @@ -6636,7 +6744,7 @@ $ace_real_function(); ; return 0; } EOF -if { (eval echo configure:6640: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:6748: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* ace_cv_thread_flag_search="-$i" @@ -6697,7 +6805,7 @@ fi echo $ac_n "checking for library containing thr_create""... $ac_c" 1>&6 -echo "configure:6701: checking for library containing thr_create" >&5 +echo "configure:6809: checking for library containing thr_create" >&5 if eval "test \"`echo '$''{'ac_cv_search_thr_create'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -6708,7 +6816,7 @@ else cat > conftest.$ac_ext <<EOF -#line 6712 "configure" +#line 6820 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char thr_create(); below. */ @@ -6734,7 +6842,7 @@ thr_create(); ; return 0; } EOF -if { (eval echo configure:6738: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:6846: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* ac_cv_search_thr_create="none required" else @@ -6748,7 +6856,7 @@ rm -f conftest* LIBS="-l$i $ac_func_search_save_LIBS" cat > conftest.$ac_ext <<EOF -#line 6752 "configure" +#line 6860 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char thr_create(); below. */ @@ -6774,7 +6882,7 @@ thr_create(); ; return 0; } EOF -if { (eval echo configure:6778: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:6886: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* ac_cv_search_thr_create="-l$i" @@ -6812,7 +6920,7 @@ EOF echo $ac_n "checking for library containing rwlock_destroy""... $ac_c" 1>&6 -echo "configure:6816: checking for library containing rwlock_destroy" >&5 +echo "configure:6924: checking for library containing rwlock_destroy" >&5 if eval "test \"`echo '$''{'ac_cv_search_rwlock_destroy'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -6823,7 +6931,7 @@ else cat > conftest.$ac_ext <<EOF -#line 6827 "configure" +#line 6935 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char rwlock_destroy(); below. */ @@ -6849,7 +6957,7 @@ rwlock_destroy(); ; return 0; } EOF -if { (eval echo configure:6853: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:6961: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* ac_cv_search_rwlock_destroy="none required" else @@ -6863,7 +6971,7 @@ rm -f conftest* LIBS="-l$i $ac_func_search_save_LIBS" cat > conftest.$ac_ext <<EOF -#line 6867 "configure" +#line 6975 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char rwlock_destroy(); below. */ @@ -6889,7 +6997,7 @@ rwlock_destroy(); ; return 0; } EOF -if { (eval echo configure:6893: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:7001: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* ac_cv_search_rwlock_destroy="-l$i" @@ -6920,13 +7028,13 @@ echo "$ac_t""$ac_cv_search_rwlock_destroy" 1>&6 echo $ac_n "checking for pthreads backward compatibility macros""... $ac_c" 1>&6 -echo "configure:6924: checking for pthreads backward compatibility macros" >&5 +echo "configure:7032: checking for pthreads backward compatibility macros" >&5 if eval "test \"`echo '$''{'ace_cv_lib_pthread_compat_macros'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 6930 "configure" +#line 7038 "configure" #include "confdefs.h" #include <pthread.h> @@ -6961,14 +7069,14 @@ fi cat > conftest.$ac_ext <<EOF -#line 6965 "configure" +#line 7073 "configure" #include "confdefs.h" #include <pthread.h> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:6972: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:7080: \"$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* @@ -7004,19 +7112,19 @@ EOF if test pthread_create != "$ace_real_function"; then echo $ac_n "checking for real pthread_create from pthread.h""... $ac_c" 1>&6 -echo "configure:7008: checking for real pthread_create from pthread.h" >&5 +echo "configure:7116: checking for real pthread_create from pthread.h" >&5 echo "$ac_t""$ace_real_function" 1>&6 fi else ace_real_function=pthread_create fi echo $ac_n "checking for $ace_real_function""... $ac_c" 1>&6 -echo "configure:7015: checking for $ace_real_function" >&5 +echo "configure:7123: checking for $ace_real_function" >&5 if eval "test \"`echo '$''{'ac_cv_func_$ace_real_function'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 7020 "configure" +#line 7128 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ace_real_function(); below. */ @@ -7042,7 +7150,7 @@ $ace_real_function(); ; return 0; } EOF -if { (eval echo configure:7046: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:7154: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_$ace_real_function=yes" else @@ -7070,14 +7178,14 @@ else cat > conftest.$ac_ext <<EOF -#line 7074 "configure" +#line 7182 "configure" #include "confdefs.h" #include <pthread.h> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:7081: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:7189: \"$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* @@ -7113,14 +7221,14 @@ EOF if test pthread_create != "$ace_real_function"; then echo $ac_n "checking for real pthread_create from pthread.h""... $ac_c" 1>&6 -echo "configure:7117: checking for real pthread_create from pthread.h" >&5 +echo "configure:7225: checking for real pthread_create from pthread.h" >&5 echo "$ac_t""$ace_real_function" 1>&6 fi else ace_real_function=pthread_create fi echo $ac_n "checking for $ace_real_function in -lpthread""... $ac_c" 1>&6 -echo "configure:7124: checking for $ace_real_function in -lpthread" >&5 +echo "configure:7232: checking for $ace_real_function in -lpthread" >&5 ac_lib_var=`echo pthread'_'$ace_real_function | sed 'y%./+-%__p_%'` if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -7128,7 +7236,7 @@ else ac_save_LIBS="$LIBS" LIBS="-lpthread $LIBS" cat > conftest.$ac_ext <<EOF -#line 7132 "configure" +#line 7240 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ #ifdef __cplusplus @@ -7142,7 +7250,7 @@ int main() { $ace_real_function() ; return 0; } EOF -if { (eval echo configure:7146: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:7254: \"$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 @@ -7181,7 +7289,7 @@ fi echo $ac_n "checking for library containing pthread_create""... $ac_c" 1>&6 -echo "configure:7185: checking for library containing pthread_create" >&5 +echo "configure:7293: checking for library containing pthread_create" >&5 if eval "test \"`echo '$''{'ac_cv_search_pthread_create'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -7192,7 +7300,7 @@ else cat > conftest.$ac_ext <<EOF -#line 7196 "configure" +#line 7304 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char pthread_create(); below. */ @@ -7218,7 +7326,7 @@ pthread_create(); ; return 0; } EOF -if { (eval echo configure:7222: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:7330: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* ac_cv_search_pthread_create="none required" else @@ -7232,7 +7340,7 @@ rm -f conftest* LIBS="-l$i $ac_func_search_save_LIBS" cat > conftest.$ac_ext <<EOF -#line 7236 "configure" +#line 7344 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char pthread_create(); below. */ @@ -7258,7 +7366,7 @@ pthread_create(); ; return 0; } EOF -if { (eval echo configure:7262: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:7370: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* ac_cv_search_pthread_create="-l$i" @@ -7292,7 +7400,7 @@ EOF echo $ac_n "checking for library containing pthread_setschedparam""... $ac_c" 1>&6 -echo "configure:7296: checking for library containing pthread_setschedparam" >&5 +echo "configure:7404: checking for library containing pthread_setschedparam" >&5 if eval "test \"`echo '$''{'ac_cv_search_pthread_setschedparam'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -7303,7 +7411,7 @@ else cat > conftest.$ac_ext <<EOF -#line 7307 "configure" +#line 7415 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char pthread_setschedparam(); below. */ @@ -7329,7 +7437,7 @@ pthread_setschedparam(); ; return 0; } EOF -if { (eval echo configure:7333: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:7441: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* ac_cv_search_pthread_setschedparam="none required" else @@ -7343,7 +7451,7 @@ rm -f conftest* LIBS="-l$i $ac_func_search_save_LIBS" cat > conftest.$ac_ext <<EOF -#line 7347 "configure" +#line 7455 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char pthread_setschedparam(); below. */ @@ -7369,7 +7477,7 @@ pthread_setschedparam(); ; return 0; } EOF -if { (eval echo configure:7373: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:7481: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* ac_cv_search_pthread_setschedparam="-l$i" @@ -7396,7 +7504,7 @@ echo "$ac_t""$ac_cv_search_pthread_setschedparam" 1>&6 echo $ac_n "checking for library containing pthread_attr_setprio""... $ac_c" 1>&6 -echo "configure:7400: checking for library containing pthread_attr_setprio" >&5 +echo "configure:7508: checking for library containing pthread_attr_setprio" >&5 if eval "test \"`echo '$''{'ac_cv_search_pthread_attr_setprio'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -7407,7 +7515,7 @@ else cat > conftest.$ac_ext <<EOF -#line 7411 "configure" +#line 7519 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char pthread_attr_setprio(); below. */ @@ -7433,7 +7541,7 @@ pthread_attr_setprio(); ; return 0; } EOF -if { (eval echo configure:7437: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:7545: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* ac_cv_search_pthread_attr_setprio="none required" else @@ -7447,7 +7555,7 @@ rm -f conftest* LIBS="-l$i $ac_func_search_save_LIBS" cat > conftest.$ac_ext <<EOF -#line 7451 "configure" +#line 7559 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char pthread_attr_setprio(); below. */ @@ -7473,7 +7581,7 @@ pthread_attr_setprio(); ; return 0; } EOF -if { (eval echo configure:7477: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:7585: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* ac_cv_search_pthread_attr_setprio="-l$i" @@ -7500,7 +7608,7 @@ echo "$ac_t""$ac_cv_search_pthread_attr_setprio" 1>&6 echo $ac_n "checking for library containing pthread_setprio""... $ac_c" 1>&6 -echo "configure:7504: checking for library containing pthread_setprio" >&5 +echo "configure:7612: checking for library containing pthread_setprio" >&5 if eval "test \"`echo '$''{'ac_cv_search_pthread_setprio'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -7511,7 +7619,7 @@ else cat > conftest.$ac_ext <<EOF -#line 7515 "configure" +#line 7623 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char pthread_setprio(); below. */ @@ -7537,7 +7645,7 @@ pthread_setprio(); ; return 0; } EOF -if { (eval echo configure:7541: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:7649: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* ac_cv_search_pthread_setprio="none required" else @@ -7551,7 +7659,7 @@ rm -f conftest* LIBS="-l$i $ac_func_search_save_LIBS" cat > conftest.$ac_ext <<EOF -#line 7555 "configure" +#line 7663 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char pthread_setprio(); below. */ @@ -7577,7 +7685,7 @@ pthread_setprio(); ; return 0; } EOF -if { (eval echo configure:7581: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:7689: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* ac_cv_search_pthread_setprio="-l$i" @@ -7630,112 +7738,6 @@ echo "$ac_t""$ac_cv_search_pthread_setprio" 1>&6 fi -# Autoconf's AC_OBJEXT and AC_EXEEXT macros only works for C compilers! -# Libtool's setup macro calls AC_OBJEXT and AC_EXEEXT without setting -# the test language to C. We do it before any libtool setup macros are -# called so that the proper values are cached beforehand. - -ac_ext=c -# CFLAGS is not in ac_cpp because -g, -O, etc. are not valid cpp options. -ac_cpp='$CPP $CPPFLAGS' -ac_compile='${CC-cc} -c $CFLAGS $CPPFLAGS conftest.$ac_ext 1>&5' -ac_link='${CC-cc} -o conftest${ac_exeext} $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&5' -cross_compiling=$ac_cv_prog_cc_cross - -echo $ac_n "checking for object suffix""... $ac_c" 1>&6 -echo "configure:7647: checking for object suffix" >&5 -if eval "test \"`echo '$''{'ac_cv_objext'+set}'`\" = set"; then - echo $ac_n "(cached) $ac_c" 1>&6 -else - rm -f conftest* -echo 'int i = 1;' > conftest.$ac_ext -if { (eval echo configure:7653: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then - for ac_file in conftest.*; do - case $ac_file in - *.c) ;; - *) ac_cv_objext=`echo $ac_file | sed -e s/conftest.//` ;; - esac - done -else - { echo "configure: error: installation or configuration problem; compiler does not work" 1>&2; exit 1; } -fi -rm -f conftest* -fi - -echo "$ac_t""$ac_cv_objext" 1>&6 -OBJEXT=$ac_cv_objext -ac_objext=$ac_cv_objext - -echo $ac_n "checking for mingw32 environment""... $ac_c" 1>&6 -echo "configure:7671: 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 <<EOF -#line 7676 "configure" -#include "confdefs.h" - -int main() { -return __MINGW32__; -; return 0; } -EOF -if { (eval echo configure:7683: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then - rm -rf conftest* - ac_cv_mingw32=yes -else - echo "configure: failed program was:" >&5 - cat conftest.$ac_ext >&5 - rm -rf conftest* - ac_cv_mingw32=no -fi -rm -f conftest* -rm -f conftest* -fi - -echo "$ac_t""$ac_cv_mingw32" 1>&6 -MINGW32= -test "$ac_cv_mingw32" = yes && MINGW32=yes - - -echo $ac_n "checking for executable suffix""... $ac_c" 1>&6 -echo "configure:7702: checking for executable suffix" >&5 -if eval "test \"`echo '$''{'ac_cv_exeext'+set}'`\" = set"; then - echo $ac_n "(cached) $ac_c" 1>&6 -else - if test "$CYGWIN" = yes || test "$MINGW32" = yes; then - ac_cv_exeext=.exe -else - rm -f conftest* - echo 'int main () { return 0; }' > conftest.$ac_ext - ac_cv_exeext= - if { (eval echo configure:7712: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; }; then - for file in conftest.*; do - case $file in - *.c | *.o | *.obj) ;; - *) ac_cv_exeext=`echo $file | sed -e s/conftest//` ;; - esac - done - else - { echo "configure: error: installation or configuration problem: compiler cannot create executables." 1>&2; exit 1; } - fi - rm -f conftest* - test x"${ac_cv_exeext}" = x && ac_cv_exeext=no -fi -fi - -EXEEXT="" -test x"${ac_cv_exeext}" != xno && EXEEXT=${ac_cv_exeext} -echo "$ac_t""${ac_cv_exeext}" 1>&6 -ac_exeext=$EXEEXT - -ac_ext=C -# CXXFLAGS is not in ac_cpp because -g, -O, etc. are not valid cpp options. -ac_cpp='$CXXCPP $CPPFLAGS' -ac_compile='${CXX-g++} -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext 1>&5' -ac_link='${CXX-g++} -o conftest${ac_exeext} $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&5' -cross_compiling=$ac_cv_prog_cxx_cross - - # Check whether --enable-static or --disable-static was given. if test "${enable_static+set}" = set; then enableval="$enable_static" @@ -7821,7 +7823,7 @@ ac_prog=ld if test "$ac_cv_prog_gcc" = yes; then # Check if gcc -print-prog-name=ld gives a path. echo $ac_n "checking for ld used by GCC""... $ac_c" 1>&6 -echo "configure:7825: checking for ld used by GCC" >&5 +echo "configure:7827: checking for ld used by GCC" >&5 case $lt_target in *-*-mingw*) # gcc leaves a trailing carriage return which upsets mingw @@ -7851,10 +7853,10 @@ echo "configure:7825: checking for ld used by GCC" >&5 esac elif test "$with_gnu_ld" = yes; then echo $ac_n "checking for GNU ld""... $ac_c" 1>&6 -echo "configure:7855: checking for GNU ld" >&5 +echo "configure:7857: checking for GNU ld" >&5 else echo $ac_n "checking for non-GNU ld""... $ac_c" 1>&6 -echo "configure:7858: checking for non-GNU ld" >&5 +echo "configure:7860: checking for non-GNU ld" >&5 fi if eval "test \"`echo '$''{'ac_cv_path_LD'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -7889,7 +7891,7 @@ else fi test -z "$LD" && { echo "configure: error: no acceptable ld found in \$PATH" 1>&2; exit 1; } echo $ac_n "checking if the linker ($LD) is GNU ld""... $ac_c" 1>&6 -echo "configure:7893: checking if the linker ($LD) is GNU ld" >&5 +echo "configure:7895: checking if the linker ($LD) is GNU ld" >&5 if eval "test \"`echo '$''{'ac_cv_prog_gnu_ld'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -7906,7 +7908,7 @@ with_gnu_ld=$ac_cv_prog_gnu_ld echo $ac_n "checking for $LD option to reload object files""... $ac_c" 1>&6 -echo "configure:7910: checking for $LD option to reload object files" >&5 +echo "configure:7912: checking for $LD option to reload object files" >&5 if eval "test \"`echo '$''{'lt_cv_ld_reload_flag'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -7918,7 +7920,7 @@ reload_flag=$lt_cv_ld_reload_flag test -n "$reload_flag" && reload_flag=" $reload_flag" echo $ac_n "checking for BSD-compatible nm""... $ac_c" 1>&6 -echo "configure:7922: checking for BSD-compatible nm" >&5 +echo "configure:7924: checking for BSD-compatible nm" >&5 if eval "test \"`echo '$''{'ac_cv_path_NM'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -7954,7 +7956,7 @@ NM="$ac_cv_path_NM" echo "$ac_t""$NM" 1>&6 echo $ac_n "checking how to recognise dependant libraries""... $ac_c" 1>&6 -echo "configure:7958: checking how to recognise dependant libraries" >&5 +echo "configure:7960: checking how to recognise dependant libraries" >&5 if eval "test \"`echo '$''{'lt_cv_deplibs_check_method'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -8088,7 +8090,7 @@ case "$deplibs_check_method" in file_magic*) if test "$file_magic_cmd" = '$FILE'; then echo $ac_n "checking for ${ac_tool_prefix}file""... $ac_c" 1>&6 -echo "configure:8092: checking for ${ac_tool_prefix}file" >&5 +echo "configure:8094: checking for ${ac_tool_prefix}file" >&5 if eval "test \"`echo '$''{'lt_cv_path_FILE'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -8150,7 +8152,7 @@ fi if test -z "$lt_cv_path_FILE"; then if test -n "$ac_tool_prefix"; then echo $ac_n "checking for file""... $ac_c" 1>&6 -echo "configure:8154: checking for file" >&5 +echo "configure:8156: checking for file" >&5 if eval "test \"`echo '$''{'lt_cv_path_FILE'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -8226,7 +8228,7 @@ esac # Extract the first word of "${ac_tool_prefix}ranlib", so it can be a program name with args. set dummy ${ac_tool_prefix}ranlib; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:8230: checking for $ac_word" >&5 +echo "configure:8232: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_RANLIB'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -8258,7 +8260,7 @@ if test -n "$ac_tool_prefix"; then # Extract the first word of "ranlib", so it can be a program name with args. set dummy ranlib; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:8262: checking for $ac_word" >&5 +echo "configure:8264: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_RANLIB'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -8293,7 +8295,7 @@ fi # Extract the first word of "${ac_tool_prefix}strip", so it can be a program name with args. set dummy ${ac_tool_prefix}strip; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:8297: checking for $ac_word" >&5 +echo "configure:8299: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_STRIP'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -8325,7 +8327,7 @@ if test -n "$ac_tool_prefix"; then # Extract the first word of "strip", so it can be a program name with args. set dummy strip; ac_word=$2 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 -echo "configure:8329: checking for $ac_word" >&5 +echo "configure:8331: checking for $ac_word" >&5 if eval "test \"`echo '$''{'ac_cv_prog_STRIP'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -8392,8 +8394,8 @@ test x"$pic_mode" = xno && libtool_flags="$libtool_flags --prefer-non-pic" case "$lt_target" in *-*-irix6*) # Find out which ABI we are using. - echo '#line 8396 "configure"' > conftest.$ac_ext - if { (eval echo configure:8397: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then + echo '#line 8398 "configure"' > conftest.$ac_ext + if { (eval echo configure:8399: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then case "`/usr/bin/file conftest.o`" in *32-bit*) LD="${LD-ld} -32" @@ -8414,19 +8416,19 @@ case "$lt_target" in SAVE_CFLAGS="$CFLAGS" CFLAGS="$CFLAGS -belf" echo $ac_n "checking whether the C compiler needs -belf""... $ac_c" 1>&6 -echo "configure:8418: checking whether the C compiler needs -belf" >&5 +echo "configure:8420: checking whether the C compiler needs -belf" >&5 if eval "test \"`echo '$''{'lt_cv_cc_needs_belf'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 8423 "configure" +#line 8425 "configure" #include "confdefs.h" int main() { ; return 0; } EOF -if { (eval echo configure:8430: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:8432: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* lt_cv_cc_needs_belf=yes else @@ -8554,7 +8556,7 @@ LIBTOOL="$LIBTOOL --tag=CXX" echo $ac_n "checking for library containing sched_yield""... $ac_c" 1>&6 -echo "configure:8558: checking for library containing sched_yield" >&5 +echo "configure:8560: checking for library containing sched_yield" >&5 if eval "test \"`echo '$''{'ac_cv_search_sched_yield'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -8565,7 +8567,7 @@ else cat > conftest.$ac_ext <<EOF -#line 8569 "configure" +#line 8571 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char sched_yield(); below. */ @@ -8591,7 +8593,7 @@ sched_yield(); ; return 0; } EOF -if { (eval echo configure:8595: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:8597: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* ac_cv_search_sched_yield="none required" else @@ -8605,7 +8607,7 @@ rm -f conftest* LIBS="-l$i $ac_func_search_save_LIBS" cat > conftest.$ac_ext <<EOF -#line 8609 "configure" +#line 8611 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char sched_yield(); below. */ @@ -8631,7 +8633,7 @@ sched_yield(); ; return 0; } EOF -if { (eval echo configure:8635: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:8637: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* ac_cv_search_sched_yield="-l$i" @@ -8668,7 +8670,7 @@ echo "$ac_t""$ac_cv_search_sched_yield" 1>&6 echo $ac_n "checking for library containing aio_read""... $ac_c" 1>&6 -echo "configure:8672: checking for library containing aio_read" >&5 +echo "configure:8674: checking for library containing aio_read" >&5 if eval "test \"`echo '$''{'ac_cv_search_aio_read'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -8679,7 +8681,7 @@ else cat > conftest.$ac_ext <<EOF -#line 8683 "configure" +#line 8685 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char aio_read(); below. */ @@ -8705,7 +8707,7 @@ aio_read(); ; return 0; } EOF -if { (eval echo configure:8709: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:8711: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* ac_cv_search_aio_read="none required" else @@ -8719,7 +8721,7 @@ rm -f conftest* LIBS="-l$i $ac_func_search_save_LIBS" cat > conftest.$ac_ext <<EOF -#line 8723 "configure" +#line 8725 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char aio_read(); below. */ @@ -8745,7 +8747,7 @@ aio_read(); ; return 0; } EOF -if { (eval echo configure:8749: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:8751: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* ac_cv_search_aio_read="-l$i" @@ -8776,7 +8778,7 @@ echo "$ac_t""$ac_cv_search_aio_read" 1>&6 if test "$ace_has_aio_funcs" = yes; then echo $ac_n "checking for working asynchronous IO""... $ac_c" 1>&6 -echo "configure:8780: checking for working asynchronous IO" >&5 +echo "configure:8782: checking for working asynchronous IO" >&5 if eval "test \"`echo '$''{'ace_cv_feature_aio_calls'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -8784,7 +8786,7 @@ else if test "$cross_compiling" = yes; then cat > conftest.$ac_ext <<EOF -#line 8788 "configure" +#line 8790 "configure" #include "confdefs.h" #include <aio.h> @@ -8795,7 +8797,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:8799: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:8801: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_feature_aio_calls=yes @@ -8812,7 +8814,7 @@ rm -f conftest* else cat > conftest.$ac_ext <<EOF -#line 8816 "configure" +#line 8818 "configure" #include "confdefs.h" #ifdef __cplusplus extern "C" void exit(int); @@ -9042,7 +9044,7 @@ main (int argc, char **argv) } EOF -if { (eval echo configure:9046: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:9048: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null then @@ -9060,7 +9062,7 @@ EOF else cat > conftest.$ac_ext <<EOF -#line 9064 "configure" +#line 9066 "configure" #include "confdefs.h" #ifdef __cplusplus extern "C" void exit(int); @@ -9364,7 +9366,7 @@ main (int, char *[]) } EOF -if { (eval echo configure:9368: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:9370: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null then ace_cv_feature_aio_calls=yes @@ -9412,7 +9414,7 @@ fi echo $ac_n "checking for library containing clock_gettime""... $ac_c" 1>&6 -echo "configure:9416: checking for library containing clock_gettime" >&5 +echo "configure:9418: checking for library containing clock_gettime" >&5 if eval "test \"`echo '$''{'ac_cv_search_clock_gettime'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -9423,7 +9425,7 @@ else cat > conftest.$ac_ext <<EOF -#line 9427 "configure" +#line 9429 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char clock_gettime(); below. */ @@ -9449,7 +9451,7 @@ clock_gettime(); ; return 0; } EOF -if { (eval echo configure:9453: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:9455: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* ac_cv_search_clock_gettime="none required" else @@ -9463,7 +9465,7 @@ rm -f conftest* LIBS="-l$i $ac_func_search_save_LIBS" cat > conftest.$ac_ext <<EOF -#line 9467 "configure" +#line 9469 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char clock_gettime(); below. */ @@ -9489,7 +9491,7 @@ clock_gettime(); ; return 0; } EOF -if { (eval echo configure:9493: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:9495: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* ac_cv_search_clock_gettime="-l$i" @@ -9525,12 +9527,12 @@ for ac_hdr in dirent.h sys/ndir.h sys/dir.h ndir.h 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:9529: checking for $ac_hdr that defines DIR" >&5 +echo "configure:9531: 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 <<EOF -#line 9534 "configure" +#line 9536 "configure" #include "confdefs.h" #include <sys/types.h> #include <$ac_hdr> @@ -9538,7 +9540,7 @@ int main() { DIR *dirp = 0; ; return 0; } EOF -if { (eval echo configure:9542: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:9544: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* eval "ac_cv_header_dirent_$ac_safe=yes" else @@ -9563,7 +9565,7 @@ done # 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:9567: checking for opendir in -ldir" >&5 +echo "configure:9569: 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 @@ -9571,7 +9573,7 @@ else ac_save_LIBS="$LIBS" LIBS="-ldir $LIBS" cat > conftest.$ac_ext <<EOF -#line 9575 "configure" +#line 9577 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ #ifdef __cplusplus @@ -9585,7 +9587,7 @@ int main() { opendir() ; return 0; } EOF -if { (eval echo configure:9589: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:9591: \"$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 @@ -9607,7 +9609,7 @@ fi else echo $ac_n "checking for opendir in -lx""... $ac_c" 1>&6 -echo "configure:9611: checking for opendir in -lx" >&5 +echo "configure:9613: 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 @@ -9615,7 +9617,7 @@ else ac_save_LIBS="$LIBS" LIBS="-lx $LIBS" cat > conftest.$ac_ext <<EOF -#line 9619 "configure" +#line 9621 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ #ifdef __cplusplus @@ -9629,7 +9631,7 @@ int main() { opendir() ; return 0; } EOF -if { (eval echo configure:9633: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:9635: \"$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 @@ -9662,12 +9664,12 @@ EOF fi echo $ac_n "checking for sys/wait.h that is POSIX.1 compatible""... $ac_c" 1>&6 -echo "configure:9666: checking for sys/wait.h that is POSIX.1 compatible" >&5 +echo "configure:9668: 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 <<EOF -#line 9671 "configure" +#line 9673 "configure" #include "confdefs.h" #include <sys/types.h> #include <sys/wait.h> @@ -9683,7 +9685,7 @@ wait (&s); s = WIFEXITED (s) ? WEXITSTATUS (s) : 1; ; return 0; } EOF -if { (eval echo configure:9687: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:9689: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ac_cv_header_sys_wait_h=yes else @@ -9707,17 +9709,17 @@ fi if test "$ac_cv_cygwin" = yes; then ac_safe=`echo "cygwin32/socket.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for cygwin32/socket.h""... $ac_c" 1>&6 -echo "configure:9711: checking for cygwin32/socket.h" >&5 +echo "configure:9713: checking for cygwin32/socket.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 -#line 9716 "configure" +#line 9718 "configure" #include "confdefs.h" #include <cygwin32/socket.h> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:9721: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:9723: \"$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* @@ -9745,17 +9747,17 @@ fi ac_safe=`echo "dlfcn.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for dlfcn.h""... $ac_c" 1>&6 -echo "configure:9749: checking for dlfcn.h" >&5 +echo "configure:9751: checking for dlfcn.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 -#line 9754 "configure" +#line 9756 "configure" #include "confdefs.h" #include <dlfcn.h> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:9759: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:9761: \"$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* @@ -9786,17 +9788,17 @@ fi ac_safe=`echo "malloc.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for malloc.h""... $ac_c" 1>&6 -echo "configure:9790: checking for malloc.h" >&5 +echo "configure:9792: checking for malloc.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 -#line 9795 "configure" +#line 9797 "configure" #include "confdefs.h" #include <malloc.h> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:9800: \"$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* @@ -9824,17 +9826,17 @@ fi ac_safe=`echo "memory.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for memory.h""... $ac_c" 1>&6 -echo "configure:9828: checking for memory.h" >&5 +echo "configure:9830: checking for memory.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 -#line 9833 "configure" +#line 9835 "configure" #include "confdefs.h" #include <memory.h> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:9838: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:9840: \"$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* @@ -9862,17 +9864,17 @@ fi ac_safe=`echo "bytesex.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for bytesex.h""... $ac_c" 1>&6 -echo "configure:9866: checking for bytesex.h" >&5 +echo "configure:9868: checking for bytesex.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 -#line 9871 "configure" +#line 9873 "configure" #include "confdefs.h" #include <bytesex.h> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:9876: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:9878: \"$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* @@ -9900,17 +9902,17 @@ fi ac_safe=`echo "sys/msg.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for sys/msg.h""... $ac_c" 1>&6 -echo "configure:9904: checking for sys/msg.h" >&5 +echo "configure:9906: checking for sys/msg.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 -#line 9909 "configure" +#line 9911 "configure" #include "confdefs.h" #include <sys/msg.h> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:9914: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:9916: \"$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* @@ -9929,13 +9931,13 @@ if eval "test \"`echo '$ac_cv_header_'$ac_safe`\" = yes"; then echo $ac_n "checking if _KERNEL is needed for msg prototypes""... $ac_c" 1>&6 -echo "configure:9933: checking if _KERNEL is needed for msg prototypes" >&5 +echo "configure:9935: checking if _KERNEL is needed for msg prototypes" >&5 if eval "test \"`echo '$''{'ace_cv_lib_broken_msg_h'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 9939 "configure" +#line 9941 "configure" #include "confdefs.h" #include <sys/msg.h> @@ -9946,7 +9948,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:9950: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:9952: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_broken_msg_h=no @@ -9957,7 +9959,7 @@ else rm -rf conftest* cat > conftest.$ac_ext <<EOF -#line 9961 "configure" +#line 9963 "configure" #include "confdefs.h" #ifndef _KERNEL @@ -9971,7 +9973,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:9975: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:9977: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_broken_msg_h=yes @@ -10017,17 +10019,17 @@ fi ac_safe=`echo "sys/param.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for sys/param.h""... $ac_c" 1>&6 -echo "configure:10021: checking for sys/param.h" >&5 +echo "configure:10023: checking for sys/param.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 -#line 10026 "configure" +#line 10028 "configure" #include "confdefs.h" #include <sys/param.h> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:10031: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:10033: \"$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* @@ -10055,17 +10057,17 @@ fi ac_safe=`echo "sys/priocntl.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for sys/priocntl.h""... $ac_c" 1>&6 -echo "configure:10059: checking for sys/priocntl.h" >&5 +echo "configure:10061: checking for sys/priocntl.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 -#line 10064 "configure" +#line 10066 "configure" #include "confdefs.h" #include <sys/priocntl.h> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:10069: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:10071: \"$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* @@ -10089,17 +10091,17 @@ fi ac_safe=`echo "ucontext.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for ucontext.h""... $ac_c" 1>&6 -echo "configure:10093: checking for ucontext.h" >&5 +echo "configure:10095: checking for ucontext.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 -#line 10098 "configure" +#line 10100 "configure" #include "confdefs.h" #include <ucontext.h> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:10103: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:10105: \"$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* @@ -10127,17 +10129,17 @@ fi ac_safe=`echo "sys/procfs.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for sys/procfs.h""... $ac_c" 1>&6 -echo "configure:10131: checking for sys/procfs.h" >&5 +echo "configure:10133: checking for sys/procfs.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 -#line 10136 "configure" +#line 10138 "configure" #include "confdefs.h" #include <sys/procfs.h> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:10141: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:10143: \"$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* @@ -10156,13 +10158,13 @@ if eval "test \"`echo '$ac_cv_header_'$ac_safe`\" = yes"; then echo $ac_n "checking if sys/procfs.h conflicts with ucontext.h""... $ac_c" 1>&6 -echo "configure:10160: checking if sys/procfs.h conflicts with ucontext.h" >&5 +echo "configure:10162: checking if sys/procfs.h conflicts with ucontext.h" >&5 if eval "test \"`echo '$''{'ace_has_procfs_conflict'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 10166 "configure" +#line 10168 "configure" #include "confdefs.h" #ifndef ACE_LACKS_UCONTEXT_H @@ -10177,7 +10179,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:10181: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:10183: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_has_procfs_conflict=no @@ -10218,17 +10220,17 @@ fi ac_safe=`echo "sys/select.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for sys/select.h""... $ac_c" 1>&6 -echo "configure:10222: checking for sys/select.h" >&5 +echo "configure:10224: checking for sys/select.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 -#line 10227 "configure" +#line 10229 "configure" #include "confdefs.h" #include <sys/select.h> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:10232: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:10234: \"$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* @@ -10255,17 +10257,17 @@ fi ac_safe=`echo "netinet/tcp.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for netinet/tcp.h""... $ac_c" 1>&6 -echo "configure:10259: checking for netinet/tcp.h" >&5 +echo "configure:10261: checking for netinet/tcp.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 -#line 10264 "configure" +#line 10266 "configure" #include "confdefs.h" #include <netinet/tcp.h> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:10269: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:10271: \"$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* @@ -10293,17 +10295,17 @@ fi ac_safe=`echo "sys/sockio.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for sys/sockio.h""... $ac_c" 1>&6 -echo "configure:10297: checking for sys/sockio.h" >&5 +echo "configure:10299: checking for sys/sockio.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 -#line 10302 "configure" +#line 10304 "configure" #include "confdefs.h" #include <sys/sockio.h> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:10307: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:10309: \"$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* @@ -10330,17 +10332,17 @@ fi ac_safe=`echo "sysent.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for sysent.h""... $ac_c" 1>&6 -echo "configure:10334: checking for sysent.h" >&5 +echo "configure:10336: checking for sysent.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 -#line 10339 "configure" +#line 10341 "configure" #include "confdefs.h" #include <sysent.h> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:10344: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:10346: \"$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* @@ -10367,17 +10369,17 @@ fi ac_safe=`echo "sys/systeminfo.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for sys/systeminfo.h""... $ac_c" 1>&6 -echo "configure:10371: checking for sys/systeminfo.h" >&5 +echo "configure:10373: checking for sys/systeminfo.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 -#line 10376 "configure" +#line 10378 "configure" #include "confdefs.h" #include <sys/systeminfo.h> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:10381: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:10383: \"$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* @@ -10400,17 +10402,17 @@ fi ac_safe=`echo "sys/filio.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for sys/filio.h""... $ac_c" 1>&6 -echo "configure:10404: checking for sys/filio.h" >&5 +echo "configure:10406: checking for sys/filio.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 -#line 10409 "configure" +#line 10411 "configure" #include "confdefs.h" #include <sys/filio.h> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:10414: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:10416: \"$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* @@ -10437,17 +10439,17 @@ fi ac_safe=`echo "sys/uio.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for sys/uio.h""... $ac_c" 1>&6 -echo "configure:10441: checking for sys/uio.h" >&5 +echo "configure:10443: checking for sys/uio.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 -#line 10446 "configure" +#line 10448 "configure" #include "confdefs.h" #include <sys/uio.h> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:10451: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:10453: \"$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* @@ -10470,17 +10472,17 @@ fi ac_safe=`echo "sys/ioctl.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for sys/ioctl.h""... $ac_c" 1>&6 -echo "configure:10474: checking for sys/ioctl.h" >&5 +echo "configure:10476: checking for sys/ioctl.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 -#line 10479 "configure" +#line 10481 "configure" #include "confdefs.h" #include <sys/ioctl.h> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:10484: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:10486: \"$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* @@ -10507,17 +10509,17 @@ fi ac_safe=`echo "sys/types.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for sys/types.h""... $ac_c" 1>&6 -echo "configure:10511: checking for sys/types.h" >&5 +echo "configure:10513: checking for sys/types.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 -#line 10516 "configure" +#line 10518 "configure" #include "confdefs.h" #include <sys/types.h> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:10521: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:10523: \"$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* @@ -10545,17 +10547,17 @@ fi ac_safe=`echo "sys/termios.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for sys/termios.h""... $ac_c" 1>&6 -echo "configure:10549: checking for sys/termios.h" >&5 +echo "configure:10551: checking for sys/termios.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 -#line 10554 "configure" +#line 10556 "configure" #include "confdefs.h" #include <sys/termios.h> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:10559: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:10561: \"$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* @@ -10573,7 +10575,7 @@ if eval "test \"`echo '$ac_cv_header_'$ac_safe`\" = yes"; then echo "$ac_t""yes" 1>&6 cat > conftest.$ac_ext <<EOF -#line 10577 "configure" +#line 10579 "configure" #include "confdefs.h" #include <sys/termios.h> @@ -10610,17 +10612,17 @@ fi if test "$ace_has_tli_funcs" = yes; then ac_safe=`echo "xti.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for xti.h""... $ac_c" 1>&6 -echo "configure:10614: checking for xti.h" >&5 +echo "configure:10616: checking for xti.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 -#line 10619 "configure" +#line 10621 "configure" #include "confdefs.h" #include <xti.h> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:10624: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:10626: \"$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* @@ -10654,17 +10656,17 @@ fi ac_safe=`echo "sys/xti.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for sys/xti.h""... $ac_c" 1>&6 -echo "configure:10658: checking for sys/xti.h" >&5 +echo "configure:10660: checking for sys/xti.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 -#line 10663 "configure" +#line 10665 "configure" #include "confdefs.h" #include <sys/xti.h> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:10668: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:10670: \"$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* @@ -10702,17 +10704,17 @@ fi ac_safe=`echo "sys/timod.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for sys/timod.h""... $ac_c" 1>&6 -echo "configure:10706: checking for sys/timod.h" >&5 +echo "configure:10708: checking for sys/timod.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 -#line 10711 "configure" +#line 10713 "configure" #include "confdefs.h" #include <sys/timod.h> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:10716: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:10718: \"$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* @@ -10739,17 +10741,17 @@ else ac_safe=`echo "tli/timod.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for tli/timod.h""... $ac_c" 1>&6 -echo "configure:10743: checking for tli/timod.h" >&5 +echo "configure:10745: checking for tli/timod.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 -#line 10748 "configure" +#line 10750 "configure" #include "confdefs.h" #include <tli/timod.h> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:10753: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:10755: \"$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* @@ -10781,17 +10783,17 @@ fi ac_safe=`echo "tiuser.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for tiuser.h""... $ac_c" 1>&6 -echo "configure:10785: checking for tiuser.h" >&5 +echo "configure:10787: checking for tiuser.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 -#line 10790 "configure" +#line 10792 "configure" #include "confdefs.h" #include <tiuser.h> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:10795: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:10797: \"$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* @@ -10826,13 +10828,13 @@ fi if test "$ac_cv_header_tiuser_h" = yes; then echo $ac_n "checking if tiuser.h is protected by extern \"C\"""... $ac_c" 1>&6 -echo "configure:10830: checking if tiuser.h is protected by extern \"C\"" >&5 +echo "configure:10832: checking if tiuser.h is protected by extern \"C\"" >&5 if eval "test \"`echo '$''{'ace_cv_lib_tiuser_with_extern_c'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 10836 "configure" +#line 10838 "configure" #include "confdefs.h" #include <tiuser.h> EOF @@ -10869,17 +10871,17 @@ EOF fi ac_safe=`echo "xliuser.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for xliuser.h""... $ac_c" 1>&6 -echo "configure:10873: checking for xliuser.h" >&5 +echo "configure:10875: checking for xliuser.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 -#line 10878 "configure" +#line 10880 "configure" #include "confdefs.h" #include <xliuser.h> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:10883: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:10885: \"$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* @@ -10915,13 +10917,13 @@ fi if test "$ace_has_tli" = yes; then echo $ac_n "checking for TLI prototypes""... $ac_c" 1>&6 -echo "configure:10919: checking for TLI prototypes" >&5 +echo "configure:10921: checking for TLI prototypes" >&5 if eval "test \"`echo '$''{'ace_cv_lib_tli_prototypes'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 10925 "configure" +#line 10927 "configure" #include "confdefs.h" #if defined (ACE_HAS_TIMOD_H) @@ -10987,13 +10989,13 @@ EOF echo $ac_n "checking for t_errno in TLI headers""... $ac_c" 1>&6 -echo "configure:10991: checking for t_errno in TLI headers" >&5 +echo "configure:10993: checking for t_errno in TLI headers" >&5 if eval "test \"`echo '$''{'ace_cv_lib_has_t_errno'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 10997 "configure" +#line 10999 "configure" #include "confdefs.h" #if defined (ACE_HAS_TIMOD_H) @@ -11065,17 +11067,17 @@ EOF fi fi ac_safe=`echo "sys/time.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for sys/time.h""... $ac_c" 1>&6 -echo "configure:11069: checking for sys/time.h" >&5 +echo "configure:11071: checking for sys/time.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 -#line 11074 "configure" +#line 11076 "configure" #include "confdefs.h" #include <sys/time.h> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:11079: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:11081: \"$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* @@ -11093,7 +11095,7 @@ if eval "test \"`echo '$ac_cv_header_'$ac_safe`\" = yes"; then echo "$ac_t""yes" 1>&6 cat > conftest.$ac_ext <<EOF -#line 11097 "configure" +#line 11099 "configure" #include "confdefs.h" #include <time.h> EOF @@ -11119,17 +11121,17 @@ fi ac_safe=`echo "sys/mman.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for sys/mman.h""... $ac_c" 1>&6 -echo "configure:11123: checking for sys/mman.h" >&5 +echo "configure:11125: checking for sys/mman.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 -#line 11128 "configure" +#line 11130 "configure" #include "confdefs.h" #include <sys/mman.h> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:11133: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:11135: \"$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* @@ -11147,7 +11149,7 @@ if eval "test \"`echo '$ac_cv_header_'$ac_safe`\" = yes"; then echo "$ac_t""yes" 1>&6 cat > conftest.$ac_ext <<EOF -#line 11151 "configure" +#line 11153 "configure" #include "confdefs.h" #include <sys/mman.h> EOF @@ -11179,17 +11181,17 @@ fi ac_safe=`echo "bstring.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for bstring.h""... $ac_c" 1>&6 -echo "configure:11183: checking for bstring.h" >&5 +echo "configure:11185: checking for bstring.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 -#line 11188 "configure" +#line 11190 "configure" #include "confdefs.h" #include <bstring.h> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:11193: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:11195: \"$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* @@ -11207,7 +11209,7 @@ if eval "test \"`echo '$ac_cv_header_'$ac_safe`\" = yes"; then echo "$ac_t""yes" 1>&6 cat > conftest.$ac_ext <<EOF -#line 11211 "configure" +#line 11213 "configure" #include "confdefs.h" #include <bstring.h> EOF @@ -11231,17 +11233,17 @@ fi ac_safe=`echo "strings.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for strings.h""... $ac_c" 1>&6 -echo "configure:11235: checking for strings.h" >&5 +echo "configure:11237: checking for strings.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 -#line 11240 "configure" +#line 11242 "configure" #include "confdefs.h" #include <strings.h> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:11245: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:11247: \"$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* @@ -11259,7 +11261,7 @@ if eval "test \"`echo '$ac_cv_header_'$ac_safe`\" = yes"; then echo "$ac_t""yes" 1>&6 cat > conftest.$ac_ext <<EOF -#line 11263 "configure" +#line 11265 "configure" #include "confdefs.h" #include <strings.h> EOF @@ -11283,17 +11285,17 @@ fi ac_safe=`echo "sys/syscall.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for sys/syscall.h""... $ac_c" 1>&6 -echo "configure:11287: checking for sys/syscall.h" >&5 +echo "configure:11289: checking for sys/syscall.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 -#line 11292 "configure" +#line 11294 "configure" #include "confdefs.h" #include <sys/syscall.h> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:11297: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:11299: \"$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* @@ -11320,17 +11322,17 @@ fi ac_safe=`echo "poll.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for poll.h""... $ac_c" 1>&6 -echo "configure:11324: checking for poll.h" >&5 +echo "configure:11326: checking for poll.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 -#line 11329 "configure" +#line 11331 "configure" #include "confdefs.h" #include <poll.h> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:11334: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:11336: \"$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* @@ -11359,17 +11361,17 @@ for ac_hdr in pwd.h do ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 -echo "configure:11363: checking for $ac_hdr" >&5 +echo "configure:11365: 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 -#line 11368 "configure" +#line 11370 "configure" #include "confdefs.h" #include <$ac_hdr> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:11373: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:11375: \"$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* @@ -11397,17 +11399,17 @@ done ac_safe=`echo "regexpr.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for regexpr.h""... $ac_c" 1>&6 -echo "configure:11401: checking for regexpr.h" >&5 +echo "configure:11403: checking for regexpr.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 -#line 11406 "configure" +#line 11408 "configure" #include "confdefs.h" #include <regexpr.h> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:11411: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:11413: \"$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* @@ -11434,17 +11436,17 @@ fi ac_safe=`echo "stropts.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for stropts.h""... $ac_c" 1>&6 -echo "configure:11438: checking for stropts.h" >&5 +echo "configure:11440: checking for stropts.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 -#line 11443 "configure" +#line 11445 "configure" #include "confdefs.h" #include <stropts.h> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:11448: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:11450: \"$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* @@ -11471,17 +11473,17 @@ fi ac_safe=`echo "siginfo.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for siginfo.h""... $ac_c" 1>&6 -echo "configure:11475: checking for siginfo.h" >&5 +echo "configure:11477: checking for siginfo.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 -#line 11480 "configure" +#line 11482 "configure" #include "confdefs.h" #include <siginfo.h> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:11485: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:11487: \"$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* @@ -11509,17 +11511,17 @@ fi ac_safe=`echo "unistd.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for unistd.h""... $ac_c" 1>&6 -echo "configure:11513: checking for unistd.h" >&5 +echo "configure:11515: checking for unistd.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 -#line 11518 "configure" +#line 11520 "configure" #include "confdefs.h" #include <unistd.h> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:11523: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:11525: \"$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* @@ -11547,17 +11549,17 @@ fi ac_safe=`echo "utime.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for utime.h""... $ac_c" 1>&6 -echo "configure:11551: checking for utime.h" >&5 +echo "configure:11553: checking for utime.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 -#line 11556 "configure" +#line 11558 "configure" #include "confdefs.h" #include <utime.h> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:11561: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:11563: \"$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* @@ -11585,17 +11587,17 @@ fi ac_safe=`echo "libc.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for libc.h""... $ac_c" 1>&6 -echo "configure:11589: checking for libc.h" >&5 +echo "configure:11591: checking for libc.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 -#line 11594 "configure" +#line 11596 "configure" #include "confdefs.h" #include <libc.h> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:11599: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:11601: \"$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* @@ -11622,17 +11624,17 @@ fi ac_safe=`echo "osfcn.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for osfcn.h""... $ac_c" 1>&6 -echo "configure:11626: checking for osfcn.h" >&5 +echo "configure:11628: checking for osfcn.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 -#line 11631 "configure" +#line 11633 "configure" #include "confdefs.h" #include <osfcn.h> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:11636: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:11638: \"$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* @@ -11659,17 +11661,17 @@ fi ac_safe=`echo "new" | sed 'y%./+-%__p_%'` echo $ac_n "checking for new""... $ac_c" 1>&6 -echo "configure:11663: checking for new" >&5 +echo "configure:11665: checking for new" >&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 -#line 11668 "configure" +#line 11670 "configure" #include "confdefs.h" #include <new> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:11673: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:11675: \"$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* @@ -11694,17 +11696,17 @@ else ac_safe=`echo "new.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for new.h""... $ac_c" 1>&6 -echo "configure:11698: checking for new.h" >&5 +echo "configure:11700: checking for new.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 -#line 11703 "configure" +#line 11705 "configure" #include "confdefs.h" #include <new.h> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:11708: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:11710: \"$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* @@ -11734,17 +11736,17 @@ fi ac_safe=`echo "stdexcept" | sed 'y%./+-%__p_%'` echo $ac_n "checking for stdexcept""... $ac_c" 1>&6 -echo "configure:11738: checking for stdexcept" >&5 +echo "configure:11740: checking for stdexcept" >&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 -#line 11743 "configure" +#line 11745 "configure" #include "confdefs.h" #include <stdexcept> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:11748: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:11750: \"$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* @@ -11769,17 +11771,17 @@ else ac_safe=`echo "exception.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for exception.h""... $ac_c" 1>&6 -echo "configure:11773: checking for exception.h" >&5 +echo "configure:11775: checking for exception.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 -#line 11778 "configure" +#line 11780 "configure" #include "confdefs.h" #include <exception.h> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:11783: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:11785: \"$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* @@ -11809,17 +11811,17 @@ fi ac_safe=`echo "iomanip" | sed 'y%./+-%__p_%'` echo $ac_n "checking for iomanip""... $ac_c" 1>&6 -echo "configure:11813: checking for iomanip" >&5 +echo "configure:11815: checking for iomanip" >&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 -#line 11818 "configure" +#line 11820 "configure" #include "confdefs.h" #include <iomanip> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:11823: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:11825: \"$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* @@ -11846,17 +11848,17 @@ fi ac_safe=`echo "cstring" | sed 'y%./+-%__p_%'` echo $ac_n "checking for cstring""... $ac_c" 1>&6 -echo "configure:11850: checking for cstring" >&5 +echo "configure:11852: checking for cstring" >&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 -#line 11855 "configure" +#line 11857 "configure" #include "confdefs.h" #include <cstring> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:11860: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:11862: \"$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* @@ -11883,17 +11885,17 @@ fi ac_safe=`echo "memory" | sed 'y%./+-%__p_%'` echo $ac_n "checking for memory""... $ac_c" 1>&6 -echo "configure:11887: checking for memory" >&5 +echo "configure:11889: checking for memory" >&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 -#line 11892 "configure" +#line 11894 "configure" #include "confdefs.h" #include <memory> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:11897: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:11899: \"$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* @@ -11916,17 +11918,17 @@ fi ac_safe=`echo "map" | sed 'y%./+-%__p_%'` echo $ac_n "checking for map""... $ac_c" 1>&6 -echo "configure:11920: checking for map" >&5 +echo "configure:11922: checking for map" >&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 -#line 11925 "configure" +#line 11927 "configure" #include "confdefs.h" #include <map> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:11930: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:11932: \"$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* @@ -11945,17 +11947,17 @@ if eval "test \"`echo '$ac_cv_header_'$ac_safe`\" = yes"; then ac_safe=`echo "net/if.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for net/if.h""... $ac_c" 1>&6 -echo "configure:11949: checking for net/if.h" >&5 +echo "configure:11951: checking for net/if.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 -#line 11954 "configure" +#line 11956 "configure" #include "confdefs.h" #include <net/if.h> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:11959: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:11961: \"$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* @@ -11974,13 +11976,13 @@ if eval "test \"`echo '$ac_cv_header_'$ac_safe`\" = yes"; then echo $ac_n "checking if STL map class conflicts with <net/if.h> map struct""... $ac_c" 1>&6 -echo "configure:11978: checking if STL map class conflicts with <net/if.h> map struct" >&5 +echo "configure:11980: checking if STL map class conflicts with <net/if.h> map struct" >&5 if eval "test \"`echo '$''{'ace_cv_header_stl_map_conflict'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 11984 "configure" +#line 11986 "configure" #include "confdefs.h" #ifndef ACE_LACKS_SYS_TYPES_H @@ -11995,7 +11997,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:11999: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:12001: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_header_stl_map_conflict=no @@ -12037,17 +12039,17 @@ fi ac_safe=`echo "queue" | sed 'y%./+-%__p_%'` echo $ac_n "checking for queue""... $ac_c" 1>&6 -echo "configure:12041: checking for queue" >&5 +echo "configure:12043: checking for queue" >&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 -#line 12046 "configure" +#line 12048 "configure" #include "confdefs.h" #include <queue> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:12051: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:12053: \"$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* @@ -12066,17 +12068,17 @@ if eval "test \"`echo '$ac_cv_header_'$ac_safe`\" = yes"; then ac_safe=`echo "netinet/in.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for netinet/in.h""... $ac_c" 1>&6 -echo "configure:12070: checking for netinet/in.h" >&5 +echo "configure:12072: checking for netinet/in.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 -#line 12075 "configure" +#line 12077 "configure" #include "confdefs.h" #include <netinet/in.h> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:12080: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:12082: \"$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* @@ -12095,13 +12097,13 @@ if eval "test \"`echo '$ac_cv_header_'$ac_safe`\" = yes"; then echo $ac_n "checking if STL queue class conflicts with <netinet/in.h> queue struct""... $ac_c" 1>&6 -echo "configure:12099: checking if STL queue class conflicts with <netinet/in.h> queue struct" >&5 +echo "configure:12101: checking if STL queue class conflicts with <netinet/in.h> queue struct" >&5 if eval "test \"`echo '$''{'ace_cv_header_stl_queue_conflict'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 12105 "configure" +#line 12107 "configure" #include "confdefs.h" #ifndef ACE_LACKS_SYS_TYPES_H @@ -12116,7 +12118,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:12120: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:12122: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_header_stl_queue_conflict=no @@ -12160,17 +12162,17 @@ for ac_hdr in iomanip ios iostream istream ostream fstream streambuf do ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 -echo "configure:12164: checking for $ac_hdr" >&5 +echo "configure:12166: 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 -#line 12169 "configure" +#line 12171 "configure" #include "confdefs.h" #include <$ac_hdr> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:12174: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:12176: \"$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* @@ -12203,17 +12205,17 @@ done ac_safe=`echo "iostream.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for iostream.h""... $ac_c" 1>&6 -echo "configure:12207: checking for iostream.h" >&5 +echo "configure:12209: checking for iostream.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 -#line 12212 "configure" +#line 12214 "configure" #include "confdefs.h" #include <iostream.h> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:12217: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:12219: \"$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* @@ -12231,17 +12233,17 @@ if eval "test \"`echo '$ac_cv_header_'$ac_safe`\" = yes"; then echo "$ac_t""yes" 1>&6 ac_safe=`echo "fstream.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for fstream.h""... $ac_c" 1>&6 -echo "configure:12235: checking for fstream.h" >&5 +echo "configure:12237: checking for fstream.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 -#line 12240 "configure" +#line 12242 "configure" #include "confdefs.h" #include <fstream.h> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:12245: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:12247: \"$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* @@ -12277,13 +12279,13 @@ fi echo $ac_n "checking sched.h for thread scheduling definitions""... $ac_c" 1>&6 -echo "configure:12281: checking sched.h for thread scheduling definitions" >&5 +echo "configure:12283: checking sched.h for thread scheduling definitions" >&5 if eval "test \"`echo '$''{'ace_cv_needs_sched_h'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 12287 "configure" +#line 12289 "configure" #include "confdefs.h" #include <sched.h> EOF @@ -12319,13 +12321,13 @@ EOF echo $ac_n "checking regexpr.h for regular expression support""... $ac_c" 1>&6 -echo "configure:12323: checking regexpr.h for regular expression support" >&5 +echo "configure:12325: checking regexpr.h for regular expression support" >&5 if eval "test \"`echo '$''{'ace_cv_needs_regexpr_h'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 12329 "configure" +#line 12331 "configure" #include "confdefs.h" #include <regexpr.h> EOF @@ -12343,7 +12345,7 @@ else rm -rf conftest* cat > conftest.$ac_ext <<EOF -#line 12347 "configure" +#line 12349 "configure" #include "confdefs.h" #include <regexpr.h> EOF @@ -12389,13 +12391,13 @@ EOF echo $ac_n "checking if sprintf() returns char*""... $ac_c" 1>&6 -echo "configure:12393: checking if sprintf() returns char*" >&5 +echo "configure:12395: checking if sprintf() returns char*" >&5 if eval "test \"`echo '$''{'ace_cv_lib_charptr_sprintf'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 12399 "configure" +#line 12401 "configure" #include "confdefs.h" #include <stdlib.h> @@ -12413,7 +12415,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:12417: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:12419: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_charptr_sprintf=yes @@ -12448,13 +12450,13 @@ EOF echo $ac_n "checking for getopt() prototype""... $ac_c" 1>&6 -echo "configure:12452: checking for getopt() prototype" >&5 +echo "configure:12454: checking for getopt() prototype" >&5 if eval "test \"`echo '$''{'ace_cv_lib_getopt_proto'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 12458 "configure" +#line 12460 "configure" #include "confdefs.h" #include <unistd.h> EOF @@ -12468,7 +12470,7 @@ else rm -rf conftest* cat > conftest.$ac_ext <<EOF -#line 12472 "configure" +#line 12474 "configure" #include "confdefs.h" #include <stdlib.h> EOF @@ -12515,13 +12517,13 @@ EOF echo $ac_n "checking for old malloc() prototype""... $ac_c" 1>&6 -echo "configure:12519: checking for old malloc() prototype" >&5 +echo "configure:12521: checking for old malloc() prototype" >&5 if eval "test \"`echo '$''{'ace_cv_lib_old_malloc_proto'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 12525 "configure" +#line 12527 "configure" #include "confdefs.h" #include <stdlib.h> @@ -12536,7 +12538,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:12540: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:12542: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_old_malloc_proto=yes @@ -12571,13 +12573,13 @@ EOF echo $ac_n "checking for *_timedwait() prototypes""... $ac_c" 1>&6 -echo "configure:12575: checking for *_timedwait() prototypes" >&5 +echo "configure:12577: checking for *_timedwait() prototypes" >&5 if eval "test \"`echo '$''{'ace_cv_lib_timedwait_proto'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 12581 "configure" +#line 12583 "configure" #include "confdefs.h" #include <pthread.h> EOF @@ -12591,7 +12593,7 @@ else rm -rf conftest* cat > conftest.$ac_ext <<EOF -#line 12595 "configure" +#line 12597 "configure" #include "confdefs.h" #include <fcntl.h> EOF @@ -12632,13 +12634,13 @@ EOF echo $ac_n "checking for ualarm() prototype""... $ac_c" 1>&6 -echo "configure:12636: checking for ualarm() prototype" >&5 +echo "configure:12638: checking for ualarm() prototype" >&5 if eval "test \"`echo '$''{'ace_cv_lib_ualarm_proto'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 12642 "configure" +#line 12644 "configure" #include "confdefs.h" #include <unistd.h> EOF @@ -12675,13 +12677,13 @@ EOF echo $ac_n "checking for getrusage() in sys/resource.h""... $ac_c" 1>&6 -echo "configure:12679: checking for getrusage() in sys/resource.h" >&5 +echo "configure:12681: checking for getrusage() in sys/resource.h" >&5 if eval "test \"`echo '$''{'ace_cv_lib_has_getrusage_proto'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 12685 "configure" +#line 12687 "configure" #include "confdefs.h" #include <sys/resource.h> EOF @@ -12717,13 +12719,13 @@ EOF echo $ac_n "checking for getrlimit() and setrlimit() in sys/resource.h""... $ac_c" 1>&6 -echo "configure:12721: checking for getrlimit() and setrlimit() in sys/resource.h" >&5 +echo "configure:12723: checking for getrlimit() and setrlimit() in sys/resource.h" >&5 if eval "test \"`echo '$''{'ace_cv_lib_has_getsetrlimit_proto'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 12727 "configure" +#line 12729 "configure" #include "confdefs.h" #include <sys/resource.h> EOF @@ -12732,7 +12734,7 @@ if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | rm -rf conftest* cat > conftest.$ac_ext <<EOF -#line 12736 "configure" +#line 12738 "configure" #include "confdefs.h" #include <sys/resource.h> EOF @@ -12778,13 +12780,13 @@ EOF echo $ac_n "checking if dlfcn.h is protected by extern \"C\"""... $ac_c" 1>&6 -echo "configure:12782: checking if dlfcn.h is protected by extern \"C\"" >&5 +echo "configure:12784: checking if dlfcn.h is protected by extern \"C\"" >&5 if eval "test \"`echo '$''{'ace_cv_lib_dlfcn_with_extern_c'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 12788 "configure" +#line 12790 "configure" #include "confdefs.h" #include <dlfcn.h> EOF @@ -12822,12 +12824,12 @@ EOF echo $ac_n "checking for uid_t in sys/types.h""... $ac_c" 1>&6 -echo "configure:12826: checking for uid_t in sys/types.h" >&5 +echo "configure:12828: 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 -#line 12831 "configure" +#line 12833 "configure" #include "confdefs.h" #include <sys/types.h> EOF @@ -12856,12 +12858,12 @@ EOF fi echo $ac_n "checking for ANSI C header files""... $ac_c" 1>&6 -echo "configure:12860: checking for ANSI C header files" >&5 +echo "configure:12862: 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 <<EOF -#line 12865 "configure" +#line 12867 "configure" #include "confdefs.h" #include <stdlib.h> #include <stdarg.h> @@ -12869,7 +12871,7 @@ else #include <float.h> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:12873: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:12875: \"$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* @@ -12886,7 +12888,7 @@ rm -f conftest* 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 -#line 12890 "configure" +#line 12892 "configure" #include "confdefs.h" #include <string.h> EOF @@ -12904,7 +12906,7 @@ fi 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 -#line 12908 "configure" +#line 12910 "configure" #include "confdefs.h" #include <stdlib.h> EOF @@ -12925,7 +12927,7 @@ if test "$cross_compiling" = yes; then : else cat > conftest.$ac_ext <<EOF -#line 12929 "configure" +#line 12931 "configure" #include "confdefs.h" #ifdef __cplusplus extern "C" void exit(int); @@ -12939,7 +12941,7 @@ if (XOR (islower (i), ISLOWER (i)) || toupper (i) != TOUPPER (i)) exit(2); exit (0); } EOF -if { (eval echo configure:12943: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:12945: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null then : else @@ -12963,12 +12965,12 @@ EOF fi echo $ac_n "checking for mode_t""... $ac_c" 1>&6 -echo "configure:12967: checking for mode_t" >&5 +echo "configure:12969: checking for mode_t" >&5 if eval "test \"`echo '$''{'ac_cv_type_mode_t'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 12972 "configure" +#line 12974 "configure" #include "confdefs.h" #include <sys/types.h> #if STDC_HEADERS @@ -12996,12 +12998,12 @@ EOF fi echo $ac_n "checking for off_t""... $ac_c" 1>&6 -echo "configure:13000: checking for off_t" >&5 +echo "configure:13002: 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 <<EOF -#line 13005 "configure" +#line 13007 "configure" #include "confdefs.h" #include <sys/types.h> #if STDC_HEADERS @@ -13029,12 +13031,12 @@ EOF fi echo $ac_n "checking for pid_t""... $ac_c" 1>&6 -echo "configure:13033: checking for pid_t" >&5 +echo "configure:13035: 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 <<EOF -#line 13038 "configure" +#line 13040 "configure" #include "confdefs.h" #include <sys/types.h> #if STDC_HEADERS @@ -13062,12 +13064,12 @@ EOF fi echo $ac_n "checking for size_t""... $ac_c" 1>&6 -echo "configure:13066: checking for size_t" >&5 +echo "configure:13068: 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 <<EOF -#line 13071 "configure" +#line 13073 "configure" #include "confdefs.h" #include <sys/types.h> #if STDC_HEADERS @@ -13100,13 +13102,13 @@ fi echo $ac_n "checking for idtype_t in signal.h""... $ac_c" 1>&6 -echo "configure:13104: checking for idtype_t in signal.h" >&5 +echo "configure:13106: checking for idtype_t in signal.h" >&5 if eval "test \"`echo '$''{'ace_cv_type_idtype_t'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 13110 "configure" +#line 13112 "configure" #include "confdefs.h" #include <signal.h> @@ -13117,7 +13119,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:13121: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:13123: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_type_idtype_t=yes @@ -13151,13 +13153,13 @@ EOF echo $ac_n "checking for sem_t in semaphore.h""... $ac_c" 1>&6 -echo "configure:13155: checking for sem_t in semaphore.h" >&5 +echo "configure:13157: checking for sem_t in semaphore.h" >&5 if eval "test \"`echo '$''{'ace_cv_type_sem_t'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 13161 "configure" +#line 13163 "configure" #include "confdefs.h" #include <semaphore.h> @@ -13168,7 +13170,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:13172: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:13174: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_type_sem_t=yes @@ -13199,13 +13201,13 @@ fi echo $ac_n "checking for key_t in sys/types.h""... $ac_c" 1>&6 -echo "configure:13203: checking for key_t in sys/types.h" >&5 +echo "configure:13205: checking for key_t in sys/types.h" >&5 if eval "test \"`echo '$''{'ace_cv_type_key_t'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 13209 "configure" +#line 13211 "configure" #include "confdefs.h" #include <sys/types.h> @@ -13216,7 +13218,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:13220: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:13222: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_type_key_t=yes @@ -13251,13 +13253,13 @@ EOF echo $ac_n "checking for ssize_t in sys/types.h""... $ac_c" 1>&6 -echo "configure:13255: checking for ssize_t in sys/types.h" >&5 +echo "configure:13257: checking for ssize_t in sys/types.h" >&5 if eval "test \"`echo '$''{'ace_cv_type_ssize_t'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 13261 "configure" +#line 13263 "configure" #include "confdefs.h" #include <sys/types.h> @@ -13268,7 +13270,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:13272: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:13274: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_type_ssize_t=yes @@ -13302,13 +13304,13 @@ EOF echo $ac_n "checking for u_longlong_t in sys/types.h""... $ac_c" 1>&6 -echo "configure:13306: checking for u_longlong_t in sys/types.h" >&5 +echo "configure:13308: checking for u_longlong_t in sys/types.h" >&5 if eval "test \"`echo '$''{'ace_cv_type_u_longlong_t'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 13312 "configure" +#line 13314 "configure" #include "confdefs.h" #include <sys/types.h> @@ -13319,7 +13321,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:13323: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:13325: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_type_u_longlong_t=yes @@ -13354,13 +13356,13 @@ EOF echo $ac_n "checking for pri_t in sys/types.h""... $ac_c" 1>&6 -echo "configure:13358: checking for pri_t in sys/types.h" >&5 +echo "configure:13360: checking for pri_t in sys/types.h" >&5 if eval "test \"`echo '$''{'ace_cv_type_pri_t'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 13364 "configure" +#line 13366 "configure" #include "confdefs.h" #include <sys/types.h> @@ -13371,7 +13373,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:13375: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:13377: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_type_pri_t=yes @@ -13406,13 +13408,13 @@ EOF echo $ac_n "checking for socklen_t in sys/socket.h""... $ac_c" 1>&6 -echo "configure:13410: checking for socklen_t in sys/socket.h" >&5 +echo "configure:13412: checking for socklen_t in sys/socket.h" >&5 if eval "test \"`echo '$''{'ace_cv_type_socklen_t'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 13416 "configure" +#line 13418 "configure" #include "confdefs.h" #include <sys/socket.h> @@ -13423,7 +13425,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:13427: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:13429: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_type_socklen_t=yes @@ -13457,13 +13459,13 @@ EOF echo $ac_n "checking for ucontext_t in ucontext.h""... $ac_c" 1>&6 -echo "configure:13461: checking for ucontext_t in ucontext.h" >&5 +echo "configure:13463: checking for ucontext_t in ucontext.h" >&5 if eval "test \"`echo '$''{'ace_cv_type_ucontext_t'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 13467 "configure" +#line 13469 "configure" #include "confdefs.h" #include <ucontext.h> @@ -13474,7 +13476,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:13478: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:13480: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_type_ucontext_t=yes @@ -13508,13 +13510,13 @@ EOF echo $ac_n "checking for wchar_t in wchar.h""... $ac_c" 1>&6 -echo "configure:13512: checking for wchar_t in wchar.h" >&5 +echo "configure:13514: checking for wchar_t in wchar.h" >&5 if eval "test \"`echo '$''{'ace_cv_type_wchar_t'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 13518 "configure" +#line 13520 "configure" #include "confdefs.h" #include <wchar.h> @@ -13525,7 +13527,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:13529: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:13531: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_type_wchar_t=yes @@ -13556,13 +13558,13 @@ EOF echo $ac_n "checking for wchar_t in sys/types.h""... $ac_c" 1>&6 -echo "configure:13560: checking for wchar_t in sys/types.h" >&5 +echo "configure:13562: checking for wchar_t in sys/types.h" >&5 if eval "test \"`echo '$''{'ace_cv_type_wchar_t'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 13566 "configure" +#line 13568 "configure" #include "confdefs.h" #include <sys/types.h> @@ -13573,7 +13575,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:13577: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:13579: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_type_wchar_t=yes @@ -13612,13 +13614,13 @@ EOF echo $ac_n "checking for sig_atomic_t""... $ac_c" 1>&6 -echo "configure:13616: checking for sig_atomic_t" >&5 +echo "configure:13618: checking for sig_atomic_t" >&5 if eval "test \"`echo '$''{'ace_cv_lib_posix_defines_sig_atomic_t'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 13622 "configure" +#line 13624 "configure" #include "confdefs.h" #ifndef ACE_LACKS_SYS_TYPES_H @@ -13632,7 +13634,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:13636: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:13638: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_posix_defines_sig_atomic_t=yes @@ -13669,7 +13671,7 @@ EOF echo $ac_n "checking for struct flock in fcntl.h""... $ac_c" 1>&6 -echo "configure:13673: checking for struct flock in fcntl.h" >&5 +echo "configure:13675: checking for struct flock in fcntl.h" >&5 if eval "test \"`echo '$''{'ace_cv_struct_flock'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -13677,7 +13679,7 @@ else cat > conftest.$ac_ext <<EOF -#line 13681 "configure" +#line 13683 "configure" #include "confdefs.h" #include <fcntl.h> @@ -13688,7 +13690,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:13692: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:13694: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* @@ -13701,7 +13703,7 @@ else rm -rf conftest* cat > conftest.$ac_ext <<EOF -#line 13705 "configure" +#line 13707 "configure" #include "confdefs.h" #include <fcntl.h> @@ -13712,7 +13714,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:13716: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:13718: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* @@ -13756,7 +13758,7 @@ EOF echo $ac_n "checking for struct rwlock_t in synch.h""... $ac_c" 1>&6 -echo "configure:13760: checking for struct rwlock_t in synch.h" >&5 +echo "configure:13762: checking for struct rwlock_t in synch.h" >&5 if eval "test \"`echo '$''{'ace_cv_struct_rwlock_t'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -13764,7 +13766,7 @@ else cat > conftest.$ac_ext <<EOF -#line 13768 "configure" +#line 13770 "configure" #include "confdefs.h" #include <synch.h> @@ -13775,7 +13777,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:13779: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:13781: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* @@ -13788,7 +13790,7 @@ else rm -rf conftest* cat > conftest.$ac_ext <<EOF -#line 13792 "configure" +#line 13794 "configure" #include "confdefs.h" #include <synch.h> @@ -13799,7 +13801,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:13803: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:13805: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* @@ -13843,7 +13845,7 @@ EOF echo $ac_n "checking for struct strbuf in stropts.h""... $ac_c" 1>&6 -echo "configure:13847: checking for struct strbuf in stropts.h" >&5 +echo "configure:13849: checking for struct strbuf in stropts.h" >&5 if eval "test \"`echo '$''{'ace_cv_struct_strbuf'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -13851,7 +13853,7 @@ else cat > conftest.$ac_ext <<EOF -#line 13855 "configure" +#line 13857 "configure" #include "confdefs.h" #include <stropts.h> @@ -13862,7 +13864,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:13866: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:13868: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* @@ -13875,7 +13877,7 @@ else rm -rf conftest* cat > conftest.$ac_ext <<EOF -#line 13879 "configure" +#line 13881 "configure" #include "confdefs.h" #include <stropts.h> @@ -13886,7 +13888,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:13890: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:13892: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* @@ -13929,7 +13931,7 @@ EOF echo $ac_n "checking for struct msgbuf in sys/msg.h""... $ac_c" 1>&6 -echo "configure:13933: checking for struct msgbuf in sys/msg.h" >&5 +echo "configure:13935: checking for struct msgbuf in sys/msg.h" >&5 if eval "test \"`echo '$''{'ace_cv_struct_msgbuf'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -13937,7 +13939,7 @@ else cat > conftest.$ac_ext <<EOF -#line 13941 "configure" +#line 13943 "configure" #include "confdefs.h" #include <sys/msg.h> @@ -13948,7 +13950,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:13952: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:13954: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* @@ -13961,7 +13963,7 @@ else rm -rf conftest* cat > conftest.$ac_ext <<EOF -#line 13965 "configure" +#line 13967 "configure" #include "confdefs.h" #include <sys/msg.h> @@ -13972,7 +13974,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:13976: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:13978: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* @@ -14020,7 +14022,7 @@ case "$target" in echo $ac_n "checking for struct prusage_t in sys/procfs.h""... $ac_c" 1>&6 -echo "configure:14024: checking for struct prusage_t in sys/procfs.h" >&5 +echo "configure:14026: checking for struct prusage_t in sys/procfs.h" >&5 if eval "test \"`echo '$''{'ace_cv_struct_prusage_t'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -14028,7 +14030,7 @@ else cat > conftest.$ac_ext <<EOF -#line 14032 "configure" +#line 14034 "configure" #include "confdefs.h" #include <sys/procfs.h> @@ -14039,7 +14041,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:14043: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:14045: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* @@ -14052,7 +14054,7 @@ else rm -rf conftest* cat > conftest.$ac_ext <<EOF -#line 14056 "configure" +#line 14058 "configure" #include "confdefs.h" #include <sys/procfs.h> @@ -14063,7 +14065,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:14067: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:14069: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* @@ -14108,7 +14110,7 @@ esac echo $ac_n "checking for struct strrecvfd in stropts.h""... $ac_c" 1>&6 -echo "configure:14112: checking for struct strrecvfd in stropts.h" >&5 +echo "configure:14114: checking for struct strrecvfd in stropts.h" >&5 if eval "test \"`echo '$''{'ace_cv_struct_strrecvfd'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -14116,7 +14118,7 @@ else cat > conftest.$ac_ext <<EOF -#line 14120 "configure" +#line 14122 "configure" #include "confdefs.h" #include <stropts.h> @@ -14127,7 +14129,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:14131: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:14133: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* @@ -14140,7 +14142,7 @@ else rm -rf conftest* cat > conftest.$ac_ext <<EOF -#line 14144 "configure" +#line 14146 "configure" #include "confdefs.h" #include <stropts.h> @@ -14151,7 +14153,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:14155: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:14157: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* @@ -14195,7 +14197,7 @@ EOF echo $ac_n "checking for struct sembuf in sys/sem.h""... $ac_c" 1>&6 -echo "configure:14199: checking for struct sembuf in sys/sem.h" >&5 +echo "configure:14201: checking for struct sembuf in sys/sem.h" >&5 if eval "test \"`echo '$''{'ace_cv_struct_sembuf'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -14203,7 +14205,7 @@ else cat > conftest.$ac_ext <<EOF -#line 14207 "configure" +#line 14209 "configure" #include "confdefs.h" #include <sys/sem.h> @@ -14214,7 +14216,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:14218: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:14220: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* @@ -14227,7 +14229,7 @@ else rm -rf conftest* cat > conftest.$ac_ext <<EOF -#line 14231 "configure" +#line 14233 "configure" #include "confdefs.h" #include <sys/sem.h> @@ -14238,7 +14240,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:14242: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:14244: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* @@ -14282,7 +14284,7 @@ EOF echo $ac_n "checking for struct sigaction in signal.h""... $ac_c" 1>&6 -echo "configure:14286: checking for struct sigaction in signal.h" >&5 +echo "configure:14288: checking for struct sigaction in signal.h" >&5 if eval "test \"`echo '$''{'ace_cv_struct_sigaction'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -14290,7 +14292,7 @@ else cat > conftest.$ac_ext <<EOF -#line 14294 "configure" +#line 14296 "configure" #include "confdefs.h" #include <signal.h> @@ -14301,7 +14303,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:14305: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:14307: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* @@ -14314,7 +14316,7 @@ else rm -rf conftest* cat > conftest.$ac_ext <<EOF -#line 14318 "configure" +#line 14320 "configure" #include "confdefs.h" #include <signal.h> @@ -14325,7 +14327,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:14329: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:14331: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* @@ -14369,7 +14371,7 @@ EOF echo $ac_n "checking for struct sigset_t in signal.h""... $ac_c" 1>&6 -echo "configure:14373: checking for struct sigset_t in signal.h" >&5 +echo "configure:14375: checking for struct sigset_t in signal.h" >&5 if eval "test \"`echo '$''{'ace_cv_struct_sigset_t'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -14377,7 +14379,7 @@ else cat > conftest.$ac_ext <<EOF -#line 14381 "configure" +#line 14383 "configure" #include "confdefs.h" #include <signal.h> @@ -14388,7 +14390,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:14392: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:14394: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* @@ -14401,7 +14403,7 @@ else rm -rf conftest* cat > conftest.$ac_ext <<EOF -#line 14405 "configure" +#line 14407 "configure" #include "confdefs.h" #include <signal.h> @@ -14412,7 +14414,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:14416: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:14418: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* @@ -14456,7 +14458,7 @@ EOF echo $ac_n "checking for struct utsname in sys/utsname.h""... $ac_c" 1>&6 -echo "configure:14460: checking for struct utsname in sys/utsname.h" >&5 +echo "configure:14462: checking for struct utsname in sys/utsname.h" >&5 if eval "test \"`echo '$''{'ace_cv_struct_utsname'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -14464,7 +14466,7 @@ else cat > conftest.$ac_ext <<EOF -#line 14468 "configure" +#line 14470 "configure" #include "confdefs.h" #include <sys/utsname.h> @@ -14475,7 +14477,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:14479: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:14481: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* @@ -14488,7 +14490,7 @@ else rm -rf conftest* cat > conftest.$ac_ext <<EOF -#line 14492 "configure" +#line 14494 "configure" #include "confdefs.h" #include <sys/utsname.h> @@ -14499,7 +14501,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:14503: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:14505: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* @@ -14541,7 +14543,7 @@ EOF echo $ac_n "checking for struct siginfo_t""... $ac_c" 1>&6 -echo "configure:14545: checking for struct siginfo_t" >&5 +echo "configure:14547: checking for struct siginfo_t" >&5 if eval "test \"`echo '$''{'ace_cv_struct_siginfo_t'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -14549,7 +14551,7 @@ else cat > conftest.$ac_ext <<EOF -#line 14553 "configure" +#line 14555 "configure" #include "confdefs.h" #include <siginfo.h> @@ -14560,7 +14562,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:14564: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:14566: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* @@ -14573,7 +14575,7 @@ else rm -rf conftest* cat > conftest.$ac_ext <<EOF -#line 14577 "configure" +#line 14579 "configure" #include "confdefs.h" #include <siginfo.h> @@ -14584,7 +14586,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:14588: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:14590: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* @@ -14600,7 +14602,7 @@ else cat > conftest.$ac_ext <<EOF -#line 14604 "configure" +#line 14606 "configure" #include "confdefs.h" #include <signal.h> @@ -14611,7 +14613,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:14615: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:14617: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* @@ -14624,7 +14626,7 @@ else rm -rf conftest* cat > conftest.$ac_ext <<EOF -#line 14628 "configure" +#line 14630 "configure" #include "confdefs.h" #include <signal.h> @@ -14635,7 +14637,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:14639: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:14641: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* @@ -14685,13 +14687,13 @@ EOF echo $ac_n "checking for struct msghdr""... $ac_c" 1>&6 -echo "configure:14689: checking for struct msghdr" >&5 +echo "configure:14691: checking for struct msghdr" >&5 if eval "test \"`echo '$''{'ace_cv_struct_msghdr'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 14695 "configure" +#line 14697 "configure" #include "confdefs.h" #ifndef ACE_LACKS_SYS_TYPES_H @@ -14705,7 +14707,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:14709: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:14711: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_struct_msghdr=yes @@ -14737,13 +14739,13 @@ EOF echo $ac_n "checking for condition variable support""... $ac_c" 1>&6 -echo "configure:14741: checking for condition variable support" >&5 +echo "configure:14743: checking for condition variable support" >&5 if eval "test \"`echo '$''{'ace_cv_struct_cond_t'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 14747 "configure" +#line 14749 "configure" #include "confdefs.h" #include <pthread.h> @@ -14754,7 +14756,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:14758: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:14760: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_struct_cond_t=yes @@ -14765,7 +14767,7 @@ else rm -rf conftest* cat > conftest.$ac_ext <<EOF -#line 14769 "configure" +#line 14771 "configure" #include "confdefs.h" #include <synch.h> @@ -14776,7 +14778,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:14780: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:14782: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_struct_cond_t=yes @@ -14812,13 +14814,13 @@ EOF echo $ac_n "checking for POSIX timer structure""... $ac_c" 1>&6 -echo "configure:14816: checking for POSIX timer structure" >&5 +echo "configure:14818: checking for POSIX timer structure" >&5 if eval "test \"`echo '$''{'ace_cv_lib_posix_timer_struct'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 14822 "configure" +#line 14824 "configure" #include "confdefs.h" #include <time.h> @@ -14833,7 +14835,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:14837: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:14839: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_posix_timer_struct=yes @@ -14844,7 +14846,7 @@ else rm -rf conftest* cat > conftest.$ac_ext <<EOF -#line 14848 "configure" +#line 14850 "configure" #include "confdefs.h" #include <time.h> @@ -14859,19 +14861,19 @@ int main() { ; return 0; } EOF -if { (eval echo configure:14863: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:14865: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_posix_timer_struct=yes echo $ac_n "checking for struct timespec in sys/timers.h""... $ac_c" 1>&6 -echo "configure:14869: checking for struct timespec in sys/timers.h" >&5 +echo "configure:14871: checking for struct timespec in sys/timers.h" >&5 if eval "test \"`echo '$''{'ace_cv_lib_posix_struct_timespec_broken'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 14875 "configure" +#line 14877 "configure" #include "confdefs.h" #include <sys/timers.h> @@ -14882,7 +14884,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:14886: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:14888: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_posix_struct_timespec_broken=yes @@ -14947,13 +14949,13 @@ EOF echo $ac_n "checking for struct timespec in sys/timers.h""... $ac_c" 1>&6 -echo "configure:14951: checking for struct timespec in sys/timers.h" >&5 +echo "configure:14953: checking for struct timespec in sys/timers.h" >&5 if eval "test \"`echo '$''{'ace_cv_lib_posix_struct_timespec_broken'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 14957 "configure" +#line 14959 "configure" #include "confdefs.h" #include <sys/timers.h> @@ -14964,7 +14966,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:14968: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:14970: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_posix_struct_timespec_broken=yes @@ -15000,13 +15002,13 @@ EOF echo $ac_n "checking for timespec_t""... $ac_c" 1>&6 -echo "configure:15004: checking for timespec_t" >&5 +echo "configure:15006: checking for timespec_t" >&5 if eval "test \"`echo '$''{'ace_cv_lib_posix_timespec_t'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 15010 "configure" +#line 15012 "configure" #include "confdefs.h" #include <time.h> @@ -15021,7 +15023,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:15025: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:15027: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_posix_timespec_t=yes @@ -15054,13 +15056,13 @@ EOF echo $ac_n "checking for union semun""... $ac_c" 1>&6 -echo "configure:15058: checking for union semun" >&5 +echo "configure:15060: checking for union semun" >&5 if eval "test \"`echo '$''{'ace_cv_lib_posix_defines_union_semun'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 15064 "configure" +#line 15066 "configure" #include "confdefs.h" #ifndef ACE_LACKS_SYS_TYPES_H @@ -15077,7 +15079,7 @@ semun us; ; return 0; } EOF -if { (eval echo configure:15081: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:15083: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_posix_defines_union_semun=yes @@ -15111,13 +15113,13 @@ EOF echo $ac_n "checking for broken struct timespec members""... $ac_c" 1>&6 -echo "configure:15115: checking for broken struct timespec members" >&5 +echo "configure:15117: checking for broken struct timespec members" >&5 if eval "test \"`echo '$''{'ace_cv_lib_broken_timespec'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 15121 "configure" +#line 15123 "configure" #include "confdefs.h" #include <time.h> @@ -15134,7 +15136,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:15138: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:15140: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_broken_timespec=yes @@ -15166,13 +15168,13 @@ EOF echo $ac_n "checking for limited struct rusage""... $ac_c" 1>&6 -echo "configure:15170: checking for limited struct rusage" >&5 +echo "configure:15172: checking for limited struct rusage" >&5 if eval "test \"`echo '$''{'ace_cv_lib_limited_rusage'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 15176 "configure" +#line 15178 "configure" #include "confdefs.h" #include <sys/resource.h> @@ -15191,7 +15193,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:15195: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:15197: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_limited_rusage=no @@ -15224,13 +15226,13 @@ EOF if test "$ace_cv_struct_siginfo_t" = yes; then echo $ac_n "checking for si_addr member in struct siginfo_t""... $ac_c" 1>&6 -echo "configure:15228: checking for si_addr member in struct siginfo_t" >&5 +echo "configure:15230: checking for si_addr member in struct siginfo_t" >&5 if eval "test \"`echo '$''{'ace_cv_lib_posix_si_addr'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 15234 "configure" +#line 15236 "configure" #include "confdefs.h" #ifndef ACE_LACKS_SIGINFO_H @@ -15245,7 +15247,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:15249: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:15251: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_posix_si_addr=yes @@ -15278,13 +15280,13 @@ EOF fi echo $ac_n "checking for sin_len member in struct sockaddr_in""... $ac_c" 1>&6 -echo "configure:15282: checking for sin_len member in struct sockaddr_in" >&5 +echo "configure:15284: checking for sin_len member in struct sockaddr_in" >&5 if eval "test \"`echo '$''{'ace_cv_lib_has_sin_len'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 15288 "configure" +#line 15290 "configure" #include "confdefs.h" #ifndef ACE_LACKS_SYS_TYPES_H @@ -15299,7 +15301,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:15303: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:15305: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_has_sin_len=yes @@ -15331,13 +15333,13 @@ EOF echo $ac_n "checking for sys_siglist""... $ac_c" 1>&6 -echo "configure:15335: checking for sys_siglist" >&5 +echo "configure:15337: checking for sys_siglist" >&5 if eval "test \"`echo '$''{'ace_cv_lib_posix_sys_siglist'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 15341 "configure" +#line 15343 "configure" #include "confdefs.h" #ifndef ACE_LACKS_UNISTD_H @@ -15354,7 +15356,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:15358: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:15360: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_posix_sys_siglist=yes @@ -15386,13 +15388,13 @@ EOF echo $ac_n "checking for sys_errlist""... $ac_c" 1>&6 -echo "configure:15390: checking for sys_errlist" >&5 +echo "configure:15392: checking for sys_errlist" >&5 if eval "test \"`echo '$''{'ace_cv_lib_posix_sys_errlist'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 15396 "configure" +#line 15398 "configure" #include "confdefs.h" #include <stdio.h> @@ -15407,7 +15409,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:15411: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:15413: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_posix_sys_errlist=yes @@ -15439,13 +15441,13 @@ EOF echo $ac_n "checking for sys_nerr in headers""... $ac_c" 1>&6 -echo "configure:15443: checking for sys_nerr in headers" >&5 +echo "configure:15445: checking for sys_nerr in headers" >&5 if eval "test \"`echo '$''{'ace_cv_lib_posix_sys_nerr'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 15449 "configure" +#line 15451 "configure" #include "confdefs.h" #include <stdio.h> @@ -15460,7 +15462,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:15464: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:15466: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_posix_sys_nerr=yes @@ -15486,12 +15488,12 @@ fi ace_just_a_place_holder=fixme echo $ac_n "checking for sys_nerr""... $ac_c" 1>&6 -echo "configure:15490: checking for sys_nerr" >&5 +echo "configure:15492: checking for sys_nerr" >&5 if eval "test \"`echo '$''{'ac_cv_func_sys_nerr'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 15495 "configure" +#line 15497 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char sys_nerr(); below. */ @@ -15517,7 +15519,7 @@ sys_nerr(); ; return 0; } EOF -if { (eval echo configure:15521: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:15523: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_sys_nerr=yes" else @@ -15602,13 +15604,13 @@ rm -f confcache echo $ac_n "checking if compiler accepts \"pragma once\" directive""... $ac_c" 1>&6 -echo "configure:15606: checking if compiler accepts \"pragma once\" directive" >&5 +echo "configure:15608: checking if compiler accepts \"pragma once\" directive" >&5 if eval "test \"`echo '$''{'ace_cv_has_pragma_once'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 15612 "configure" +#line 15614 "configure" #include "confdefs.h" #pragma once @@ -15619,7 +15621,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:15623: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:15625: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_has_pragma_once=yes @@ -15660,20 +15662,20 @@ if test -n "$GXX"; then CFLAGS="$CFLAGS -pipe" echo $ac_n "checking if \"-pipe\" compiler flag is supported""... $ac_c" 1>&6 -echo "configure:15664: checking if \"-pipe\" compiler flag is supported" >&5 +echo "configure:15666: checking if \"-pipe\" compiler flag is supported" >&5 if eval "test \"`echo '$''{'ace_cv_feature_gxx_has_pipe'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 15670 "configure" +#line 15672 "configure" #include "confdefs.h" int main() { int a = 0; ; return 0; } EOF -if { (eval echo configure:15677: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:15679: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_feature_gxx_has_pipe=yes @@ -15716,14 +15718,14 @@ fi if test "$cross_compiling" != yes; then echo $ac_n "checking whether byte ordering is bigendian""... $ac_c" 1>&6 -echo "configure:15720: checking whether byte ordering is bigendian" >&5 +echo "configure:15722: checking whether byte ordering is bigendian" >&5 if eval "test \"`echo '$''{'ac_cv_c_bigendian'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else ac_cv_c_bigendian=unknown # See if sys/param.h defines the BYTE_ORDER macro. cat > conftest.$ac_ext <<EOF -#line 15727 "configure" +#line 15729 "configure" #include "confdefs.h" #include <sys/types.h> #include <sys/param.h> @@ -15734,11 +15736,11 @@ int main() { #endif ; return 0; } EOF -if { (eval echo configure:15738: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:15740: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* # It does; now see whether it defined to BIG_ENDIAN or not. cat > conftest.$ac_ext <<EOF -#line 15742 "configure" +#line 15744 "configure" #include "confdefs.h" #include <sys/types.h> #include <sys/param.h> @@ -15749,7 +15751,7 @@ int main() { #endif ; return 0; } EOF -if { (eval echo configure:15753: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:15755: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ac_cv_c_bigendian=yes else @@ -15769,7 +15771,7 @@ 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 <<EOF -#line 15773 "configure" +#line 15775 "configure" #include "confdefs.h" #ifdef __cplusplus extern "C" void exit(int); @@ -15785,7 +15787,7 @@ main () { exit (u.c[sizeof (long) - 1] == 1); } EOF -if { (eval echo configure:15789: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:15791: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null then ac_cv_c_bigendian=no else @@ -15813,7 +15815,7 @@ fi if test "$cross_compiling" != yes; then echo $ac_n "checking size of short""... $ac_c" 1>&6 -echo "configure:15817: checking size of short" >&5 +echo "configure:15819: 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 @@ -15821,7 +15823,7 @@ else ac_cv_sizeof_short=2 else cat > conftest.$ac_ext <<EOF -#line 15825 "configure" +#line 15827 "configure" #include "confdefs.h" #ifdef __cplusplus extern "C" void exit(int); @@ -15835,7 +15837,7 @@ main() exit(0); } EOF -if { (eval echo configure:15839: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:15841: \"$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 @@ -15861,7 +15863,7 @@ EOF fi echo $ac_n "checking size of int""... $ac_c" 1>&6 -echo "configure:15865: checking size of int" >&5 +echo "configure:15867: 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 @@ -15869,7 +15871,7 @@ else ac_cv_sizeof_int=4 else cat > conftest.$ac_ext <<EOF -#line 15873 "configure" +#line 15875 "configure" #include "confdefs.h" #ifdef __cplusplus extern "C" void exit(int); @@ -15883,7 +15885,7 @@ main() exit(0); } EOF -if { (eval echo configure:15887: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:15889: \"$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 @@ -15909,7 +15911,7 @@ EOF fi echo $ac_n "checking size of long""... $ac_c" 1>&6 -echo "configure:15913: checking size of long" >&5 +echo "configure:15915: 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 @@ -15917,7 +15919,7 @@ else ac_cv_sizeof_long=4 else cat > conftest.$ac_ext <<EOF -#line 15921 "configure" +#line 15923 "configure" #include "confdefs.h" #ifdef __cplusplus extern "C" void exit(int); @@ -15931,7 +15933,7 @@ main() exit(0); } EOF -if { (eval echo configure:15935: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:15937: \"$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 @@ -15957,7 +15959,7 @@ EOF fi echo $ac_n "checking size of long long""... $ac_c" 1>&6 -echo "configure:15961: checking size of long long" >&5 +echo "configure:15963: 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 @@ -15965,7 +15967,7 @@ else ac_cv_sizeof_long_long=8 else cat > conftest.$ac_ext <<EOF -#line 15969 "configure" +#line 15971 "configure" #include "confdefs.h" #ifdef __cplusplus extern "C" void exit(int); @@ -15979,7 +15981,7 @@ main() exit(0); } EOF -if { (eval echo configure:15983: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:15985: \"$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 @@ -16010,7 +16012,7 @@ EOF fi echo $ac_n "checking size of void *""... $ac_c" 1>&6 -echo "configure:16014: checking size of void *" >&5 +echo "configure:16016: checking size of void *" >&5 if eval "test \"`echo '$''{'ac_cv_sizeof_void_p'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -16018,7 +16020,7 @@ else ac_cv_sizeof_void_p=4 else cat > conftest.$ac_ext <<EOF -#line 16022 "configure" +#line 16024 "configure" #include "confdefs.h" #ifdef __cplusplus extern "C" void exit(int); @@ -16032,7 +16034,7 @@ main() exit(0); } EOF -if { (eval echo configure:16036: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:16038: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null then ac_cv_sizeof_void_p=`cat conftestval` else @@ -16058,7 +16060,7 @@ EOF fi echo $ac_n "checking size of float""... $ac_c" 1>&6 -echo "configure:16062: checking size of float" >&5 +echo "configure:16064: checking size of float" >&5 if eval "test \"`echo '$''{'ac_cv_sizeof_float'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -16066,7 +16068,7 @@ else ac_cv_sizeof_float=4 else cat > conftest.$ac_ext <<EOF -#line 16070 "configure" +#line 16072 "configure" #include "confdefs.h" #ifdef __cplusplus extern "C" void exit(int); @@ -16080,7 +16082,7 @@ main() exit(0); } EOF -if { (eval echo configure:16084: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:16086: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null then ac_cv_sizeof_float=`cat conftestval` else @@ -16111,7 +16113,7 @@ EOF fi echo $ac_n "checking size of double""... $ac_c" 1>&6 -echo "configure:16115: checking size of double" >&5 +echo "configure:16117: checking size of double" >&5 if eval "test \"`echo '$''{'ac_cv_sizeof_double'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -16119,7 +16121,7 @@ else ac_cv_sizeof_double=8 else cat > conftest.$ac_ext <<EOF -#line 16123 "configure" +#line 16125 "configure" #include "confdefs.h" #ifdef __cplusplus extern "C" void exit(int); @@ -16133,7 +16135,7 @@ main() exit(0); } EOF -if { (eval echo configure:16137: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:16139: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null then ac_cv_sizeof_double=`cat conftestval` else @@ -16164,7 +16166,7 @@ EOF fi echo $ac_n "checking size of long double""... $ac_c" 1>&6 -echo "configure:16168: checking size of long double" >&5 +echo "configure:16170: checking size of long double" >&5 if eval "test \"`echo '$''{'ac_cv_sizeof_long_double'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -16172,7 +16174,7 @@ else ac_cv_sizeof_long_double=16 else cat > conftest.$ac_ext <<EOF -#line 16176 "configure" +#line 16178 "configure" #include "confdefs.h" #ifdef __cplusplus extern "C" void exit(int); @@ -16186,7 +16188,7 @@ main() exit(0); } EOF -if { (eval echo configure:16190: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:16192: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null then ac_cv_sizeof_long_double=`cat conftestval` else @@ -16224,7 +16226,7 @@ EOF fi echo $ac_n "checking size of signed char""... $ac_c" 1>&6 -echo "configure:16228: checking size of signed char" >&5 +echo "configure:16230: checking size of signed char" >&5 if eval "test \"`echo '$''{'ac_cv_sizeof_signed_char'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -16232,7 +16234,7 @@ else ac_cv_sizeof_signed_char=1 else cat > conftest.$ac_ext <<EOF -#line 16236 "configure" +#line 16238 "configure" #include "confdefs.h" #ifdef __cplusplus extern "C" void exit(int); @@ -16246,7 +16248,7 @@ main() exit(0); } EOF -if { (eval echo configure:16250: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:16252: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null then ac_cv_sizeof_signed_char=`cat conftestval` else @@ -16276,13 +16278,13 @@ fi echo $ac_n "checking for istream operator>> for char types""... $ac_c" 1>&6 -echo "configure:16280: checking for istream operator>> for char types" >&5 +echo "configure:16282: checking for istream operator>> for char types" >&5 if eval "test \"`echo '$''{'ace_cv_feature_char_right_shifts'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 16286 "configure" +#line 16288 "configure" #include "confdefs.h" #include <iostream.h> @@ -16299,7 +16301,7 @@ cin >> b; ; return 0; } EOF -if { (eval echo configure:16303: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:16305: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_feature_char_right_shifts=yes @@ -16333,13 +16335,13 @@ EOF echo $ac_n "checking for istream operator>> for char * types""... $ac_c" 1>&6 -echo "configure:16337: checking for istream operator>> for char * types" >&5 +echo "configure:16339: checking for istream operator>> for char * types" >&5 if eval "test \"`echo '$''{'ace_cv_feature_char_ptr_right_shifts'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 16343 "configure" +#line 16345 "configure" #include "confdefs.h" #include <iostream.h> @@ -16356,7 +16358,7 @@ cin >> b; ; return 0; } EOF -if { (eval echo configure:16360: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:16362: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_feature_char_ptr_right_shifts=yes @@ -16389,13 +16391,13 @@ EOF echo $ac_n "checking for working C++ explicit template destructors""... $ac_c" 1>&6 -echo "configure:16393: checking for working C++ explicit template destructors" >&5 +echo "configure:16395: checking for working C++ explicit template destructors" >&5 if eval "test \"`echo '$''{'ace_cv_feature_working_explicit_des'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 16399 "configure" +#line 16401 "configure" #include "confdefs.h" #include <iostream.h> @@ -16442,7 +16444,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:16446: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:16448: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_feature_working_explicit_des=yes @@ -16474,13 +16476,13 @@ EOF echo $ac_n "checking for working C++ conversions""... $ac_c" 1>&6 -echo "configure:16478: checking for working C++ conversions" >&5 +echo "configure:16480: checking for working C++ conversions" >&5 if eval "test \"`echo '$''{'ace_cv_feature_cxx_working_conversions'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 16484 "configure" +#line 16486 "configure" #include "confdefs.h" template <class T> @@ -16504,7 +16506,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:16508: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:16510: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_feature_cxx_working_conversions=yes @@ -16537,13 +16539,13 @@ EOF echo $ac_n "checking for C++ namespace support""... $ac_c" 1>&6 -echo "configure:16541: checking for C++ namespace support" >&5 +echo "configure:16543: checking for C++ namespace support" >&5 if eval "test \"`echo '$''{'ace_cv_feature_cxx_namespaces'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 16547 "configure" +#line 16549 "configure" #include "confdefs.h" namespace ACE @@ -16557,7 +16559,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:16561: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:16563: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_feature_cxx_namespaces=yes @@ -16590,13 +16592,13 @@ EOF echo $ac_n "checking for C++ standard namespace""... $ac_c" 1>&6 -echo "configure:16594: checking for C++ standard namespace" >&5 +echo "configure:16596: checking for C++ standard namespace" >&5 if eval "test \"`echo '$''{'ace_cv_feature_posix_uses_std_namespace'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 16600 "configure" +#line 16602 "configure" #include "confdefs.h" #include <iostream.h> @@ -16607,7 +16609,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:16611: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:16613: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_feature_posix_uses_std_namespace=yes @@ -16639,13 +16641,13 @@ EOF echo $ac_n "checking for C++ \"using\" keyword support""... $ac_c" 1>&6 -echo "configure:16643: checking for C++ \"using\" keyword support" >&5 +echo "configure:16645: checking for C++ \"using\" keyword support" >&5 if eval "test \"`echo '$''{'ace_cv_feature_cxx_using_keyword'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 16649 "configure" +#line 16651 "configure" #include "confdefs.h" #if defined (ACE_USES_STD_NAMESPACE_FOR_STDCPP_LIB) @@ -16676,7 +16678,7 @@ This extraneous text should force an error. ; return 0; } EOF -if { (eval echo configure:16680: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:16682: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_feature_cxx_using_keyword=yes @@ -16708,7 +16710,7 @@ EOF echo $ac_n "checking for new style C++ include file support""... $ac_c" 1>&6 -echo "configure:16712: checking for new style C++ include file support" >&5 +echo "configure:16714: checking for new style C++ include file support" >&5 if eval "test \"`echo '$''{'ace_cv_lib_posix_standard_includes'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -16716,7 +16718,7 @@ else ace_cv_lib_posix_standard_includes=no if test "$ace_cv_feature_posix_uses_std_namespace" = yes; then cat > conftest.$ac_ext <<EOF -#line 16720 "configure" +#line 16722 "configure" #include "confdefs.h" #include <string> @@ -16727,7 +16729,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:16731: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:16733: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_posix_standard_includes=yes else @@ -16737,7 +16739,7 @@ fi rm -f conftest* else cat > conftest.$ac_ext <<EOF -#line 16741 "configure" +#line 16743 "configure" #include "confdefs.h" #include <string> @@ -16748,7 +16750,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:16752: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:16754: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_posix_standard_includes=yes else @@ -16785,13 +16787,13 @@ if test "$ac_cv_header_new" = yes && echo $ac_n "checking for C++ auto_ptr class""... $ac_c" 1>&6 -echo "configure:16789: checking for C++ auto_ptr class" >&5 +echo "configure:16791: checking for C++ auto_ptr class" >&5 if eval "test \"`echo '$''{'ace_cv_lib_auto_ptr_class'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 16795 "configure" +#line 16797 "configure" #include "confdefs.h" #include <memory> @@ -16811,7 +16813,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:16815: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:16817: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_auto_ptr_class=yes @@ -16853,13 +16855,13 @@ fi if test $ace_cv_lib_auto_ptr_class=yes; then echo $ac_n "checking for C++ auto_ptr reset method""... $ac_c" 1>&6 -echo "configure:16857: checking for C++ auto_ptr reset method" >&5 +echo "configure:16859: checking for C++ auto_ptr reset method" >&5 if eval "test \"`echo '$''{'ace_cv_lib_auto_ptr_reset'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 16863 "configure" +#line 16865 "configure" #include "confdefs.h" #include <memory> @@ -16881,7 +16883,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:16885: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:16887: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_auto_ptr_reset=yes @@ -16914,7 +16916,7 @@ EOF fi echo $ac_n "checking for ANSI C++ cast support""... $ac_c" 1>&6 -echo "configure:16918: checking for ANSI C++ cast support" >&5 +echo "configure:16920: checking for ANSI C++ cast support" >&5 if eval "test \"`echo '$''{'ace_cv_lib_posix_standard_casts'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -16926,7 +16928,7 @@ else cat > conftest.$ac_ext <<EOF -#line 16930 "configure" +#line 16932 "configure" #include "confdefs.h" /* No headers */ int main() { @@ -16951,7 +16953,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:16955: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:16957: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_posix_standard_casts=yes @@ -16968,7 +16970,7 @@ else rm -rf conftest* cat > conftest.$ac_ext <<EOF -#line 16972 "configure" +#line 16974 "configure" #include "confdefs.h" /* No headers */ int main() { @@ -16989,7 +16991,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:16993: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:16995: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_posix_standard_casts=yes @@ -17042,13 +17044,13 @@ EOF echo $ac_n "checking for explicit C++ constructor support""... $ac_c" 1>&6 -echo "configure:17046: checking for explicit C++ constructor support" >&5 +echo "configure:17048: checking for explicit C++ constructor support" >&5 if eval "test \"`echo '$''{'ace_cv_feature_explicit_constructor'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 17052 "configure" +#line 17054 "configure" #include "confdefs.h" class Foo @@ -17065,7 +17067,7 @@ Foo bar = 'a'; // error: no implicit char->Foo conversion ; return 0; } EOF -if { (eval echo configure:17069: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:17071: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_feature_explicit_constructor=no @@ -17076,7 +17078,7 @@ else rm -rf conftest* cat > conftest.$ac_ext <<EOF -#line 17080 "configure" +#line 17082 "configure" #include "confdefs.h" class Foo @@ -17093,7 +17095,7 @@ Foo bar (5); ; return 0; } EOF -if { (eval echo configure:17097: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:17099: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_feature_explicit_constructor=yes @@ -17128,13 +17130,13 @@ EOF echo $ac_n "checking for C++ mutable keyword""... $ac_c" 1>&6 -echo "configure:17132: checking for C++ mutable keyword" >&5 +echo "configure:17134: checking for C++ mutable keyword" >&5 if eval "test \"`echo '$''{'ace_cv_feature_cxx_mutable_keyword'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 17138 "configure" +#line 17140 "configure" #include "confdefs.h" class Foo @@ -17153,7 +17155,7 @@ bar.val_ = 3; // mutable declaration should allow this to be modified ; return 0; } EOF -if { (eval echo configure:17157: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:17159: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_feature_cxx_mutable_keyword=yes @@ -17185,13 +17187,13 @@ EOF echo $ac_n "checking for C++ typename keyword""... $ac_c" 1>&6 -echo "configure:17189: checking for C++ typename keyword" >&5 +echo "configure:17191: checking for C++ typename keyword" >&5 if eval "test \"`echo '$''{'ace_cv_feature_posix_typename_keyword'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 17195 "configure" +#line 17197 "configure" #include "confdefs.h" class Bar @@ -17227,7 +17229,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:17231: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:17233: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_feature_posix_typename_keyword=yes @@ -17259,13 +17261,13 @@ EOF echo $ac_n "checking for C++ placement new operator""... $ac_c" 1>&6 -echo "configure:17263: checking for C++ placement new operator" >&5 +echo "configure:17265: checking for C++ placement new operator" >&5 if eval "test \"`echo '$''{'ace_cv_feature_placement_new'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 17269 "configure" +#line 17271 "configure" #include "confdefs.h" #if defined (ACE_HAS_NEW_NO_H) @@ -17287,7 +17289,7 @@ foo *f = new (x) foo; ; return 0; } EOF -if { (eval echo configure:17291: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:17293: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_feature_placement_new=yes @@ -17320,13 +17322,13 @@ EOF echo $ac_n "checking for C++ placement delete operator""... $ac_c" 1>&6 -echo "configure:17324: checking for C++ placement delete operator" >&5 +echo "configure:17326: checking for C++ placement delete operator" >&5 if eval "test \"`echo '$''{'ace_cv_feature_placement_delete'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 17330 "configure" +#line 17332 "configure" #include "confdefs.h" #if defined (ACE_HAS_NEW_NO_H) @@ -17351,7 +17353,7 @@ foo *f = new (x) foo; ; return 0; } EOF -if { (eval echo configure:17355: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:17357: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_feature_placement_delete=yes @@ -17385,13 +17387,13 @@ EOF echo $ac_n "checking if const char * can be rvalue in conditional operator""... $ac_c" 1>&6 -echo "configure:17389: checking if const char * can be rvalue in conditional operator" >&5 +echo "configure:17391: checking if const char * can be rvalue in conditional operator" >&5 if eval "test \"`echo '$''{'ace_cv_feature_conditional_str_cast'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 17395 "configure" +#line 17397 "configure" #include "confdefs.h" int main() { @@ -17403,7 +17405,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:17407: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:17409: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_feature_conditional_str_cast=yes @@ -17436,13 +17438,13 @@ EOF echo $ac_n "checking for explicit template instantiation""... $ac_c" 1>&6 -echo "configure:17440: checking for explicit template instantiation" >&5 +echo "configure:17442: checking for explicit template instantiation" >&5 if eval "test \"`echo '$''{'ace_cv_feature_explicit_template_instantiation'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 17446 "configure" +#line 17448 "configure" #include "confdefs.h" template <class T> @@ -17462,7 +17464,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:17466: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:17468: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* ace_cv_feature_explicit_template_instantiation=yes @@ -17493,13 +17495,13 @@ EOF echo $ac_n "checking for pragma template instantiation""... $ac_c" 1>&6 -echo "configure:17497: checking for pragma template instantiation" >&5 +echo "configure:17499: checking for pragma template instantiation" >&5 if eval "test \"`echo '$''{'ace_cv_feature_pragma_template_instantiation'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 17503 "configure" +#line 17505 "configure" #include "confdefs.h" template <class T> @@ -17518,7 +17520,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:17522: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:17524: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_feature_pragma_template_instantiation=yes @@ -17554,7 +17556,7 @@ EOF echo $ac_n "checking if templates require source""... $ac_c" 1>&6 -echo "configure:17558: checking if templates require source" >&5 +echo "configure:17560: checking if templates require source" >&5 if eval "test \"`echo '$''{'ace_cv_feature_templates_require_source'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -17599,7 +17601,7 @@ EOF ac_link='${CXX-g++} -o conftest${ac_exeext} conftestMain.$ac_ext 1>&5' - if { (eval echo configure:17603: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then + if { (eval echo configure:17605: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* ac_link="$ace_save_ac_link" @@ -17610,7 +17612,7 @@ EOF #include "conftest.$ac_ext" EOF - if { (eval echo configure:17614: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then + if { (eval echo configure:17616: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* ac_link="$ace_save_ac_link" @@ -17650,13 +17652,13 @@ EOF echo $ac_n "checking for template specialization""... $ac_c" 1>&6 -echo "configure:17654: checking for template specialization" >&5 +echo "configure:17656: checking for template specialization" >&5 if eval "test \"`echo '$''{'ace_cv_feature_cxx_template_specialization'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 17660 "configure" +#line 17662 "configure" #include "confdefs.h" template <class T> @@ -17682,7 +17684,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:17686: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:17688: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_feature_cxx_template_specialization=yes @@ -17714,13 +17716,13 @@ EOF echo $ac_n "checking for standard template specialization""... $ac_c" 1>&6 -echo "configure:17718: checking for standard template specialization" >&5 +echo "configure:17720: checking for standard template specialization" >&5 if eval "test \"`echo '$''{'ace_cv_feature_cxx_std_template_specialization'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 17724 "configure" +#line 17726 "configure" #include "confdefs.h" // Some compilers have a hard time with this test since the syntax is @@ -17763,7 +17765,7 @@ Vector<void *> vpv; ; return 0; } EOF -if { (eval echo configure:17767: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:17769: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_feature_cxx_std_template_specialization=yes @@ -17797,13 +17799,13 @@ if test $ace_cv_feature_cxx_std_template_specialization = yes; then echo $ac_n "checking if platform needs standard template method specialization""... $ac_c" 1>&6 -echo "configure:17801: checking if platform needs standard template method specialization" >&5 +echo "configure:17803: checking if platform needs standard template method specialization" >&5 if eval "test \"`echo '$''{'ace_cv_feature_cxx_std_template_method_specialization'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 17807 "configure" +#line 17809 "configure" #include "confdefs.h" // Some compilers have a hard time with this test since the syntax is @@ -17851,7 +17853,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:17855: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:17857: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_feature_cxx_std_template_method_specialization=no @@ -17862,7 +17864,7 @@ else rm -rf conftest* cat > conftest.$ac_ext <<EOF -#line 17866 "configure" +#line 17868 "configure" #include "confdefs.h" // Some compilers have a hard time with this test since the syntax is @@ -17911,7 +17913,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:17915: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:17917: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_feature_cxx_std_template_method_specialization=yes @@ -17946,13 +17948,13 @@ EOF fi echo $ac_n "checking for template typedefs""... $ac_c" 1>&6 -echo "configure:17950: checking for template typedefs" >&5 +echo "configure:17952: checking for template typedefs" >&5 if eval "test \"`echo '$''{'ace_cv_feature_posix_template_typedefs'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 17956 "configure" +#line 17958 "configure" #include "confdefs.h" #if defined (ACE_HAS_TYPENAME_KEYWORD) @@ -17995,7 +17997,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:17999: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:18001: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_feature_posix_template_typedefs=yes @@ -18027,13 +18029,13 @@ EOF echo $ac_n "checking for static data member templates""... $ac_c" 1>&6 -echo "configure:18031: checking for static data member templates" >&5 +echo "configure:18033: checking for static data member templates" >&5 if eval "test \"`echo '$''{'ace_cv_feature_posix_static_data_member_templates'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 18037 "configure" +#line 18039 "configure" #include "confdefs.h" template <class T> @@ -18051,7 +18053,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:18055: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:18057: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_feature_posix_static_data_member_templates=yes @@ -18084,13 +18086,13 @@ EOF echo $ac_n "checking if definition is needed for hidden functions""... $ac_c" 1>&6 -echo "configure:18088: checking if definition is needed for hidden functions" >&5 +echo "configure:18090: checking if definition is needed for hidden functions" >&5 if eval "test \"`echo '$''{'ace_cv_feature_need_func_def'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 18094 "configure" +#line 18096 "configure" #include "confdefs.h" class Foo @@ -18110,7 +18112,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:18114: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:18116: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* ace_cv_feature_need_func_def=no @@ -18121,7 +18123,7 @@ else rm -rf conftest* cat > conftest.$ac_ext <<EOF -#line 18125 "configure" +#line 18127 "configure" #include "confdefs.h" class Foo @@ -18154,7 +18156,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:18158: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:18160: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* ace_cv_feature_need_func_def=yes @@ -18192,13 +18194,13 @@ EOF if test "$ace_user_enable_exceptions" = yes; then echo $ac_n "checking for C++ exceptions""... $ac_c" 1>&6 -echo "configure:18196: checking for C++ exceptions" >&5 +echo "configure:18198: checking for C++ exceptions" >&5 if eval "test \"`echo '$''{'ace_cv_feature_posix_exceptions'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 18202 "configure" +#line 18204 "configure" #include "confdefs.h" int main() { @@ -18216,7 +18218,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:18220: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:18222: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_feature_posix_exceptions=yes @@ -18301,19 +18303,19 @@ rm -f confcache # 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:18305: checking for working alloca.h" >&5 +echo "configure:18307: 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 <<EOF -#line 18310 "configure" +#line 18312 "configure" #include "confdefs.h" #include <alloca.h> int main() { char *p = alloca(2 * sizeof(int)); ; return 0; } EOF -if { (eval echo configure:18317: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:18319: \"$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 @@ -18334,12 +18336,12 @@ EOF fi echo $ac_n "checking for alloca""... $ac_c" 1>&6 -echo "configure:18338: checking for alloca" >&5 +echo "configure:18340: 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 <<EOF -#line 18343 "configure" +#line 18345 "configure" #include "confdefs.h" #ifdef __GNUC__ @@ -18367,7 +18369,7 @@ int main() { char *p = (char *) alloca(1); ; return 0; } EOF -if { (eval echo configure:18371: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:18373: \"$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 @@ -18399,12 +18401,12 @@ EOF echo $ac_n "checking whether alloca needs Cray hooks""... $ac_c" 1>&6 -echo "configure:18403: checking whether alloca needs Cray hooks" >&5 +echo "configure:18405: 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 <<EOF -#line 18408 "configure" +#line 18410 "configure" #include "confdefs.h" #if defined(CRAY) && ! defined(CRAY2) webecray @@ -18429,12 +18431,12 @@ echo "$ac_t""$ac_cv_os_cray" 1>&6 if test $ac_cv_os_cray = yes; then for ac_func in _getb67 GETB67 getb67; do echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 -echo "configure:18433: checking for $ac_func" >&5 +echo "configure:18435: 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 <<EOF -#line 18438 "configure" +#line 18440 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func(); below. */ @@ -18460,7 +18462,7 @@ $ac_func(); ; return 0; } EOF -if { (eval echo configure:18464: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:18466: \"$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 @@ -18487,7 +18489,7 @@ done fi echo $ac_n "checking stack direction for C alloca""... $ac_c" 1>&6 -echo "configure:18491: checking stack direction for C alloca" >&5 +echo "configure:18493: 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 @@ -18495,7 +18497,7 @@ else ac_cv_c_stack_direction=0 else cat > conftest.$ac_ext <<EOF -#line 18499 "configure" +#line 18501 "configure" #include "confdefs.h" #ifdef __cplusplus extern "C" void exit(int); @@ -18517,7 +18519,7 @@ main () exit (find_stack_direction() < 0); } EOF -if { (eval echo configure:18521: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:18523: \"$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 @@ -18553,7 +18555,7 @@ fi echo $ac_n "checking whether closedir returns void""... $ac_c" 1>&6 -echo "configure:18557: checking whether closedir returns void" >&5 +echo "configure:18559: checking whether closedir returns void" >&5 if eval "test \"`echo '$''{'ac_cv_func_closedir_void'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -18561,7 +18563,7 @@ else ac_cv_func_closedir_void=yes else cat > conftest.$ac_ext <<EOF -#line 18565 "configure" +#line 18567 "configure" #include "confdefs.h" #ifdef __cplusplus extern "C" void exit(int); @@ -18570,7 +18572,7 @@ extern "C" void exit(int); #include <$ac_header_dirent> int closedir(); main() { exit(closedir(opendir(".")) != 0); } EOF -if { (eval echo configure:18574: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:18576: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null then ac_cv_func_closedir_void=no else @@ -18594,12 +18596,12 @@ fi echo $ac_n "checking for getpwnam""... $ac_c" 1>&6 -echo "configure:18598: checking for getpwnam" >&5 +echo "configure:18600: checking for getpwnam" >&5 if eval "test \"`echo '$''{'ac_cv_func_getpwnam'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 18603 "configure" +#line 18605 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char getpwnam(); below. */ @@ -18625,7 +18627,7 @@ getpwnam(); ; return 0; } EOF -if { (eval echo configure:18629: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:18631: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_getpwnam=yes" else @@ -18644,12 +18646,12 @@ else echo "$ac_t""no" 1>&6 fi echo $ac_n "checking for setpwent""... $ac_c" 1>&6 -echo "configure:18648: checking for setpwent" >&5 +echo "configure:18650: checking for setpwent" >&5 if eval "test \"`echo '$''{'ac_cv_func_setpwent'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 18653 "configure" +#line 18655 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char setpwent(); below. */ @@ -18675,7 +18677,7 @@ setpwent(); ; return 0; } EOF -if { (eval echo configure:18679: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:18681: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_setpwent=yes" else @@ -18694,12 +18696,12 @@ else echo "$ac_t""no" 1>&6 fi echo $ac_n "checking for endpwent""... $ac_c" 1>&6 -echo "configure:18698: checking for endpwent" >&5 +echo "configure:18700: checking for endpwent" >&5 if eval "test \"`echo '$''{'ac_cv_func_endpwent'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 18703 "configure" +#line 18705 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char endpwent(); below. */ @@ -18725,7 +18727,7 @@ endpwent(); ; return 0; } EOF -if { (eval echo configure:18729: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:18731: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_endpwent=yes" else @@ -18744,12 +18746,12 @@ else echo "$ac_t""no" 1>&6 fi echo $ac_n "checking for getpwent""... $ac_c" 1>&6 -echo "configure:18748: checking for getpwent" >&5 +echo "configure:18750: checking for getpwent" >&5 if eval "test \"`echo '$''{'ac_cv_func_getpwent'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 18753 "configure" +#line 18755 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char getpwent(); below. */ @@ -18775,7 +18777,7 @@ getpwent(); ; return 0; } EOF -if { (eval echo configure:18779: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:18781: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_getpwent=yes" else @@ -18805,12 +18807,12 @@ EOF fi echo $ac_n "checking for strftime""... $ac_c" 1>&6 -echo "configure:18809: checking for strftime" >&5 +echo "configure:18811: checking for strftime" >&5 if eval "test \"`echo '$''{'ac_cv_func_strftime'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 18814 "configure" +#line 18816 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char strftime(); below. */ @@ -18836,7 +18838,7 @@ strftime(); ; return 0; } EOF -if { (eval echo configure:18840: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:18842: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_strftime=yes" else @@ -18858,7 +18860,7 @@ else echo "$ac_t""no" 1>&6 # strftime is in -lintl on SCO UNIX. echo $ac_n "checking for strftime in -lintl""... $ac_c" 1>&6 -echo "configure:18862: checking for strftime in -lintl" >&5 +echo "configure:18864: checking for strftime in -lintl" >&5 ac_lib_var=`echo intl'_'strftime | sed 'y%./+-%__p_%'` if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 @@ -18866,7 +18868,7 @@ else ac_save_LIBS="$LIBS" LIBS="-lintl $LIBS" cat > conftest.$ac_ext <<EOF -#line 18870 "configure" +#line 18872 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ #ifdef __cplusplus @@ -18880,7 +18882,7 @@ int main() { strftime() ; return 0; } EOF -if { (eval echo configure:18884: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:18886: \"$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 @@ -18910,12 +18912,12 @@ fi case "$target" in *win32*) echo $ac_n "checking for CancelIO""... $ac_c" 1>&6 -echo "configure:18914: checking for CancelIO" >&5 +echo "configure:18916: checking for CancelIO" >&5 if eval "test \"`echo '$''{'ac_cv_func_CancelIO'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 18919 "configure" +#line 18921 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char CancelIO(); below. */ @@ -18941,7 +18943,7 @@ CancelIO(); ; return 0; } EOF -if { (eval echo configure:18945: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:18947: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_CancelIO=yes" else @@ -18965,12 +18967,12 @@ fi echo $ac_n "checking for SignalObjectAndWait""... $ac_c" 1>&6 -echo "configure:18969: checking for SignalObjectAndWait" >&5 +echo "configure:18971: checking for SignalObjectAndWait" >&5 if eval "test \"`echo '$''{'ac_cv_func_SignalObjectAndWait'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 18974 "configure" +#line 18976 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char SignalObjectAndWait(); below. */ @@ -18996,7 +18998,7 @@ SignalObjectAndWait(); ; return 0; } EOF -if { (eval echo configure:19000: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:19002: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_SignalObjectAndWait=yes" else @@ -19020,12 +19022,12 @@ fi echo $ac_n "checking for TryEnterCriticalSection""... $ac_c" 1>&6 -echo "configure:19024: checking for TryEnterCriticalSection" >&5 +echo "configure:19026: checking for TryEnterCriticalSection" >&5 if eval "test \"`echo '$''{'ac_cv_func_TryEnterCriticalSection'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 19029 "configure" +#line 19031 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char TryEnterCriticalSection(); below. */ @@ -19051,7 +19053,7 @@ TryEnterCriticalSection(); ; return 0; } EOF -if { (eval echo configure:19055: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:19057: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_TryEnterCriticalSection=yes" else @@ -19079,12 +19081,12 @@ fi esac echo $ac_n "checking for access""... $ac_c" 1>&6 -echo "configure:19083: checking for access" >&5 +echo "configure:19085: checking for access" >&5 if eval "test \"`echo '$''{'ac_cv_func_access'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 19088 "configure" +#line 19090 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char access(); below. */ @@ -19110,7 +19112,7 @@ access(); ; return 0; } EOF -if { (eval echo configure:19114: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:19116: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_access=yes" else @@ -19135,12 +19137,12 @@ fi echo $ac_n "checking for bsearch""... $ac_c" 1>&6 -echo "configure:19139: checking for bsearch" >&5 +echo "configure:19141: checking for bsearch" >&5 if eval "test \"`echo '$''{'ac_cv_func_bsearch'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 19144 "configure" +#line 19146 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char bsearch(); below. */ @@ -19166,7 +19168,7 @@ bsearch(); ; return 0; } EOF -if { (eval echo configure:19170: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:19172: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_bsearch=yes" else @@ -19191,12 +19193,12 @@ fi echo $ac_n "checking for qsort""... $ac_c" 1>&6 -echo "configure:19195: checking for qsort" >&5 +echo "configure:19197: checking for qsort" >&5 if eval "test \"`echo '$''{'ac_cv_func_qsort'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 19200 "configure" +#line 19202 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char qsort(); below. */ @@ -19222,7 +19224,7 @@ qsort(); ; return 0; } EOF -if { (eval echo configure:19226: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:19228: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_qsort=yes" else @@ -19249,12 +19251,12 @@ fi for ac_func in execv execvp execve do echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 -echo "configure:19253: checking for $ac_func" >&5 +echo "configure:19255: 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 <<EOF -#line 19258 "configure" +#line 19260 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func(); below. */ @@ -19280,7 +19282,7 @@ $ac_func(); ; return 0; } EOF -if { (eval echo configure:19284: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:19286: \"$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 @@ -19310,12 +19312,12 @@ done echo $ac_n "checking for fcntl""... $ac_c" 1>&6 -echo "configure:19314: checking for fcntl" >&5 +echo "configure:19316: checking for fcntl" >&5 if eval "test \"`echo '$''{'ac_cv_func_fcntl'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 19319 "configure" +#line 19321 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char fcntl(); below. */ @@ -19341,7 +19343,7 @@ fcntl(); ; return 0; } EOF -if { (eval echo configure:19345: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:19347: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_fcntl=yes" else @@ -19366,12 +19368,12 @@ fi echo $ac_n "checking for fsync""... $ac_c" 1>&6 -echo "configure:19370: checking for fsync" >&5 +echo "configure:19372: checking for fsync" >&5 if eval "test \"`echo '$''{'ac_cv_func_fsync'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 19375 "configure" +#line 19377 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char fsync(); below. */ @@ -19397,7 +19399,7 @@ fsync(); ; return 0; } EOF -if { (eval echo configure:19401: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:19403: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_fsync=yes" else @@ -19422,12 +19424,12 @@ fi echo $ac_n "checking for getmsg""... $ac_c" 1>&6 -echo "configure:19426: checking for getmsg" >&5 +echo "configure:19428: checking for getmsg" >&5 if eval "test \"`echo '$''{'ac_cv_func_getmsg'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 19431 "configure" +#line 19433 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char getmsg(); below. */ @@ -19453,7 +19455,7 @@ getmsg(); ; return 0; } EOF -if { (eval echo configure:19457: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:19459: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_getmsg=yes" else @@ -19477,12 +19479,12 @@ fi echo $ac_n "checking for gethostbyaddr""... $ac_c" 1>&6 -echo "configure:19481: checking for gethostbyaddr" >&5 +echo "configure:19483: 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 <<EOF -#line 19486 "configure" +#line 19488 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char gethostbyaddr(); below. */ @@ -19508,7 +19510,7 @@ gethostbyaddr(); ; return 0; } EOF -if { (eval echo configure:19512: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:19514: \"$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 @@ -19528,12 +19530,12 @@ else fi echo $ac_n "checking for difftime""... $ac_c" 1>&6 -echo "configure:19532: checking for difftime" >&5 +echo "configure:19534: checking for difftime" >&5 if eval "test \"`echo '$''{'ac_cv_func_difftime'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 19537 "configure" +#line 19539 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char difftime(); below. */ @@ -19559,7 +19561,7 @@ difftime(); ; return 0; } EOF -if { (eval echo configure:19563: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:19565: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_difftime=yes" else @@ -19584,12 +19586,12 @@ fi echo $ac_n "checking for lseek64""... $ac_c" 1>&6 -echo "configure:19588: checking for lseek64" >&5 +echo "configure:19590: checking for lseek64" >&5 if eval "test \"`echo '$''{'ac_cv_func_lseek64'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 19593 "configure" +#line 19595 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char lseek64(); below. */ @@ -19615,7 +19617,7 @@ lseek64(); ; return 0; } EOF -if { (eval echo configure:19619: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:19621: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_lseek64=yes" else @@ -19636,7 +19638,7 @@ EOF echo $ac_n "checking for lseek64 prototype""... $ac_c" 1>&6 -echo "configure:19640: checking for lseek64 prototype" >&5 +echo "configure:19642: checking for lseek64 prototype" >&5 if eval "test \"`echo '$''{'ace_cv_lib_has_lseek64_prototype'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -19645,7 +19647,7 @@ else ace_no_largefile64="-U_LARGEFILE64_SOURCE" CPPFLAGS="$CPPFLAGS $ace_no_largefile64" cat > conftest.$ac_ext <<EOF -#line 19649 "configure" +#line 19651 "configure" #include "confdefs.h" #include <unistd.h> EOF @@ -19685,12 +19687,12 @@ else echo "$ac_t""no" 1>&6 echo $ac_n "checking for llseek""... $ac_c" 1>&6 -echo "configure:19689: checking for llseek" >&5 +echo "configure:19691: checking for llseek" >&5 if eval "test \"`echo '$''{'ac_cv_func_llseek'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 19694 "configure" +#line 19696 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char llseek(); below. */ @@ -19716,7 +19718,7 @@ llseek(); ; return 0; } EOF -if { (eval echo configure:19720: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:19722: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_llseek=yes" else @@ -19737,7 +19739,7 @@ EOF echo $ac_n "checking for llseek prototype""... $ac_c" 1>&6 -echo "configure:19741: checking for llseek prototype" >&5 +echo "configure:19743: checking for llseek prototype" >&5 if eval "test \"`echo '$''{'ace_cv_lib_has_llseek_prototype'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -19746,7 +19748,7 @@ else ace_no_largefile64="-U_LARGEFILE64_SOURCE" CPPFLAGS="$CPPFLAGS $ace_no_largefile64" cat > conftest.$ac_ext <<EOF -#line 19750 "configure" +#line 19752 "configure" #include "confdefs.h" #include <unistd.h> EOF @@ -19791,12 +19793,12 @@ fi echo $ac_n "checking for bind""... $ac_c" 1>&6 -echo "configure:19795: checking for bind" >&5 +echo "configure:19797: checking for bind" >&5 if eval "test \"`echo '$''{'ac_cv_func_bind'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 19800 "configure" +#line 19802 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char bind(); below. */ @@ -19822,7 +19824,7 @@ bind(); ; return 0; } EOF -if { (eval echo configure:19826: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:19828: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_bind=yes" else @@ -19839,7 +19841,7 @@ if eval "test \"`echo '$ac_cv_func_'bind`\" = yes"; then echo $ac_n "checking if bind() will select the port if it is zero""... $ac_c" 1>&6 -echo "configure:19843: checking if bind() will select the port if it is zero" >&5 +echo "configure:19845: checking if bind() will select the port if it is zero" >&5 if eval "test \"`echo '$''{'ace_cv_have_wildcard_bind'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -19850,7 +19852,7 @@ else else cat > conftest.$ac_ext <<EOF -#line 19854 "configure" +#line 19856 "configure" #include "confdefs.h" #ifdef __cplusplus extern "C" void exit(int); @@ -19880,7 +19882,7 @@ extern "C" void exit(int); } EOF -if { (eval echo configure:19884: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:19886: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null then ace_cv_have_wildcard_bind=yes @@ -19919,12 +19921,12 @@ fi echo $ac_n "checking for poll""... $ac_c" 1>&6 -echo "configure:19923: checking for poll" >&5 +echo "configure:19925: checking for poll" >&5 if eval "test \"`echo '$''{'ac_cv_func_poll'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 19928 "configure" +#line 19930 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char poll(); below. */ @@ -19950,7 +19952,7 @@ poll(); ; return 0; } EOF -if { (eval echo configure:19954: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:19956: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_poll=yes" else @@ -19967,7 +19969,7 @@ if eval "test \"`echo '$ac_cv_func_'poll`\" = yes"; then echo $ac_n "checking if poll is broken""... $ac_c" 1>&6 -echo "configure:19971: checking if poll is broken" >&5 +echo "configure:19973: checking if poll is broken" >&5 if eval "test \"`echo '$''{'ace_cv_poll_is_broken'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -19978,7 +19980,7 @@ else else cat > conftest.$ac_ext <<EOF -#line 19982 "configure" +#line 19984 "configure" #include "confdefs.h" #ifdef __cplusplus extern "C" void exit(int); @@ -20017,7 +20019,7 @@ extern "C" void exit(int); } EOF -if { (eval echo configure:20021: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:20023: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null then ace_cv_poll_is_broken=no @@ -20055,12 +20057,12 @@ fi echo $ac_n "checking for gethrtime""... $ac_c" 1>&6 -echo "configure:20059: checking for gethrtime" >&5 +echo "configure:20061: checking for gethrtime" >&5 if eval "test \"`echo '$''{'ac_cv_func_gethrtime'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 20064 "configure" +#line 20066 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char gethrtime(); below. */ @@ -20086,7 +20088,7 @@ gethrtime(); ; return 0; } EOF -if { (eval echo configure:20090: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:20092: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_gethrtime=yes" else @@ -20105,13 +20107,13 @@ if eval "test \"`echo '$ac_cv_func_'gethrtime`\" = yes"; then echo $ac_n "checking for hrtime_t in sys/time.h""... $ac_c" 1>&6 -echo "configure:20109: checking for hrtime_t in sys/time.h" >&5 +echo "configure:20111: checking for hrtime_t in sys/time.h" >&5 if eval "test \"`echo '$''{'ace_cv_type_hrtime_t'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 20115 "configure" +#line 20117 "configure" #include "confdefs.h" #include <sys/time.h> @@ -20122,7 +20124,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:20126: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:20128: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_type_hrtime_t=yes @@ -20159,12 +20161,12 @@ fi echo $ac_n "checking for pread""... $ac_c" 1>&6 -echo "configure:20163: checking for pread" >&5 +echo "configure:20165: checking for pread" >&5 if eval "test \"`echo '$''{'ac_cv_func_pread'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 20168 "configure" +#line 20170 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char pread(); below. */ @@ -20190,7 +20192,7 @@ pread(); ; return 0; } EOF -if { (eval echo configure:20194: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:20196: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_pread=yes" else @@ -20205,12 +20207,12 @@ fi if eval "test \"`echo '$ac_cv_func_'pread`\" = yes"; then echo "$ac_t""yes" 1>&6 echo $ac_n "checking for pwrite""... $ac_c" 1>&6 -echo "configure:20209: checking for pwrite" >&5 +echo "configure:20211: checking for pwrite" >&5 if eval "test \"`echo '$''{'ac_cv_func_pwrite'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 20214 "configure" +#line 20216 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char pwrite(); below. */ @@ -20236,7 +20238,7 @@ pwrite(); ; return 0; } EOF -if { (eval echo configure:20240: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:20242: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_pwrite=yes" else @@ -20257,7 +20259,7 @@ EOF echo $ac_n "checking for pread prototype""... $ac_c" 1>&6 -echo "configure:20261: checking for pread prototype" >&5 +echo "configure:20263: checking for pread prototype" >&5 if eval "test \"`echo '$''{'ace_cv_lib_has_pread_prototype'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -20266,7 +20268,7 @@ else ace_no_xopen="-U_XOPEN_SOURCE" CPPFLAGS="$CPPFLAGS $ace_no_xopen" cat > conftest.$ac_ext <<EOF -#line 20270 "configure" +#line 20272 "configure" #include "confdefs.h" #include <unistd.h> EOF @@ -20312,12 +20314,12 @@ fi echo $ac_n "checking for readv""... $ac_c" 1>&6 -echo "configure:20316: checking for readv" >&5 +echo "configure:20318: checking for readv" >&5 if eval "test \"`echo '$''{'ac_cv_func_readv'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 20321 "configure" +#line 20323 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char readv(); below. */ @@ -20343,7 +20345,7 @@ readv(); ; return 0; } EOF -if { (eval echo configure:20347: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:20349: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_readv=yes" else @@ -20367,12 +20369,12 @@ EOF fi echo $ac_n "checking for writev""... $ac_c" 1>&6 -echo "configure:20371: checking for writev" >&5 +echo "configure:20373: checking for writev" >&5 if eval "test \"`echo '$''{'ac_cv_func_writev'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 20376 "configure" +#line 20378 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char writev(); below. */ @@ -20398,7 +20400,7 @@ writev(); ; return 0; } EOF -if { (eval echo configure:20402: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:20404: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_writev=yes" else @@ -20422,12 +20424,12 @@ EOF fi echo $ac_n "checking for set_t_errno""... $ac_c" 1>&6 -echo "configure:20426: checking for set_t_errno" >&5 +echo "configure:20428: checking for set_t_errno" >&5 if eval "test \"`echo '$''{'ac_cv_func_set_t_errno'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 20431 "configure" +#line 20433 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char set_t_errno(); below. */ @@ -20453,7 +20455,7 @@ set_t_errno(); ; return 0; } EOF -if { (eval echo configure:20457: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:20459: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_set_t_errno=yes" else @@ -20476,12 +20478,12 @@ else fi echo $ac_n "checking for sigsuspend""... $ac_c" 1>&6 -echo "configure:20480: checking for sigsuspend" >&5 +echo "configure:20482: checking for sigsuspend" >&5 if eval "test \"`echo '$''{'ac_cv_func_sigsuspend'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 20485 "configure" +#line 20487 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char sigsuspend(); below. */ @@ -20507,7 +20509,7 @@ sigsuspend(); ; return 0; } EOF -if { (eval echo configure:20511: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:20513: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_sigsuspend=yes" else @@ -20531,12 +20533,12 @@ fi echo $ac_n "checking for sigtimedwait""... $ac_c" 1>&6 -echo "configure:20535: checking for sigtimedwait" >&5 +echo "configure:20537: checking for sigtimedwait" >&5 if eval "test \"`echo '$''{'ac_cv_func_sigtimedwait'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 20540 "configure" +#line 20542 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char sigtimedwait(); below. */ @@ -20562,7 +20564,7 @@ sigtimedwait(); ; return 0; } EOF -if { (eval echo configure:20566: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:20568: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_sigtimedwait=yes" else @@ -20586,12 +20588,12 @@ fi echo $ac_n "checking for socketpair""... $ac_c" 1>&6 -echo "configure:20590: checking for socketpair" >&5 +echo "configure:20592: 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 <<EOF -#line 20595 "configure" +#line 20597 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char socketpair(); below. */ @@ -20617,7 +20619,7 @@ socketpair(); ; return 0; } EOF -if { (eval echo configure:20621: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:20623: \"$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 @@ -20642,12 +20644,12 @@ fi echo $ac_n "checking for strcasecmp""... $ac_c" 1>&6 -echo "configure:20646: checking for strcasecmp" >&5 +echo "configure:20648: checking for strcasecmp" >&5 if eval "test \"`echo '$''{'ac_cv_func_strcasecmp'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 20651 "configure" +#line 20653 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char strcasecmp(); below. */ @@ -20673,7 +20675,7 @@ strcasecmp(); ; return 0; } EOF -if { (eval echo configure:20677: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:20679: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_strcasecmp=yes" else @@ -20698,12 +20700,12 @@ fi echo $ac_n "checking for strdup""... $ac_c" 1>&6 -echo "configure:20702: checking for strdup" >&5 +echo "configure:20704: checking for strdup" >&5 if eval "test \"`echo '$''{'ac_cv_func_strdup'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 20707 "configure" +#line 20709 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char strdup(); below. */ @@ -20729,7 +20731,7 @@ strdup(); ; return 0; } EOF -if { (eval echo configure:20733: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:20735: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_strdup=yes" else @@ -20754,12 +20756,12 @@ fi echo $ac_n "checking for strrchr""... $ac_c" 1>&6 -echo "configure:20758: checking for strrchr" >&5 +echo "configure:20760: checking for strrchr" >&5 if eval "test \"`echo '$''{'ac_cv_func_strrchr'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 20763 "configure" +#line 20765 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char strrchr(); below. */ @@ -20785,7 +20787,7 @@ strrchr(); ; return 0; } EOF -if { (eval echo configure:20789: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:20791: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_strrchr=yes" else @@ -20810,12 +20812,12 @@ fi echo $ac_n "checking for strptime""... $ac_c" 1>&6 -echo "configure:20814: checking for strptime" >&5 +echo "configure:20816: checking for strptime" >&5 if eval "test \"`echo '$''{'ac_cv_func_strptime'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 20819 "configure" +#line 20821 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char strptime(); below. */ @@ -20841,7 +20843,7 @@ strptime(); ; return 0; } EOF -if { (eval echo configure:20845: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:20847: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_strptime=yes" else @@ -20862,7 +20864,7 @@ EOF echo $ac_n "checking for strptime prototype""... $ac_c" 1>&6 -echo "configure:20866: checking for strptime prototype" >&5 +echo "configure:20868: checking for strptime prototype" >&5 if eval "test \"`echo '$''{'ace_cv_lib_has_strptime_prototype'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -20871,7 +20873,7 @@ else ace_no_xopen="-U_XOPEN_SOURCE" CPPFLAGS="$CPPFLAGS $ace_no_xopen" cat > conftest.$ac_ext <<EOF -#line 20875 "configure" +#line 20877 "configure" #include "confdefs.h" #include <time.h> EOF @@ -20919,12 +20921,12 @@ fi echo $ac_n "checking for memchr""... $ac_c" 1>&6 -echo "configure:20923: checking for memchr" >&5 +echo "configure:20925: checking for memchr" >&5 if eval "test \"`echo '$''{'ac_cv_func_memchr'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 20928 "configure" +#line 20930 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char memchr(); below. */ @@ -20950,7 +20952,7 @@ memchr(); ; return 0; } EOF -if { (eval echo configure:20954: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:20956: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_memchr=yes" else @@ -20974,12 +20976,12 @@ fi echo $ac_n "checking for syscall""... $ac_c" 1>&6 -echo "configure:20978: checking for syscall" >&5 +echo "configure:20980: checking for syscall" >&5 if eval "test \"`echo '$''{'ac_cv_func_syscall'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 20983 "configure" +#line 20985 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char syscall(); below. */ @@ -21005,7 +21007,7 @@ syscall(); ; return 0; } EOF -if { (eval echo configure:21009: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:21011: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_syscall=yes" else @@ -21030,12 +21032,12 @@ fi echo $ac_n "checking for ualarm""... $ac_c" 1>&6 -echo "configure:21034: checking for ualarm" >&5 +echo "configure:21036: checking for ualarm" >&5 if eval "test \"`echo '$''{'ac_cv_func_ualarm'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 21039 "configure" +#line 21041 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char ualarm(); below. */ @@ -21061,7 +21063,7 @@ ualarm(); ; return 0; } EOF -if { (eval echo configure:21065: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:21067: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_ualarm=yes" else @@ -21085,12 +21087,12 @@ fi echo $ac_n "checking for alarm""... $ac_c" 1>&6 -echo "configure:21089: checking for alarm" >&5 +echo "configure:21091: checking for alarm" >&5 if eval "test \"`echo '$''{'ac_cv_func_alarm'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 21094 "configure" +#line 21096 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char alarm(); below. */ @@ -21116,7 +21118,7 @@ alarm(); ; return 0; } EOF -if { (eval echo configure:21120: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:21122: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_alarm=yes" else @@ -21135,12 +21137,12 @@ else echo "$ac_t""no" 1>&6 fi echo $ac_n "checking for signal""... $ac_c" 1>&6 -echo "configure:21139: checking for signal" >&5 +echo "configure:21141: checking for signal" >&5 if eval "test \"`echo '$''{'ac_cv_func_signal'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 21144 "configure" +#line 21146 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char signal(); below. */ @@ -21166,7 +21168,7 @@ signal(); ; return 0; } EOF -if { (eval echo configure:21170: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:21172: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_signal=yes" else @@ -21194,12 +21196,12 @@ EOF fi echo $ac_n "checking for fork""... $ac_c" 1>&6 -echo "configure:21198: checking for fork" >&5 +echo "configure:21200: checking for fork" >&5 if eval "test \"`echo '$''{'ac_cv_func_fork'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 21203 "configure" +#line 21205 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char fork(); below. */ @@ -21225,7 +21227,7 @@ fork(); ; return 0; } EOF -if { (eval echo configure:21229: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:21231: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_fork=yes" else @@ -21250,12 +21252,12 @@ fi echo $ac_n "checking for getrlimit""... $ac_c" 1>&6 -echo "configure:21254: checking for getrlimit" >&5 +echo "configure:21256: 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 <<EOF -#line 21259 "configure" +#line 21261 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char getrlimit(); below. */ @@ -21281,7 +21283,7 @@ getrlimit(); ; return 0; } EOF -if { (eval echo configure:21285: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:21287: \"$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 @@ -21297,12 +21299,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:21301: checking for setrlimit" >&5 +echo "configure:21303: 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 <<EOF -#line 21306 "configure" +#line 21308 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char setrlimit(); below. */ @@ -21328,7 +21330,7 @@ setrlimit(); ; return 0; } EOF -if { (eval echo configure:21332: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:21334: \"$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 @@ -21364,12 +21366,12 @@ fi echo $ac_n "checking for sysinfo""... $ac_c" 1>&6 -echo "configure:21368: checking for sysinfo" >&5 +echo "configure:21370: checking for sysinfo" >&5 if eval "test \"`echo '$''{'ac_cv_func_sysinfo'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 21373 "configure" +#line 21375 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char sysinfo(); below. */ @@ -21395,7 +21397,7 @@ sysinfo(); ; return 0; } EOF -if { (eval echo configure:21399: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:21401: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_sysinfo=yes" else @@ -21423,12 +21425,12 @@ fi echo $ac_n "checking for strerror""... $ac_c" 1>&6 -echo "configure:21427: checking for strerror" >&5 +echo "configure:21429: checking for strerror" >&5 if eval "test \"`echo '$''{'ac_cv_func_strerror'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 21432 "configure" +#line 21434 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char strerror(); below. */ @@ -21454,7 +21456,7 @@ strerror(); ; return 0; } EOF -if { (eval echo configure:21458: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:21460: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_strerror=yes" else @@ -21478,12 +21480,12 @@ fi echo $ac_n "checking for lstat""... $ac_c" 1>&6 -echo "configure:21482: checking for lstat" >&5 +echo "configure:21484: checking for lstat" >&5 if eval "test \"`echo '$''{'ac_cv_func_lstat'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 21487 "configure" +#line 21489 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char lstat(); below. */ @@ -21509,7 +21511,7 @@ lstat(); ; return 0; } EOF -if { (eval echo configure:21513: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:21515: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_lstat=yes" else @@ -21534,12 +21536,12 @@ fi echo $ac_n "checking for readlink""... $ac_c" 1>&6 -echo "configure:21538: checking for readlink" >&5 +echo "configure:21540: checking for readlink" >&5 if eval "test \"`echo '$''{'ac_cv_func_readlink'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 21543 "configure" +#line 21545 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char readlink(); below. */ @@ -21565,7 +21567,7 @@ readlink(); ; return 0; } EOF -if { (eval echo configure:21569: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:21571: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_readlink=yes" else @@ -21590,12 +21592,12 @@ fi echo $ac_n "checking for rename""... $ac_c" 1>&6 -echo "configure:21594: checking for rename" >&5 +echo "configure:21596: checking for rename" >&5 if eval "test \"`echo '$''{'ac_cv_func_rename'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 21599 "configure" +#line 21601 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char rename(); below. */ @@ -21621,7 +21623,7 @@ rename(); ; return 0; } EOF -if { (eval echo configure:21625: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:21627: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_rename=yes" else @@ -21646,12 +21648,12 @@ fi echo $ac_n "checking for recvmsg""... $ac_c" 1>&6 -echo "configure:21650: checking for recvmsg" >&5 +echo "configure:21652: checking for recvmsg" >&5 if eval "test \"`echo '$''{'ac_cv_func_recvmsg'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 21655 "configure" +#line 21657 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char recvmsg(); below. */ @@ -21677,7 +21679,7 @@ recvmsg(); ; return 0; } EOF -if { (eval echo configure:21681: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:21683: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_recvmsg=yes" else @@ -21702,12 +21704,12 @@ fi echo $ac_n "checking for sendmsg""... $ac_c" 1>&6 -echo "configure:21706: checking for sendmsg" >&5 +echo "configure:21708: checking for sendmsg" >&5 if eval "test \"`echo '$''{'ac_cv_func_sendmsg'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 21711 "configure" +#line 21713 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char sendmsg(); below. */ @@ -21733,7 +21735,7 @@ sendmsg(); ; return 0; } EOF -if { (eval echo configure:21737: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:21739: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_sendmsg=yes" else @@ -21759,12 +21761,12 @@ fi if test "$ace_has_tli" = yes; then echo $ac_n "checking for t_getname""... $ac_c" 1>&6 -echo "configure:21763: checking for t_getname" >&5 +echo "configure:21765: checking for t_getname" >&5 if eval "test \"`echo '$''{'ac_cv_func_t_getname'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 21768 "configure" +#line 21770 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char t_getname(); below. */ @@ -21790,7 +21792,7 @@ t_getname(); ; return 0; } EOF -if { (eval echo configure:21794: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:21796: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_t_getname=yes" else @@ -21815,12 +21817,12 @@ fi fi echo $ac_n "checking for getrusage""... $ac_c" 1>&6 -echo "configure:21819: checking for getrusage" >&5 +echo "configure:21821: checking for getrusage" >&5 if eval "test \"`echo '$''{'ac_cv_func_getrusage'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 21824 "configure" +#line 21826 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char getrusage(); below. */ @@ -21846,7 +21848,7 @@ getrusage(); ; return 0; } EOF -if { (eval echo configure:21850: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:21852: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_getrusage=yes" else @@ -21870,12 +21872,12 @@ fi echo $ac_n "checking for getpgid""... $ac_c" 1>&6 -echo "configure:21874: checking for getpgid" >&5 +echo "configure:21876: checking for getpgid" >&5 if eval "test \"`echo '$''{'ac_cv_func_getpgid'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 21879 "configure" +#line 21881 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char getpgid(); below. */ @@ -21901,7 +21903,7 @@ getpgid(); ; return 0; } EOF -if { (eval echo configure:21905: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:21907: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_getpgid=yes" else @@ -21918,7 +21920,7 @@ if eval "test \"`echo '$ac_cv_func_'getpgid`\" = yes"; then echo $ac_n "checking for getpgid prototype""... $ac_c" 1>&6 -echo "configure:21922: checking for getpgid prototype" >&5 +echo "configure:21924: checking for getpgid prototype" >&5 if eval "test \"`echo '$''{'ace_cv_lib_has_getpgid_prototype'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -21927,7 +21929,7 @@ else ace_no_xopen="-U_XOPEN_SOURCE -U_XOPEN_SOURCE_EXTENDED" CPPFLAGS="$CPPFLAGS $ace_no_xopen" cat > conftest.$ac_ext <<EOF -#line 21931 "configure" +#line 21933 "configure" #include "confdefs.h" #include <unistd.h> EOF @@ -21975,12 +21977,12 @@ fi echo $ac_n "checking for getppid""... $ac_c" 1>&6 -echo "configure:21979: checking for getppid" >&5 +echo "configure:21981: checking for getppid" >&5 if eval "test \"`echo '$''{'ac_cv_func_getppid'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 21984 "configure" +#line 21986 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char getppid(); below. */ @@ -22006,7 +22008,7 @@ getppid(); ; return 0; } EOF -if { (eval echo configure:22010: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:22012: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_getppid=yes" else @@ -22031,12 +22033,12 @@ fi echo $ac_n "checking for getpagesize""... $ac_c" 1>&6 -echo "configure:22035: checking for getpagesize" >&5 +echo "configure:22037: checking for getpagesize" >&5 if eval "test \"`echo '$''{'ac_cv_func_getpagesize'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 22040 "configure" +#line 22042 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char getpagesize(); below. */ @@ -22062,7 +22064,7 @@ getpagesize(); ; return 0; } EOF -if { (eval echo configure:22066: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:22068: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_getpagesize=yes" else @@ -22090,12 +22092,12 @@ fi echo $ac_n "checking for msync""... $ac_c" 1>&6 -echo "configure:22094: checking for msync" >&5 +echo "configure:22096: checking for msync" >&5 if eval "test \"`echo '$''{'ac_cv_func_msync'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 22099 "configure" +#line 22101 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char msync(); below. */ @@ -22121,7 +22123,7 @@ msync(); ; return 0; } EOF -if { (eval echo configure:22125: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:22127: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_msync=yes" else @@ -22146,12 +22148,12 @@ fi echo $ac_n "checking for mprotect""... $ac_c" 1>&6 -echo "configure:22150: checking for mprotect" >&5 +echo "configure:22152: checking for mprotect" >&5 if eval "test \"`echo '$''{'ac_cv_func_mprotect'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 22155 "configure" +#line 22157 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char mprotect(); below. */ @@ -22177,7 +22179,7 @@ mprotect(); ; return 0; } EOF -if { (eval echo configure:22181: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:22183: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_mprotect=yes" else @@ -22202,12 +22204,12 @@ fi echo $ac_n "checking for mkfifo""... $ac_c" 1>&6 -echo "configure:22206: checking for mkfifo" >&5 +echo "configure:22208: checking for mkfifo" >&5 if eval "test \"`echo '$''{'ac_cv_func_mkfifo'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 22211 "configure" +#line 22213 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char mkfifo(); below. */ @@ -22233,7 +22235,7 @@ mkfifo(); ; return 0; } EOF -if { (eval echo configure:22237: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:22239: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_mkfifo=yes" else @@ -22258,12 +22260,12 @@ fi echo $ac_n "checking for mktemp""... $ac_c" 1>&6 -echo "configure:22262: checking for mktemp" >&5 +echo "configure:22264: checking for mktemp" >&5 if eval "test \"`echo '$''{'ac_cv_func_mktemp'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 22267 "configure" +#line 22269 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char mktemp(); below. */ @@ -22289,7 +22291,7 @@ mktemp(); ; return 0; } EOF -if { (eval echo configure:22293: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:22295: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_mktemp=yes" else @@ -22314,12 +22316,12 @@ fi echo $ac_n "checking for madvise""... $ac_c" 1>&6 -echo "configure:22318: checking for madvise" >&5 +echo "configure:22320: checking for madvise" >&5 if eval "test \"`echo '$''{'ac_cv_func_madvise'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 22323 "configure" +#line 22325 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char madvise(); below. */ @@ -22345,7 +22347,7 @@ madvise(); ; return 0; } EOF -if { (eval echo configure:22349: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:22351: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_madvise=yes" else @@ -22371,12 +22373,12 @@ fi if test "$ac_cv_header_sys_priocntl_h" = yes; then echo $ac_n "checking for priocntl""... $ac_c" 1>&6 -echo "configure:22375: checking for priocntl" >&5 +echo "configure:22377: checking for priocntl" >&5 if eval "test \"`echo '$''{'ac_cv_func_priocntl'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 22380 "configure" +#line 22382 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char priocntl(); below. */ @@ -22402,7 +22404,7 @@ priocntl(); ; return 0; } EOF -if { (eval echo configure:22406: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:22408: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_priocntl=yes" else @@ -22428,13 +22430,13 @@ fi if test "$ac_cv_func_priocntl" = no; then echo $ac_n "checking for priocntl macro""... $ac_c" 1>&6 -echo "configure:22432: checking for priocntl macro" >&5 +echo "configure:22434: checking for priocntl macro" >&5 if eval "test \"`echo '$''{'ace_cv_lib_has_priocntl_macro'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 22438 "configure" +#line 22440 "configure" #include "confdefs.h" #include <sys/priocntl.h> @@ -22475,12 +22477,12 @@ EOF fi fi echo $ac_n "checking for sbrk""... $ac_c" 1>&6 -echo "configure:22479: checking for sbrk" >&5 +echo "configure:22481: checking for sbrk" >&5 if eval "test \"`echo '$''{'ac_cv_func_sbrk'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 22484 "configure" +#line 22486 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char sbrk(); below. */ @@ -22506,7 +22508,7 @@ sbrk(); ; return 0; } EOF -if { (eval echo configure:22510: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:22512: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_sbrk=yes" else @@ -22531,12 +22533,12 @@ fi echo $ac_n "checking for msgctl""... $ac_c" 1>&6 -echo "configure:22535: checking for msgctl" >&5 +echo "configure:22537: checking for msgctl" >&5 if eval "test \"`echo '$''{'ac_cv_func_msgctl'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 22540 "configure" +#line 22542 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char msgctl(); below. */ @@ -22562,7 +22564,7 @@ msgctl(); ; return 0; } EOF -if { (eval echo configure:22566: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:22568: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_msgctl=yes" else @@ -22583,12 +22585,12 @@ fi echo $ac_n "checking for msgget""... $ac_c" 1>&6 -echo "configure:22587: checking for msgget" >&5 +echo "configure:22589: checking for msgget" >&5 if eval "test \"`echo '$''{'ac_cv_func_msgget'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 22592 "configure" +#line 22594 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char msgget(); below. */ @@ -22614,7 +22616,7 @@ msgget(); ; return 0; } EOF -if { (eval echo configure:22618: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:22620: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_msgget=yes" else @@ -22635,12 +22637,12 @@ fi echo $ac_n "checking for msgrcv""... $ac_c" 1>&6 -echo "configure:22639: checking for msgrcv" >&5 +echo "configure:22641: checking for msgrcv" >&5 if eval "test \"`echo '$''{'ac_cv_func_msgrcv'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 22644 "configure" +#line 22646 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char msgrcv(); below. */ @@ -22666,7 +22668,7 @@ msgrcv(); ; return 0; } EOF -if { (eval echo configure:22670: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:22672: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_msgrcv=yes" else @@ -22687,12 +22689,12 @@ fi echo $ac_n "checking for semctl""... $ac_c" 1>&6 -echo "configure:22691: checking for semctl" >&5 +echo "configure:22693: checking for semctl" >&5 if eval "test \"`echo '$''{'ac_cv_func_semctl'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 22696 "configure" +#line 22698 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char semctl(); below. */ @@ -22718,7 +22720,7 @@ semctl(); ; return 0; } EOF -if { (eval echo configure:22722: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:22724: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_semctl=yes" else @@ -22739,12 +22741,12 @@ fi echo $ac_n "checking for semget""... $ac_c" 1>&6 -echo "configure:22743: checking for semget" >&5 +echo "configure:22745: checking for semget" >&5 if eval "test \"`echo '$''{'ac_cv_func_semget'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 22748 "configure" +#line 22750 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char semget(); below. */ @@ -22770,7 +22772,7 @@ semget(); ; return 0; } EOF -if { (eval echo configure:22774: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:22776: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_semget=yes" else @@ -22791,12 +22793,12 @@ fi echo $ac_n "checking for semop""... $ac_c" 1>&6 -echo "configure:22795: checking for semop" >&5 +echo "configure:22797: checking for semop" >&5 if eval "test \"`echo '$''{'ac_cv_func_semop'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 22800 "configure" +#line 22802 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char semop(); below. */ @@ -22822,7 +22824,7 @@ semop(); ; return 0; } EOF -if { (eval echo configure:22826: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:22828: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_semop=yes" else @@ -22843,12 +22845,12 @@ fi echo $ac_n "checking for shmat""... $ac_c" 1>&6 -echo "configure:22847: checking for shmat" >&5 +echo "configure:22849: checking for shmat" >&5 if eval "test \"`echo '$''{'ac_cv_func_shmat'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 22852 "configure" +#line 22854 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char shmat(); below. */ @@ -22874,7 +22876,7 @@ shmat(); ; return 0; } EOF -if { (eval echo configure:22878: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:22880: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_shmat=yes" else @@ -22895,12 +22897,12 @@ fi echo $ac_n "checking for shmctl""... $ac_c" 1>&6 -echo "configure:22899: checking for shmctl" >&5 +echo "configure:22901: checking for shmctl" >&5 if eval "test \"`echo '$''{'ac_cv_func_shmctl'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 22904 "configure" +#line 22906 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char shmctl(); below. */ @@ -22926,7 +22928,7 @@ shmctl(); ; return 0; } EOF -if { (eval echo configure:22930: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:22932: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_shmctl=yes" else @@ -22947,12 +22949,12 @@ fi echo $ac_n "checking for shmdt""... $ac_c" 1>&6 -echo "configure:22951: checking for shmdt" >&5 +echo "configure:22953: checking for shmdt" >&5 if eval "test \"`echo '$''{'ac_cv_func_shmdt'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 22956 "configure" +#line 22958 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char shmdt(); below. */ @@ -22978,7 +22980,7 @@ shmdt(); ; return 0; } EOF -if { (eval echo configure:22982: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:22984: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_shmdt=yes" else @@ -22999,12 +23001,12 @@ fi echo $ac_n "checking for shmget""... $ac_c" 1>&6 -echo "configure:23003: checking for shmget" >&5 +echo "configure:23005: checking for shmget" >&5 if eval "test \"`echo '$''{'ac_cv_func_shmget'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 23008 "configure" +#line 23010 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char shmget(); below. */ @@ -23030,7 +23032,7 @@ shmget(); ; return 0; } EOF -if { (eval echo configure:23034: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:23036: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_shmget=yes" else @@ -23051,12 +23053,12 @@ fi echo $ac_n "checking for read_real_time""... $ac_c" 1>&6 -echo "configure:23055: checking for read_real_time" >&5 +echo "configure:23057: checking for read_real_time" >&5 if eval "test \"`echo '$''{'ac_cv_func_read_real_time'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 23060 "configure" +#line 23062 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char read_real_time(); below. */ @@ -23082,7 +23084,7 @@ read_real_time(); ; return 0; } EOF -if { (eval echo configure:23086: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:23088: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_read_real_time=yes" else @@ -23106,12 +23108,12 @@ fi echo $ac_n "checking for shm_open""... $ac_c" 1>&6 -echo "configure:23110: checking for shm_open" >&5 +echo "configure:23112: checking for shm_open" >&5 if eval "test \"`echo '$''{'ac_cv_func_shm_open'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 23115 "configure" +#line 23117 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char shm_open(); below. */ @@ -23137,7 +23139,7 @@ shm_open(); ; return 0; } EOF -if { (eval echo configure:23141: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:23143: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_shm_open=yes" else @@ -23161,12 +23163,12 @@ fi echo $ac_n "checking for tempnam""... $ac_c" 1>&6 -echo "configure:23165: checking for tempnam" >&5 +echo "configure:23167: checking for tempnam" >&5 if eval "test \"`echo '$''{'ac_cv_func_tempnam'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 23170 "configure" +#line 23172 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char tempnam(); below. */ @@ -23192,7 +23194,7 @@ tempnam(); ; return 0; } EOF -if { (eval echo configure:23196: \"$ac_link\") 1>&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_func_tempnam=yes" else @@ -23217,12 +23219,12 @@ fi echo $ac_n "checking for truncate""... $ac_c" 1>&6 -echo "configure:23221: checking for truncate" >&5 +echo "configure:23223: checking for truncate" >&5 if eval "test \"`echo '$''{'ac_cv_func_truncate'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 23226 "configure" +#line 23228 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char truncate(); below. */ @@ -23248,7 +23250,7 @@ truncate(); ; return 0; } EOF -if { (eval echo configure:23252: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:23254: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_truncate=yes" else @@ -23273,12 +23275,12 @@ fi echo $ac_n "checking for recv_timedwait""... $ac_c" 1>&6 -echo "configure:23277: checking for recv_timedwait" >&5 +echo "configure:23279: checking for recv_timedwait" >&5 if eval "test \"`echo '$''{'ac_cv_func_recv_timedwait'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 23282 "configure" +#line 23284 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char recv_timedwait(); below. */ @@ -23304,7 +23306,7 @@ recv_timedwait(); ; return 0; } EOF -if { (eval echo configure:23308: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:23310: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_recv_timedwait=yes" else @@ -23328,12 +23330,12 @@ fi echo $ac_n "checking for recvfrom_timedwait""... $ac_c" 1>&6 -echo "configure:23332: checking for recvfrom_timedwait" >&5 +echo "configure:23334: checking for recvfrom_timedwait" >&5 if eval "test \"`echo '$''{'ac_cv_func_recvfrom_timedwait'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 23337 "configure" +#line 23339 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char recvfrom_timedwait(); below. */ @@ -23359,7 +23361,7 @@ recvfrom_timedwait(); ; return 0; } EOF -if { (eval echo configure:23363: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:23365: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_recvfrom_timedwait=yes" else @@ -23383,12 +23385,12 @@ fi echo $ac_n "checking for recvmsg_timedwait""... $ac_c" 1>&6 -echo "configure:23387: checking for recvmsg_timedwait" >&5 +echo "configure:23389: checking for recvmsg_timedwait" >&5 if eval "test \"`echo '$''{'ac_cv_func_recvmsg_timedwait'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 23392 "configure" +#line 23394 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char recvmsg_timedwait(); below. */ @@ -23414,7 +23416,7 @@ recvmsg_timedwait(); ; return 0; } EOF -if { (eval echo configure:23418: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:23420: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_recvmsg_timedwait=yes" else @@ -23438,12 +23440,12 @@ fi echo $ac_n "checking for send_timedwait""... $ac_c" 1>&6 -echo "configure:23442: checking for send_timedwait" >&5 +echo "configure:23444: checking for send_timedwait" >&5 if eval "test \"`echo '$''{'ac_cv_func_send_timedwait'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 23447 "configure" +#line 23449 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char send_timedwait(); below. */ @@ -23469,7 +23471,7 @@ send_timedwait(); ; return 0; } EOF -if { (eval echo configure:23473: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:23475: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_send_timedwait=yes" else @@ -23493,12 +23495,12 @@ fi echo $ac_n "checking for sendto_timedwait""... $ac_c" 1>&6 -echo "configure:23497: checking for sendto_timedwait" >&5 +echo "configure:23499: checking for sendto_timedwait" >&5 if eval "test \"`echo '$''{'ac_cv_func_sendto_timedwait'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 23502 "configure" +#line 23504 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char sendto_timedwait(); below. */ @@ -23524,7 +23526,7 @@ sendto_timedwait(); ; return 0; } EOF -if { (eval echo configure:23528: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:23530: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_sendto_timedwait=yes" else @@ -23548,12 +23550,12 @@ fi echo $ac_n "checking for sendmsg_timedwait""... $ac_c" 1>&6 -echo "configure:23552: checking for sendmsg_timedwait" >&5 +echo "configure:23554: checking for sendmsg_timedwait" >&5 if eval "test \"`echo '$''{'ac_cv_func_sendmsg_timedwait'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 23557 "configure" +#line 23559 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char sendmsg_timedwait(); below. */ @@ -23579,7 +23581,7 @@ sendmsg_timedwait(); ; return 0; } EOF -if { (eval echo configure:23583: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:23585: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_sendmsg_timedwait=yes" else @@ -23603,12 +23605,12 @@ fi echo $ac_n "checking for read_timedwait""... $ac_c" 1>&6 -echo "configure:23607: checking for read_timedwait" >&5 +echo "configure:23609: checking for read_timedwait" >&5 if eval "test \"`echo '$''{'ac_cv_func_read_timedwait'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 23612 "configure" +#line 23614 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char read_timedwait(); below. */ @@ -23634,7 +23636,7 @@ read_timedwait(); ; return 0; } EOF -if { (eval echo configure:23638: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:23640: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_read_timedwait=yes" else @@ -23658,12 +23660,12 @@ fi echo $ac_n "checking for readv_timedwait""... $ac_c" 1>&6 -echo "configure:23662: checking for readv_timedwait" >&5 +echo "configure:23664: checking for readv_timedwait" >&5 if eval "test \"`echo '$''{'ac_cv_func_readv_timedwait'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 23667 "configure" +#line 23669 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char readv_timedwait(); below. */ @@ -23689,7 +23691,7 @@ readv_timedwait(); ; return 0; } EOF -if { (eval echo configure:23693: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:23695: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_readv_timedwait=yes" else @@ -23713,12 +23715,12 @@ fi echo $ac_n "checking for write_timedwait""... $ac_c" 1>&6 -echo "configure:23717: checking for write_timedwait" >&5 +echo "configure:23719: checking for write_timedwait" >&5 if eval "test \"`echo '$''{'ac_cv_func_write_timedwait'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 23722 "configure" +#line 23724 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char write_timedwait(); below. */ @@ -23744,7 +23746,7 @@ write_timedwait(); ; return 0; } EOF -if { (eval echo configure:23748: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:23750: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_write_timedwait=yes" else @@ -23768,12 +23770,12 @@ fi echo $ac_n "checking for writev_timedwait""... $ac_c" 1>&6 -echo "configure:23772: checking for writev_timedwait" >&5 +echo "configure:23774: checking for writev_timedwait" >&5 if eval "test \"`echo '$''{'ac_cv_func_writev_timedwait'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 23777 "configure" +#line 23779 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char writev_timedwait(); below. */ @@ -23799,7 +23801,7 @@ writev_timedwait(); ; return 0; } EOF -if { (eval echo configure:23803: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:23805: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_writev_timedwait=yes" else @@ -23871,12 +23873,12 @@ rm -f confcache echo $ac_n "checking for sem_init""... $ac_c" 1>&6 -echo "configure:23875: checking for sem_init" >&5 +echo "configure:23877: checking for sem_init" >&5 if eval "test \"`echo '$''{'ac_cv_func_sem_init'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 23880 "configure" +#line 23882 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char sem_init(); below. */ @@ -23902,7 +23904,7 @@ sem_init(); ; return 0; } EOF -if { (eval echo configure:23906: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:23908: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_sem_init=yes" else @@ -23921,12 +23923,12 @@ else echo "$ac_t""no" 1>&6 fi echo $ac_n "checking for sem_destroy""... $ac_c" 1>&6 -echo "configure:23925: checking for sem_destroy" >&5 +echo "configure:23927: checking for sem_destroy" >&5 if eval "test \"`echo '$''{'ac_cv_func_sem_destroy'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 23930 "configure" +#line 23932 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char sem_destroy(); below. */ @@ -23952,7 +23954,7 @@ sem_destroy(); ; return 0; } EOF -if { (eval echo configure:23956: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:23958: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_sem_destroy=yes" else @@ -23977,7 +23979,7 @@ if test "$ac_cv_func_sem_init" = yes && test "$ace_has_sthreads" != yes; then cat > conftest.$ac_ext <<EOF -#line 23981 "configure" +#line 23983 "configure" #include "confdefs.h" #ifndef _REENTRANT @@ -24010,12 +24012,12 @@ EOF echo $ac_n "checking for sem_open""... $ac_c" 1>&6 -echo "configure:24014: checking for sem_open" >&5 +echo "configure:24016: checking for sem_open" >&5 if eval "test \"`echo '$''{'ac_cv_func_sem_open'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 24019 "configure" +#line 24021 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char sem_open(); below. */ @@ -24041,7 +24043,7 @@ sem_open(); ; return 0; } EOF -if { (eval echo configure:24045: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:24047: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_sem_open=yes" else @@ -24058,7 +24060,7 @@ if eval "test \"`echo '$ac_cv_func_'sem_open`\" = yes"; then echo $ac_n "checking if sem_open works""... $ac_c" 1>&6 -echo "configure:24062: checking if sem_open works" >&5 +echo "configure:24064: checking if sem_open works" >&5 if eval "test \"`echo '$''{'ace_cv_sem_open_works'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -24069,7 +24071,7 @@ else else cat > conftest.$ac_ext <<EOF -#line 24073 "configure" +#line 24075 "configure" #include "confdefs.h" #ifdef __cplusplus extern "C" void exit(int); @@ -24107,7 +24109,7 @@ main () } EOF -if { (eval echo configure:24111: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:24113: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null then ace_cv_sem_open_works=yes @@ -24162,12 +24164,12 @@ if test "$ace_user_enable_threads" = yes; then if test "$ace_has_pthreads" = yes; then echo $ac_n "checking for pthread_sigmask""... $ac_c" 1>&6 -echo "configure:24166: checking for pthread_sigmask" >&5 +echo "configure:24168: checking for pthread_sigmask" >&5 if eval "test \"`echo '$''{'ac_cv_func_pthread_sigmask'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 24171 "configure" +#line 24173 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char pthread_sigmask(); below. */ @@ -24193,7 +24195,7 @@ pthread_sigmask(); ; return 0; } EOF -if { (eval echo configure:24197: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:24199: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_pthread_sigmask=yes" else @@ -24218,12 +24220,12 @@ fi echo $ac_n "checking for pthread_key_create""... $ac_c" 1>&6 -echo "configure:24222: checking for pthread_key_create" >&5 +echo "configure:24224: checking for pthread_key_create" >&5 if eval "test \"`echo '$''{'ac_cv_func_pthread_key_create'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 24227 "configure" +#line 24229 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char pthread_key_create(); below. */ @@ -24249,7 +24251,7 @@ pthread_key_create(); ; return 0; } EOF -if { (eval echo configure:24253: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:24255: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_pthread_key_create=yes" else @@ -24271,12 +24273,12 @@ else echo "$ac_t""no" 1>&6 echo $ac_n "checking for pthread_keycreate""... $ac_c" 1>&6 -echo "configure:24275: checking for pthread_keycreate" >&5 +echo "configure:24277: checking for pthread_keycreate" >&5 if eval "test \"`echo '$''{'ac_cv_func_pthread_keycreate'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 24280 "configure" +#line 24282 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char pthread_keycreate(); below. */ @@ -24302,7 +24304,7 @@ pthread_keycreate(); ; return 0; } EOF -if { (eval echo configure:24306: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:24308: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_pthread_keycreate=yes" else @@ -24333,12 +24335,12 @@ fi echo $ac_n "checking for pthread_condattr_setkind_np""... $ac_c" 1>&6 -echo "configure:24337: checking for pthread_condattr_setkind_np" >&5 +echo "configure:24339: checking for pthread_condattr_setkind_np" >&5 if eval "test \"`echo '$''{'ac_cv_func_pthread_condattr_setkind_np'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 24342 "configure" +#line 24344 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char pthread_condattr_setkind_np(); below. */ @@ -24364,7 +24366,7 @@ pthread_condattr_setkind_np(); ; return 0; } EOF -if { (eval echo configure:24368: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:24370: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_pthread_condattr_setkind_np=yes" else @@ -24388,12 +24390,12 @@ fi echo $ac_n "checking for pthread_mutexattr_setkind_np""... $ac_c" 1>&6 -echo "configure:24392: checking for pthread_mutexattr_setkind_np" >&5 +echo "configure:24394: checking for pthread_mutexattr_setkind_np" >&5 if eval "test \"`echo '$''{'ac_cv_func_pthread_mutexattr_setkind_np'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 24397 "configure" +#line 24399 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char pthread_mutexattr_setkind_np(); below. */ @@ -24419,7 +24421,7 @@ pthread_mutexattr_setkind_np(); ; return 0; } EOF -if { (eval echo configure:24423: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:24425: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_pthread_mutexattr_setkind_np=yes" else @@ -24443,12 +24445,12 @@ fi echo $ac_n "checking for pthread_condattr_setpshared""... $ac_c" 1>&6 -echo "configure:24447: checking for pthread_condattr_setpshared" >&5 +echo "configure:24449: checking for pthread_condattr_setpshared" >&5 if eval "test \"`echo '$''{'ac_cv_func_pthread_condattr_setpshared'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 24452 "configure" +#line 24454 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char pthread_condattr_setpshared(); below. */ @@ -24474,7 +24476,7 @@ pthread_condattr_setpshared(); ; return 0; } EOF -if { (eval echo configure:24478: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:24480: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_pthread_condattr_setpshared=yes" else @@ -24499,12 +24501,12 @@ fi echo $ac_n "checking for pthread_attr_setstackaddr""... $ac_c" 1>&6 -echo "configure:24503: checking for pthread_attr_setstackaddr" >&5 +echo "configure:24505: checking for pthread_attr_setstackaddr" >&5 if eval "test \"`echo '$''{'ac_cv_func_pthread_attr_setstackaddr'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 24508 "configure" +#line 24510 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char pthread_attr_setstackaddr(); below. */ @@ -24530,7 +24532,7 @@ pthread_attr_setstackaddr(); ; return 0; } EOF -if { (eval echo configure:24534: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:24536: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_pthread_attr_setstackaddr=yes" else @@ -24558,14 +24560,14 @@ fi cat > conftest.$ac_ext <<EOF -#line 24562 "configure" +#line 24564 "configure" #include "confdefs.h" #include <pthread.h> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:24569: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:24571: \"$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* @@ -24601,19 +24603,19 @@ EOF if test pthread_attr_setstacksize != "$ace_real_function"; then echo $ac_n "checking for real pthread_attr_setstacksize from pthread.h""... $ac_c" 1>&6 -echo "configure:24605: checking for real pthread_attr_setstacksize from pthread.h" >&5 +echo "configure:24607: checking for real pthread_attr_setstacksize from pthread.h" >&5 echo "$ac_t""$ace_real_function" 1>&6 fi else ace_real_function=pthread_attr_setstacksize fi echo $ac_n "checking for $ace_real_function""... $ac_c" 1>&6 -echo "configure:24612: checking for $ace_real_function" >&5 +echo "configure:24614: checking for $ace_real_function" >&5 if eval "test \"`echo '$''{'ac_cv_func_$ace_real_function'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 24617 "configure" +#line 24619 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ace_real_function(); below. */ @@ -24639,7 +24641,7 @@ $ace_real_function(); ; return 0; } EOF -if { (eval echo configure:24643: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:24645: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_$ace_real_function=yes" else @@ -24668,14 +24670,14 @@ fi cat > conftest.$ac_ext <<EOF -#line 24672 "configure" +#line 24674 "configure" #include "confdefs.h" #include <pthread.h> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:24679: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:24681: \"$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* @@ -24711,19 +24713,19 @@ EOF if test pthread_cancel != "$ace_real_function"; then echo $ac_n "checking for real pthread_cancel from pthread.h""... $ac_c" 1>&6 -echo "configure:24715: checking for real pthread_cancel from pthread.h" >&5 +echo "configure:24717: checking for real pthread_cancel from pthread.h" >&5 echo "$ac_t""$ace_real_function" 1>&6 fi else ace_real_function=pthread_cancel fi echo $ac_n "checking for $ace_real_function""... $ac_c" 1>&6 -echo "configure:24722: checking for $ace_real_function" >&5 +echo "configure:24724: checking for $ace_real_function" >&5 if eval "test \"`echo '$''{'ac_cv_func_$ace_real_function'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 24727 "configure" +#line 24729 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ace_real_function(); below. */ @@ -24749,7 +24751,7 @@ $ace_real_function(); ; return 0; } EOF -if { (eval echo configure:24753: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:24755: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_$ace_real_function=yes" else @@ -24775,12 +24777,12 @@ fi echo $ac_n "checking for pthread_yield""... $ac_c" 1>&6 -echo "configure:24779: checking for pthread_yield" >&5 +echo "configure:24781: checking for pthread_yield" >&5 if eval "test \"`echo '$''{'ac_cv_func_pthread_yield'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 24784 "configure" +#line 24786 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char pthread_yield(); below. */ @@ -24806,7 +24808,7 @@ pthread_yield(); ; return 0; } EOF -if { (eval echo configure:24810: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:24812: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_pthread_yield=yes" else @@ -24831,12 +24833,12 @@ fi echo $ac_n "checking for pthread_thr_sigsetmask""... $ac_c" 1>&6 -echo "configure:24835: checking for pthread_thr_sigsetmask" >&5 +echo "configure:24837: checking for pthread_thr_sigsetmask" >&5 if eval "test \"`echo '$''{'ac_cv_func_pthread_thr_sigsetmask'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 24840 "configure" +#line 24842 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char pthread_thr_sigsetmask(); below. */ @@ -24862,7 +24864,7 @@ pthread_thr_sigsetmask(); ; return 0; } EOF -if { (eval echo configure:24866: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:24868: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_pthread_thr_sigsetmask=yes" else @@ -24887,12 +24889,12 @@ fi echo $ac_n "checking for pthread_attr_setdetachstate""... $ac_c" 1>&6 -echo "configure:24891: checking for pthread_attr_setdetachstate" >&5 +echo "configure:24893: checking for pthread_attr_setdetachstate" >&5 if eval "test \"`echo '$''{'ac_cv_func_pthread_attr_setdetachstate'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 24896 "configure" +#line 24898 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char pthread_attr_setdetachstate(); below. */ @@ -24918,7 +24920,7 @@ pthread_attr_setdetachstate(); ; return 0; } EOF -if { (eval echo configure:24922: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:24924: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_pthread_attr_setdetachstate=yes" else @@ -24943,12 +24945,12 @@ fi echo $ac_n "checking for pthread_attr_setsched""... $ac_c" 1>&6 -echo "configure:24947: checking for pthread_attr_setsched" >&5 +echo "configure:24949: checking for pthread_attr_setsched" >&5 if eval "test \"`echo '$''{'ac_cv_func_pthread_attr_setsched'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 24952 "configure" +#line 24954 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char pthread_attr_setsched(); below. */ @@ -24974,7 +24976,7 @@ pthread_attr_setsched(); ; return 0; } EOF -if { (eval echo configure:24978: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:24980: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_pthread_attr_setsched=yes" else @@ -24992,12 +24994,12 @@ if eval "test \"`echo '$ac_cv_func_'pthread_attr_setsched`\" = yes"; then else echo "$ac_t""no" 1>&6 echo $ac_n "checking for pthread_attr_setschedpolicy""... $ac_c" 1>&6 -echo "configure:24996: checking for pthread_attr_setschedpolicy" >&5 +echo "configure:24998: checking for pthread_attr_setschedpolicy" >&5 if eval "test \"`echo '$''{'ac_cv_func_pthread_attr_setschedpolicy'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 25001 "configure" +#line 25003 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char pthread_attr_setschedpolicy(); below. */ @@ -25023,7 +25025,7 @@ pthread_attr_setschedpolicy(); ; return 0; } EOF -if { (eval echo configure:25027: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:25029: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_pthread_attr_setschedpolicy=yes" else @@ -25050,12 +25052,12 @@ fi echo $ac_n "checking for pthread_attr_setscope""... $ac_c" 1>&6 -echo "configure:25054: checking for pthread_attr_setscope" >&5 +echo "configure:25056: checking for pthread_attr_setscope" >&5 if eval "test \"`echo '$''{'ac_cv_func_pthread_attr_setscope'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 25059 "configure" +#line 25061 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char pthread_attr_setscope(); below. */ @@ -25081,7 +25083,7 @@ pthread_attr_setscope(); ; return 0; } EOF -if { (eval echo configure:25085: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:25087: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_pthread_attr_setscope=yes" else @@ -25106,12 +25108,12 @@ fi echo $ac_n "checking for pthread_mutexattr_setpshared""... $ac_c" 1>&6 -echo "configure:25110: checking for pthread_mutexattr_setpshared" >&5 +echo "configure:25112: checking for pthread_mutexattr_setpshared" >&5 if eval "test \"`echo '$''{'ac_cv_func_pthread_mutexattr_setpshared'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 25115 "configure" +#line 25117 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char pthread_mutexattr_setpshared(); below. */ @@ -25137,7 +25139,7 @@ pthread_mutexattr_setpshared(); ; return 0; } EOF -if { (eval echo configure:25141: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:25143: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_pthread_mutexattr_setpshared=yes" else @@ -25162,12 +25164,12 @@ fi echo $ac_n "checking for pthread_mutexattr_create""... $ac_c" 1>&6 -echo "configure:25166: checking for pthread_mutexattr_create" >&5 +echo "configure:25168: checking for pthread_mutexattr_create" >&5 if eval "test \"`echo '$''{'ac_cv_func_pthread_mutexattr_create'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 25171 "configure" +#line 25173 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char pthread_mutexattr_create(); below. */ @@ -25193,7 +25195,7 @@ pthread_mutexattr_create(); ; return 0; } EOF -if { (eval echo configure:25197: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:25199: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_pthread_mutexattr_create=yes" else @@ -25212,12 +25214,12 @@ else echo "$ac_t""no" 1>&6 fi echo $ac_n "checking for pthread_mutexattr_delete""... $ac_c" 1>&6 -echo "configure:25216: checking for pthread_mutexattr_delete" >&5 +echo "configure:25218: checking for pthread_mutexattr_delete" >&5 if eval "test \"`echo '$''{'ac_cv_func_pthread_mutexattr_delete'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 25221 "configure" +#line 25223 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char pthread_mutexattr_delete(); below. */ @@ -25243,7 +25245,7 @@ pthread_mutexattr_delete(); ; return 0; } EOF -if { (eval echo configure:25247: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:25249: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_pthread_mutexattr_delete=yes" else @@ -25262,12 +25264,12 @@ else echo "$ac_t""no" 1>&6 fi echo $ac_n "checking for pthread_condattr_delete""... $ac_c" 1>&6 -echo "configure:25266: checking for pthread_condattr_delete" >&5 +echo "configure:25268: checking for pthread_condattr_delete" >&5 if eval "test \"`echo '$''{'ac_cv_func_pthread_condattr_delete'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 25271 "configure" +#line 25273 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char pthread_condattr_delete(); below. */ @@ -25293,7 +25295,7 @@ pthread_condattr_delete(); ; return 0; } EOF -if { (eval echo configure:25297: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:25299: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_pthread_condattr_delete=yes" else @@ -25312,12 +25314,12 @@ else echo "$ac_t""no" 1>&6 fi echo $ac_n "checking for pthread_condattr_create""... $ac_c" 1>&6 -echo "configure:25316: checking for pthread_condattr_create" >&5 +echo "configure:25318: checking for pthread_condattr_create" >&5 if eval "test \"`echo '$''{'ac_cv_func_pthread_condattr_create'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 25321 "configure" +#line 25323 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char pthread_condattr_create(); below. */ @@ -25343,7 +25345,7 @@ pthread_condattr_create(); ; return 0; } EOF -if { (eval echo configure:25347: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:25349: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_pthread_condattr_create=yes" else @@ -25362,12 +25364,12 @@ else echo "$ac_t""no" 1>&6 fi echo $ac_n "checking for pthread_setprio""... $ac_c" 1>&6 -echo "configure:25366: checking for pthread_setprio" >&5 +echo "configure:25368: checking for pthread_setprio" >&5 if eval "test \"`echo '$''{'ac_cv_func_pthread_setprio'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 25371 "configure" +#line 25373 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char pthread_setprio(); below. */ @@ -25393,7 +25395,7 @@ pthread_setprio(); ; return 0; } EOF -if { (eval echo configure:25397: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:25399: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_pthread_setprio=yes" else @@ -25412,12 +25414,12 @@ else echo "$ac_t""no" 1>&6 fi echo $ac_n "checking for pthread_getprio""... $ac_c" 1>&6 -echo "configure:25416: checking for pthread_getprio" >&5 +echo "configure:25418: checking for pthread_getprio" >&5 if eval "test \"`echo '$''{'ac_cv_func_pthread_getprio'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 25421 "configure" +#line 25423 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char pthread_getprio(); below. */ @@ -25443,7 +25445,7 @@ pthread_getprio(); ; return 0; } EOF -if { (eval echo configure:25447: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:25449: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_pthread_getprio=yes" else @@ -25462,12 +25464,12 @@ else echo "$ac_t""no" 1>&6 fi echo $ac_n "checking for pthread_setcancel""... $ac_c" 1>&6 -echo "configure:25466: checking for pthread_setcancel" >&5 +echo "configure:25468: checking for pthread_setcancel" >&5 if eval "test \"`echo '$''{'ac_cv_func_pthread_setcancel'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 25471 "configure" +#line 25473 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char pthread_setcancel(); below. */ @@ -25493,7 +25495,7 @@ pthread_setcancel(); ; return 0; } EOF -if { (eval echo configure:25497: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:25499: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_pthread_setcancel=yes" else @@ -25512,12 +25514,12 @@ else echo "$ac_t""no" 1>&6 fi echo $ac_n "checking for pthread_setasynccancel""... $ac_c" 1>&6 -echo "configure:25516: checking for pthread_setasynccancel" >&5 +echo "configure:25518: checking for pthread_setasynccancel" >&5 if eval "test \"`echo '$''{'ac_cv_func_pthread_setasynccancel'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 25521 "configure" +#line 25523 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char pthread_setasynccancel(); below. */ @@ -25543,7 +25545,7 @@ pthread_setasynccancel(); ; return 0; } EOF -if { (eval echo configure:25547: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:25549: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_pthread_setasynccancel=yes" else @@ -25562,12 +25564,12 @@ else echo "$ac_t""no" 1>&6 fi echo $ac_n "checking for pthread_kill""... $ac_c" 1>&6 -echo "configure:25566: checking for pthread_kill" >&5 +echo "configure:25568: checking for pthread_kill" >&5 if eval "test \"`echo '$''{'ac_cv_func_pthread_kill'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 25571 "configure" +#line 25573 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char pthread_kill(); below. */ @@ -25593,7 +25595,7 @@ pthread_kill(); ; return 0; } EOF -if { (eval echo configure:25597: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:25599: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_pthread_kill=yes" else @@ -25612,12 +25614,12 @@ else echo "$ac_t""no" 1>&6 fi echo $ac_n "checking for pthread_attr_setprio""... $ac_c" 1>&6 -echo "configure:25616: checking for pthread_attr_setprio" >&5 +echo "configure:25618: checking for pthread_attr_setprio" >&5 if eval "test \"`echo '$''{'ac_cv_func_pthread_attr_setprio'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 25621 "configure" +#line 25623 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char pthread_attr_setprio(); below. */ @@ -25643,7 +25645,7 @@ pthread_attr_setprio(); ; return 0; } EOF -if { (eval echo configure:25647: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:25649: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_pthread_attr_setprio=yes" else @@ -25662,12 +25664,12 @@ else echo "$ac_t""no" 1>&6 fi echo $ac_n "checking for pthread_attr_getprio""... $ac_c" 1>&6 -echo "configure:25666: checking for pthread_attr_getprio" >&5 +echo "configure:25668: checking for pthread_attr_getprio" >&5 if eval "test \"`echo '$''{'ac_cv_func_pthread_attr_getprio'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 25671 "configure" +#line 25673 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char pthread_attr_getprio(); below. */ @@ -25693,7 +25695,7 @@ pthread_attr_getprio(); ; return 0; } EOF -if { (eval echo configure:25697: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:25699: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_pthread_attr_getprio=yes" else @@ -25712,12 +25714,12 @@ else echo "$ac_t""no" 1>&6 fi echo $ac_n "checking for pthread_setintr""... $ac_c" 1>&6 -echo "configure:25716: checking for pthread_setintr" >&5 +echo "configure:25718: checking for pthread_setintr" >&5 if eval "test \"`echo '$''{'ac_cv_func_pthread_setintr'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 25721 "configure" +#line 25723 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char pthread_setintr(); below. */ @@ -25743,7 +25745,7 @@ pthread_setintr(); ; return 0; } EOF -if { (eval echo configure:25747: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:25749: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_pthread_setintr=yes" else @@ -25762,12 +25764,12 @@ else echo "$ac_t""no" 1>&6 fi echo $ac_n "checking for pthread_setintrtype""... $ac_c" 1>&6 -echo "configure:25766: checking for pthread_setintrtype" >&5 +echo "configure:25768: checking for pthread_setintrtype" >&5 if eval "test \"`echo '$''{'ac_cv_func_pthread_setintrtype'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 25771 "configure" +#line 25773 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char pthread_setintrtype(); below. */ @@ -25793,7 +25795,7 @@ pthread_setintrtype(); ; return 0; } EOF -if { (eval echo configure:25797: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:25799: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_pthread_setintrtype=yes" else @@ -25812,12 +25814,12 @@ else echo "$ac_t""no" 1>&6 fi echo $ac_n "checking for pthread_mutexattr_init""... $ac_c" 1>&6 -echo "configure:25816: checking for pthread_mutexattr_init" >&5 +echo "configure:25818: checking for pthread_mutexattr_init" >&5 if eval "test \"`echo '$''{'ac_cv_func_pthread_mutexattr_init'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 25821 "configure" +#line 25823 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char pthread_mutexattr_init(); below. */ @@ -25843,7 +25845,7 @@ pthread_mutexattr_init(); ; return 0; } EOF -if { (eval echo configure:25847: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:25849: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_pthread_mutexattr_init=yes" else @@ -25862,12 +25864,12 @@ else echo "$ac_t""no" 1>&6 fi echo $ac_n "checking for pthread_mutexattr_destroy""... $ac_c" 1>&6 -echo "configure:25866: checking for pthread_mutexattr_destroy" >&5 +echo "configure:25868: checking for pthread_mutexattr_destroy" >&5 if eval "test \"`echo '$''{'ac_cv_func_pthread_mutexattr_destroy'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 25871 "configure" +#line 25873 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char pthread_mutexattr_destroy(); below. */ @@ -25893,7 +25895,7 @@ pthread_mutexattr_destroy(); ; return 0; } EOF -if { (eval echo configure:25897: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:25899: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_pthread_mutexattr_destroy=yes" else @@ -25912,12 +25914,12 @@ else echo "$ac_t""no" 1>&6 fi echo $ac_n "checking for pthread_condattr_init""... $ac_c" 1>&6 -echo "configure:25916: checking for pthread_condattr_init" >&5 +echo "configure:25918: checking for pthread_condattr_init" >&5 if eval "test \"`echo '$''{'ac_cv_func_pthread_condattr_init'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 25921 "configure" +#line 25923 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char pthread_condattr_init(); below. */ @@ -25943,7 +25945,7 @@ pthread_condattr_init(); ; return 0; } EOF -if { (eval echo configure:25947: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:25949: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_pthread_condattr_init=yes" else @@ -25962,12 +25964,12 @@ else echo "$ac_t""no" 1>&6 fi echo $ac_n "checking for pthread_condattr_destroy""... $ac_c" 1>&6 -echo "configure:25966: checking for pthread_condattr_destroy" >&5 +echo "configure:25968: checking for pthread_condattr_destroy" >&5 if eval "test \"`echo '$''{'ac_cv_func_pthread_condattr_destroy'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 25971 "configure" +#line 25973 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char pthread_condattr_destroy(); below. */ @@ -25993,7 +25995,7 @@ pthread_condattr_destroy(); ; return 0; } EOF -if { (eval echo configure:25997: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:25999: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_pthread_condattr_destroy=yes" else @@ -26012,12 +26014,12 @@ else echo "$ac_t""no" 1>&6 fi echo $ac_n "checking for pthread_setschedparam""... $ac_c" 1>&6 -echo "configure:26016: checking for pthread_setschedparam" >&5 +echo "configure:26018: checking for pthread_setschedparam" >&5 if eval "test \"`echo '$''{'ac_cv_func_pthread_setschedparam'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 26021 "configure" +#line 26023 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char pthread_setschedparam(); below. */ @@ -26043,7 +26045,7 @@ pthread_setschedparam(); ; return 0; } EOF -if { (eval echo configure:26047: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:26049: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_pthread_setschedparam=yes" else @@ -26062,12 +26064,12 @@ else echo "$ac_t""no" 1>&6 fi echo $ac_n "checking for pthread_getschedparam""... $ac_c" 1>&6 -echo "configure:26066: checking for pthread_getschedparam" >&5 +echo "configure:26068: checking for pthread_getschedparam" >&5 if eval "test \"`echo '$''{'ac_cv_func_pthread_getschedparam'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 26071 "configure" +#line 26073 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char pthread_getschedparam(); below. */ @@ -26093,7 +26095,7 @@ pthread_getschedparam(); ; return 0; } EOF -if { (eval echo configure:26097: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:26099: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_pthread_getschedparam=yes" else @@ -26112,12 +26114,12 @@ else echo "$ac_t""no" 1>&6 fi echo $ac_n "checking for pthread_setcancelstate""... $ac_c" 1>&6 -echo "configure:26116: checking for pthread_setcancelstate" >&5 +echo "configure:26118: checking for pthread_setcancelstate" >&5 if eval "test \"`echo '$''{'ac_cv_func_pthread_setcancelstate'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 26121 "configure" +#line 26123 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char pthread_setcancelstate(); below. */ @@ -26143,7 +26145,7 @@ pthread_setcancelstate(); ; return 0; } EOF -if { (eval echo configure:26147: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:26149: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_pthread_setcancelstate=yes" else @@ -26162,12 +26164,12 @@ else echo "$ac_t""no" 1>&6 fi echo $ac_n "checking for pthread_setcanceltype""... $ac_c" 1>&6 -echo "configure:26166: checking for pthread_setcanceltype" >&5 +echo "configure:26168: checking for pthread_setcanceltype" >&5 if eval "test \"`echo '$''{'ac_cv_func_pthread_setcanceltype'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 26171 "configure" +#line 26173 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char pthread_setcanceltype(); below. */ @@ -26193,7 +26195,7 @@ pthread_setcanceltype(); ; return 0; } EOF -if { (eval echo configure:26197: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:26199: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_pthread_setcanceltype=yes" else @@ -26217,7 +26219,7 @@ fi echo $ac_n "checking for struct pthread_rwlock_t in ""... $ac_c" 1>&6 -echo "configure:26221: checking for struct pthread_rwlock_t in " >&5 +echo "configure:26223: checking for struct pthread_rwlock_t in " >&5 if eval "test \"`echo '$''{'ace_cv_struct_pthread_rwlock_t'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -26225,7 +26227,7 @@ else cat > conftest.$ac_ext <<EOF -#line 26229 "configure" +#line 26231 "configure" #include "confdefs.h" #include <> @@ -26236,7 +26238,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:26240: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:26242: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* @@ -26249,7 +26251,7 @@ else rm -rf conftest* cat > conftest.$ac_ext <<EOF -#line 26253 "configure" +#line 26255 "configure" #include "confdefs.h" #include <> @@ -26260,7 +26262,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:26264: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:26266: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* @@ -26299,7 +26301,7 @@ fi echo $ac_n "checking for struct pthread_rwlockattr_t in ""... $ac_c" 1>&6 -echo "configure:26303: checking for struct pthread_rwlockattr_t in " >&5 +echo "configure:26305: checking for struct pthread_rwlockattr_t in " >&5 if eval "test \"`echo '$''{'ace_cv_struct_pthread_rwlockattr_t'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -26307,7 +26309,7 @@ else cat > conftest.$ac_ext <<EOF -#line 26311 "configure" +#line 26313 "configure" #include "confdefs.h" #include <> @@ -26318,7 +26320,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:26322: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:26324: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* @@ -26331,7 +26333,7 @@ else rm -rf conftest* cat > conftest.$ac_ext <<EOF -#line 26335 "configure" +#line 26337 "configure" #include "confdefs.h" #include <> @@ -26342,7 +26344,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:26346: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:26348: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* @@ -26377,12 +26379,12 @@ fi fi echo $ac_n "checking for pthread_continue""... $ac_c" 1>&6 -echo "configure:26381: checking for pthread_continue" >&5 +echo "configure:26383: checking for pthread_continue" >&5 if eval "test \"`echo '$''{'ac_cv_func_pthread_continue'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 26386 "configure" +#line 26388 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char pthread_continue(); below. */ @@ -26408,7 +26410,7 @@ pthread_continue(); ; return 0; } EOF -if { (eval echo configure:26412: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:26414: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_pthread_continue=yes" else @@ -26427,12 +26429,12 @@ else echo "$ac_t""no" 1>&6 fi echo $ac_n "checking for pthread_suspend""... $ac_c" 1>&6 -echo "configure:26431: checking for pthread_suspend" >&5 +echo "configure:26433: checking for pthread_suspend" >&5 if eval "test \"`echo '$''{'ac_cv_func_pthread_suspend'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 26436 "configure" +#line 26438 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char pthread_suspend(); below. */ @@ -26458,7 +26460,7 @@ pthread_suspend(); ; return 0; } EOF -if { (eval echo configure:26462: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:26464: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_pthread_suspend=yes" else @@ -26477,12 +26479,12 @@ else echo "$ac_t""no" 1>&6 fi echo $ac_n "checking for pthread_rwlock_init""... $ac_c" 1>&6 -echo "configure:26481: checking for pthread_rwlock_init" >&5 +echo "configure:26483: checking for pthread_rwlock_init" >&5 if eval "test \"`echo '$''{'ac_cv_func_pthread_rwlock_init'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 26486 "configure" +#line 26488 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char pthread_rwlock_init(); below. */ @@ -26508,7 +26510,7 @@ pthread_rwlock_init(); ; return 0; } EOF -if { (eval echo configure:26512: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:26514: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_pthread_rwlock_init=yes" else @@ -26527,12 +26529,12 @@ else echo "$ac_t""no" 1>&6 fi echo $ac_n "checking for pthread_rwlock_destroy""... $ac_c" 1>&6 -echo "configure:26531: checking for pthread_rwlock_destroy" >&5 +echo "configure:26533: checking for pthread_rwlock_destroy" >&5 if eval "test \"`echo '$''{'ac_cv_func_pthread_rwlock_destroy'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 26536 "configure" +#line 26538 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char pthread_rwlock_destroy(); below. */ @@ -26558,7 +26560,7 @@ pthread_rwlock_destroy(); ; return 0; } EOF -if { (eval echo configure:26562: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:26564: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_pthread_rwlock_destroy=yes" else @@ -26577,12 +26579,12 @@ else echo "$ac_t""no" 1>&6 fi echo $ac_n "checking for pthread_rwlock_rdlock""... $ac_c" 1>&6 -echo "configure:26581: checking for pthread_rwlock_rdlock" >&5 +echo "configure:26583: checking for pthread_rwlock_rdlock" >&5 if eval "test \"`echo '$''{'ac_cv_func_pthread_rwlock_rdlock'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 26586 "configure" +#line 26588 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char pthread_rwlock_rdlock(); below. */ @@ -26608,7 +26610,7 @@ pthread_rwlock_rdlock(); ; return 0; } EOF -if { (eval echo configure:26612: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:26614: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_pthread_rwlock_rdlock=yes" else @@ -26627,12 +26629,12 @@ else echo "$ac_t""no" 1>&6 fi echo $ac_n "checking for pthread_rwlock_wrlock""... $ac_c" 1>&6 -echo "configure:26631: checking for pthread_rwlock_wrlock" >&5 +echo "configure:26633: checking for pthread_rwlock_wrlock" >&5 if eval "test \"`echo '$''{'ac_cv_func_pthread_rwlock_wrlock'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 26636 "configure" +#line 26638 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char pthread_rwlock_wrlock(); below. */ @@ -26658,7 +26660,7 @@ pthread_rwlock_wrlock(); ; return 0; } EOF -if { (eval echo configure:26662: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:26664: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_pthread_rwlock_wrlock=yes" else @@ -26677,12 +26679,12 @@ else echo "$ac_t""no" 1>&6 fi echo $ac_n "checking for pthread_rwlock_unlock""... $ac_c" 1>&6 -echo "configure:26681: checking for pthread_rwlock_unlock" >&5 +echo "configure:26683: checking for pthread_rwlock_unlock" >&5 if eval "test \"`echo '$''{'ac_cv_func_pthread_rwlock_unlock'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 26686 "configure" +#line 26688 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char pthread_rwlock_unlock(); below. */ @@ -26708,7 +26710,7 @@ pthread_rwlock_unlock(); ; return 0; } EOF -if { (eval echo configure:26712: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:26714: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_pthread_rwlock_unlock=yes" else @@ -26727,12 +26729,12 @@ else echo "$ac_t""no" 1>&6 fi echo $ac_n "checking for pthread_rwlock_tryrdlock""... $ac_c" 1>&6 -echo "configure:26731: checking for pthread_rwlock_tryrdlock" >&5 +echo "configure:26733: checking for pthread_rwlock_tryrdlock" >&5 if eval "test \"`echo '$''{'ac_cv_func_pthread_rwlock_tryrdlock'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 26736 "configure" +#line 26738 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char pthread_rwlock_tryrdlock(); below. */ @@ -26758,7 +26760,7 @@ pthread_rwlock_tryrdlock(); ; return 0; } EOF -if { (eval echo configure:26762: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:26764: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_pthread_rwlock_tryrdlock=yes" else @@ -26777,12 +26779,12 @@ else echo "$ac_t""no" 1>&6 fi echo $ac_n "checking for pthread_rwlock_trywrlock""... $ac_c" 1>&6 -echo "configure:26781: checking for pthread_rwlock_trywrlock" >&5 +echo "configure:26783: checking for pthread_rwlock_trywrlock" >&5 if eval "test \"`echo '$''{'ac_cv_func_pthread_rwlock_trywrlock'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 26786 "configure" +#line 26788 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char pthread_rwlock_trywrlock(); below. */ @@ -26808,7 +26810,7 @@ pthread_rwlock_trywrlock(); ; return 0; } EOF -if { (eval echo configure:26812: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:26814: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_pthread_rwlock_trywrlock=yes" else @@ -26827,12 +26829,12 @@ else echo "$ac_t""no" 1>&6 fi echo $ac_n "checking for pthread_rwlockattr_init""... $ac_c" 1>&6 -echo "configure:26831: checking for pthread_rwlockattr_init" >&5 +echo "configure:26833: checking for pthread_rwlockattr_init" >&5 if eval "test \"`echo '$''{'ac_cv_func_pthread_rwlockattr_init'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 26836 "configure" +#line 26838 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char pthread_rwlockattr_init(); below. */ @@ -26858,7 +26860,7 @@ pthread_rwlockattr_init(); ; return 0; } EOF -if { (eval echo configure:26862: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:26864: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_pthread_rwlockattr_init=yes" else @@ -26877,12 +26879,12 @@ else echo "$ac_t""no" 1>&6 fi echo $ac_n "checking for pthread_rwlockattr_destroy""... $ac_c" 1>&6 -echo "configure:26881: checking for pthread_rwlockattr_destroy" >&5 +echo "configure:26883: checking for pthread_rwlockattr_destroy" >&5 if eval "test \"`echo '$''{'ac_cv_func_pthread_rwlockattr_destroy'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 26886 "configure" +#line 26888 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char pthread_rwlockattr_destroy(); below. */ @@ -26908,7 +26910,7 @@ pthread_rwlockattr_destroy(); ; return 0; } EOF -if { (eval echo configure:26912: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:26914: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_pthread_rwlockattr_destroy=yes" else @@ -26927,12 +26929,12 @@ else echo "$ac_t""no" 1>&6 fi echo $ac_n "checking for pthread_rwlockattr_setpshared""... $ac_c" 1>&6 -echo "configure:26931: checking for pthread_rwlockattr_setpshared" >&5 +echo "configure:26933: checking for pthread_rwlockattr_setpshared" >&5 if eval "test \"`echo '$''{'ac_cv_func_pthread_rwlockattr_setpshared'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 26936 "configure" +#line 26938 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char pthread_rwlockattr_setpshared(); below. */ @@ -26958,7 +26960,7 @@ pthread_rwlockattr_setpshared(); ; return 0; } EOF -if { (eval echo configure:26962: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:26964: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_pthread_rwlockattr_setpshared=yes" else @@ -27000,14 +27002,14 @@ EOF cat > conftest.$ac_ext <<EOF -#line 27004 "configure" +#line 27006 "configure" #include "confdefs.h" #include <pthread.h> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:27011: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:27013: \"$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* @@ -27043,19 +27045,19 @@ EOF if test pthread_self != "$ace_real_function"; then echo $ac_n "checking for real pthread_self from pthread.h""... $ac_c" 1>&6 -echo "configure:27047: checking for real pthread_self from pthread.h" >&5 +echo "configure:27049: checking for real pthread_self from pthread.h" >&5 echo "$ac_t""$ace_real_function" 1>&6 fi else ace_real_function=pthread_self fi echo $ac_n "checking for $ace_real_function""... $ac_c" 1>&6 -echo "configure:27054: checking for $ace_real_function" >&5 +echo "configure:27056: checking for $ace_real_function" >&5 if eval "test \"`echo '$''{'ac_cv_func_$ace_real_function'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 27059 "configure" +#line 27061 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ace_real_function(); below. */ @@ -27081,7 +27083,7 @@ $ace_real_function(); ; return 0; } EOF -if { (eval echo configure:27085: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:27087: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_$ace_real_function=yes" else @@ -27100,12 +27102,12 @@ else echo "$ac_t""no" 1>&6 echo $ac_n "checking for thread_self""... $ac_c" 1>&6 -echo "configure:27104: checking for thread_self" >&5 +echo "configure:27106: checking for thread_self" >&5 if eval "test \"`echo '$''{'ac_cv_func_thread_self'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 27109 "configure" +#line 27111 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char thread_self(); below. */ @@ -27131,7 +27133,7 @@ thread_self(); ; return 0; } EOF -if { (eval echo configure:27135: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:27137: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_thread_self=yes" else @@ -27162,13 +27164,13 @@ fi echo $ac_n "checking for PTHREAD_PROCESS_* enumeration in pthread.h""... $ac_c" 1>&6 -echo "configure:27166: checking for PTHREAD_PROCESS_* enumeration in pthread.h" >&5 +echo "configure:27168: checking for PTHREAD_PROCESS_* enumeration in pthread.h" >&5 if eval "test \"`echo '$''{'ace_cv_lib_pthread_process_enum'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 27172 "configure" +#line 27174 "configure" #include "confdefs.h" #include <pthread.h> @@ -27181,7 +27183,7 @@ int foo = PTHREAD_PROCESS_SHARED; ; return 0; } EOF -if { (eval echo configure:27185: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:27187: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_pthread_process_enum=yes @@ -27221,13 +27223,13 @@ EOF echo $ac_n "checking if pthread_create requires an extern \"C\" start routine""... $ac_c" 1>&6 -echo "configure:27225: checking if pthread_create requires an extern \"C\" start routine" >&5 +echo "configure:27227: checking if pthread_create requires an extern \"C\" start routine" >&5 if eval "test \"`echo '$''{'ace_cv_lib_pthread_c_func'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 27231 "configure" +#line 27233 "configure" #include "confdefs.h" #include <pthread.h> @@ -27240,7 +27242,7 @@ pthread_create(0, 0, ace_start_routine, 0); ; return 0; } EOF -if { (eval echo configure:27244: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:27246: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_pthread_c_func=no @@ -27251,7 +27253,7 @@ else rm -rf conftest* cat > conftest.$ac_ext <<EOF -#line 27255 "configure" +#line 27257 "configure" #include "confdefs.h" #include <pthread.h> @@ -27264,7 +27266,7 @@ pthread_create(0, 0, ace_start_routine, 0); ; return 0; } EOF -if { (eval echo configure:27268: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:27270: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_pthread_c_func=yes @@ -27304,7 +27306,7 @@ EOF echo $ac_n "checking if pthread_key_create has std arg thread destructor""... $ac_c" 1>&6 -echo "configure:27308: checking if pthread_key_create has std arg thread destructor" >&5 +echo "configure:27310: checking if pthread_key_create has std arg thread destructor" >&5 if eval "test \"`echo '$''{'ace_cv_lib_pthread_stdarg_dest'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -27315,7 +27317,7 @@ else ace_pthread_key_create=pthread_keycreate fi cat > conftest.$ac_ext <<EOF -#line 27319 "configure" +#line 27321 "configure" #include "confdefs.h" #include <pthread.h> @@ -27328,7 +27330,7 @@ ${ace_pthread_key_create}(0, ace_destructor); ; return 0; } EOF -if { (eval echo configure:27332: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:27334: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_pthread_stdarg_dest=no @@ -27339,7 +27341,7 @@ else rm -rf conftest* cat > conftest.$ac_ext <<EOF -#line 27343 "configure" +#line 27345 "configure" #include "confdefs.h" #include <pthread.h> @@ -27352,7 +27354,7 @@ ${ace_pthread_key_create}(0, ace_destructor); ; return 0; } EOF -if { (eval echo configure:27356: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:27358: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_pthread_stdarg_dest=yes @@ -27395,7 +27397,7 @@ EOF echo $ac_n "checking if pthread_key_create requires an extern \"C\" start routine""... $ac_c" 1>&6 -echo "configure:27399: checking if pthread_key_create requires an extern \"C\" start routine" >&5 +echo "configure:27401: checking if pthread_key_create requires an extern \"C\" start routine" >&5 if eval "test \"`echo '$''{'ace_cv_lib_pthread_c_dest'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -27406,7 +27408,7 @@ else ace_pthread_key_create=pthread_keycreate fi cat > conftest.$ac_ext <<EOF -#line 27410 "configure" +#line 27412 "configure" #include "confdefs.h" #include <pthread.h> @@ -27419,7 +27421,7 @@ ${ace_pthread_key_create}(0, ace_destructor); ; return 0; } EOF -if { (eval echo configure:27423: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:27425: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_pthread_c_dest=no @@ -27430,7 +27432,7 @@ else rm -rf conftest* cat > conftest.$ac_ext <<EOF -#line 27434 "configure" +#line 27436 "configure" #include "confdefs.h" #include <pthread.h> @@ -27443,7 +27445,7 @@ ${ace_pthread_key_create}(0, ace_destructor); ; return 0; } EOF -if { (eval echo configure:27447: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:27449: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_pthread_c_dest=yes @@ -27482,14 +27484,14 @@ EOF CXXFLAGS="$ace_pre_warning_CXXFLAGS" echo $ac_n "checking for minimum thread priority""... $ac_c" 1>&6 -echo "configure:27486: checking for minimum thread priority" >&5 +echo "configure:27488: checking for minimum thread priority" >&5 if eval "test \"`echo '$''{'ace_cv_lib_pthread_pthread_min_priority'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else ace_cv_lib_pthread_pthread_min_priority=0 cat > conftest.$ac_ext <<EOF -#line 27493 "configure" +#line 27495 "configure" #include "confdefs.h" #include <pthread.h> EOF @@ -27501,7 +27503,7 @@ fi rm -f conftest* cat > conftest.$ac_ext <<EOF -#line 27505 "configure" +#line 27507 "configure" #include "confdefs.h" #include <pthread.h> EOF @@ -27522,7 +27524,7 @@ EOF echo $ac_n "checking for maximum thread priority""... $ac_c" 1>&6 -echo "configure:27526: checking for maximum thread priority" >&5 +echo "configure:27528: checking for maximum thread priority" >&5 if eval "test \"`echo '$''{'ace_cv_lib_pthread_pthread_max_priority'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -27539,7 +27541,7 @@ else *) esac cat > conftest.$ac_ext <<EOF -#line 27543 "configure" +#line 27545 "configure" #include "confdefs.h" #include <pthread.h> EOF @@ -27551,7 +27553,7 @@ fi rm -f conftest* cat > conftest.$ac_ext <<EOF -#line 27555 "configure" +#line 27557 "configure" #include "confdefs.h" #include <pthread.h> EOF @@ -27574,12 +27576,12 @@ EOF fi if test "$ace_has_sthreads" = yes; then echo $ac_n "checking for thr_keycreate""... $ac_c" 1>&6 -echo "configure:27578: checking for thr_keycreate" >&5 +echo "configure:27580: checking for thr_keycreate" >&5 if eval "test \"`echo '$''{'ac_cv_func_thr_keycreate'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 27583 "configure" +#line 27585 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char thr_keycreate(); below. */ @@ -27605,7 +27607,7 @@ thr_keycreate(); ; return 0; } EOF -if { (eval echo configure:27609: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:27611: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_thr_keycreate=yes" else @@ -27633,12 +27635,12 @@ fi echo $ac_n "checking for thr_yield""... $ac_c" 1>&6 -echo "configure:27637: checking for thr_yield" >&5 +echo "configure:27639: checking for thr_yield" >&5 if eval "test \"`echo '$''{'ac_cv_func_thr_yield'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 27642 "configure" +#line 27644 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char thr_yield(); below. */ @@ -27664,7 +27666,7 @@ thr_yield(); ; return 0; } EOF -if { (eval echo configure:27668: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:27670: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_thr_yield=yes" else @@ -27688,12 +27690,12 @@ fi echo $ac_n "checking for thr_keydelete""... $ac_c" 1>&6 -echo "configure:27692: checking for thr_keydelete" >&5 +echo "configure:27694: checking for thr_keydelete" >&5 if eval "test \"`echo '$''{'ac_cv_func_thr_keydelete'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 27697 "configure" +#line 27699 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char thr_keydelete(); below. */ @@ -27719,7 +27721,7 @@ thr_keydelete(); ; return 0; } EOF -if { (eval echo configure:27723: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:27725: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_thr_keydelete=yes" else @@ -27743,12 +27745,12 @@ fi echo $ac_n "checking for thr_min_stack""... $ac_c" 1>&6 -echo "configure:27747: checking for thr_min_stack" >&5 +echo "configure:27749: checking for thr_min_stack" >&5 if eval "test \"`echo '$''{'ac_cv_func_thr_min_stack'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 27752 "configure" +#line 27754 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char thr_min_stack(); below. */ @@ -27774,7 +27776,7 @@ thr_min_stack(); ; return 0; } EOF -if { (eval echo configure:27778: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:27780: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_thr_min_stack=yes" else @@ -27793,12 +27795,12 @@ else echo "$ac_t""no" 1>&6 echo $ac_n "checking for thr_minstack""... $ac_c" 1>&6 -echo "configure:27797: checking for thr_minstack" >&5 +echo "configure:27799: checking for thr_minstack" >&5 if eval "test \"`echo '$''{'ac_cv_func_thr_minstack'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 27802 "configure" +#line 27804 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char thr_minstack(); below. */ @@ -27824,7 +27826,7 @@ thr_minstack(); ; return 0; } EOF -if { (eval echo configure:27828: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:27830: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_thr_minstack=yes" else @@ -27853,12 +27855,12 @@ fi fi fi echo $ac_n "checking for sigwait""... $ac_c" 1>&6 -echo "configure:27857: checking for sigwait" >&5 +echo "configure:27859: checking for sigwait" >&5 if eval "test \"`echo '$''{'ac_cv_func_sigwait'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 27862 "configure" +#line 27864 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char sigwait(); below. */ @@ -27884,7 +27886,7 @@ sigwait(); ; return 0; } EOF -if { (eval echo configure:27888: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:27890: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_sigwait=yes" else @@ -27910,12 +27912,12 @@ fi if test "$ace_user_enable_reentrant_funcs" = yes; then echo $ac_n "checking for rand_r""... $ac_c" 1>&6 -echo "configure:27914: checking for rand_r" >&5 +echo "configure:27916: checking for rand_r" >&5 if eval "test \"`echo '$''{'ac_cv_func_rand_r'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 27919 "configure" +#line 27921 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char rand_r(); below. */ @@ -27941,7 +27943,7 @@ rand_r(); ; return 0; } EOF -if { (eval echo configure:27945: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:27947: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_rand_r=yes" else @@ -27962,12 +27964,12 @@ fi echo $ac_n "checking for strtok_r""... $ac_c" 1>&6 -echo "configure:27966: checking for strtok_r" >&5 +echo "configure:27968: checking for strtok_r" >&5 if eval "test \"`echo '$''{'ac_cv_func_strtok_r'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 27971 "configure" +#line 27973 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char strtok_r(); below. */ @@ -27993,7 +27995,7 @@ strtok_r(); ; return 0; } EOF -if { (eval echo configure:27997: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:27999: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_strtok_r=yes" else @@ -28010,7 +28012,7 @@ if eval "test \"`echo '$ac_cv_func_'strtok_r`\" = yes"; then echo $ac_n "checking for strtok_r prototype""... $ac_c" 1>&6 -echo "configure:28014: checking for strtok_r prototype" >&5 +echo "configure:28016: checking for strtok_r prototype" >&5 if eval "test \"`echo '$''{'ace_cv_lib_has_strtok_r_prototype'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -28019,7 +28021,7 @@ else ace_no_posix="-U_POSIX_SOURCE" CPPFLAGS="$CPPFLAGS $ace_no_posix" cat > conftest.$ac_ext <<EOF -#line 28023 "configure" +#line 28025 "configure" #include "confdefs.h" #include <string.h> EOF @@ -28061,12 +28063,12 @@ fi echo $ac_n "checking for getpwnam_r""... $ac_c" 1>&6 -echo "configure:28065: checking for getpwnam_r" >&5 +echo "configure:28067: checking for getpwnam_r" >&5 if eval "test \"`echo '$''{'ac_cv_func_getpwnam_r'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 28070 "configure" +#line 28072 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char getpwnam_r(); below. */ @@ -28092,7 +28094,7 @@ getpwnam_r(); ; return 0; } EOF -if { (eval echo configure:28096: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:28098: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_getpwnam_r=yes" else @@ -28117,12 +28119,12 @@ fi echo $ac_n "checking for ctime_r""... $ac_c" 1>&6 -echo "configure:28121: checking for ctime_r" >&5 +echo "configure:28123: checking for ctime_r" >&5 if eval "test \"`echo '$''{'ac_cv_func_ctime_r'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 28126 "configure" +#line 28128 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char ctime_r(); below. */ @@ -28148,7 +28150,7 @@ ctime_r(); ; return 0; } EOF -if { (eval echo configure:28152: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:28154: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_ctime_r=yes" else @@ -28169,12 +28171,12 @@ fi echo $ac_n "checking for localtime_r""... $ac_c" 1>&6 -echo "configure:28173: checking for localtime_r" >&5 +echo "configure:28175: checking for localtime_r" >&5 if eval "test \"`echo '$''{'ac_cv_func_localtime_r'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 28178 "configure" +#line 28180 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char localtime_r(); below. */ @@ -28200,7 +28202,7 @@ localtime_r(); ; return 0; } EOF -if { (eval echo configure:28204: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:28206: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_localtime_r=yes" else @@ -28221,12 +28223,12 @@ fi echo $ac_n "checking for gmtime_r""... $ac_c" 1>&6 -echo "configure:28225: checking for gmtime_r" >&5 +echo "configure:28227: checking for gmtime_r" >&5 if eval "test \"`echo '$''{'ac_cv_func_gmtime_r'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 28230 "configure" +#line 28232 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char gmtime_r(); below. */ @@ -28252,7 +28254,7 @@ gmtime_r(); ; return 0; } EOF -if { (eval echo configure:28256: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:28258: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_gmtime_r=yes" else @@ -28273,12 +28275,12 @@ fi echo $ac_n "checking for asctime_r""... $ac_c" 1>&6 -echo "configure:28277: checking for asctime_r" >&5 +echo "configure:28279: checking for asctime_r" >&5 if eval "test \"`echo '$''{'ac_cv_func_asctime_r'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 28282 "configure" +#line 28284 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char asctime_r(); below. */ @@ -28304,7 +28306,7 @@ asctime_r(); ; return 0; } EOF -if { (eval echo configure:28308: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:28310: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_asctime_r=yes" else @@ -28325,12 +28327,12 @@ fi echo $ac_n "checking for getprotobyname_r""... $ac_c" 1>&6 -echo "configure:28329: checking for getprotobyname_r" >&5 +echo "configure:28331: checking for getprotobyname_r" >&5 if eval "test \"`echo '$''{'ac_cv_func_getprotobyname_r'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 28334 "configure" +#line 28336 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char getprotobyname_r(); below. */ @@ -28356,7 +28358,7 @@ getprotobyname_r(); ; return 0; } EOF -if { (eval echo configure:28360: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:28362: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_getprotobyname_r=yes" else @@ -28377,12 +28379,12 @@ fi echo $ac_n "checking for getprotobynumber_r""... $ac_c" 1>&6 -echo "configure:28381: checking for getprotobynumber_r" >&5 +echo "configure:28383: checking for getprotobynumber_r" >&5 if eval "test \"`echo '$''{'ac_cv_func_getprotobynumber_r'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 28386 "configure" +#line 28388 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char getprotobynumber_r(); below. */ @@ -28408,7 +28410,7 @@ getprotobynumber_r(); ; return 0; } EOF -if { (eval echo configure:28412: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:28414: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_getprotobynumber_r=yes" else @@ -28429,12 +28431,12 @@ fi echo $ac_n "checking for gethostbyaddr_r""... $ac_c" 1>&6 -echo "configure:28433: checking for gethostbyaddr_r" >&5 +echo "configure:28435: checking for gethostbyaddr_r" >&5 if eval "test \"`echo '$''{'ac_cv_func_gethostbyaddr_r'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 28438 "configure" +#line 28440 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char gethostbyaddr_r(); below. */ @@ -28460,7 +28462,7 @@ gethostbyaddr_r(); ; return 0; } EOF -if { (eval echo configure:28464: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:28466: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_gethostbyaddr_r=yes" else @@ -28481,12 +28483,12 @@ fi echo $ac_n "checking for gethostbyname_r""... $ac_c" 1>&6 -echo "configure:28485: checking for gethostbyname_r" >&5 +echo "configure:28487: checking for gethostbyname_r" >&5 if eval "test \"`echo '$''{'ac_cv_func_gethostbyname_r'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 28490 "configure" +#line 28492 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char gethostbyname_r(); below. */ @@ -28512,7 +28514,7 @@ gethostbyname_r(); ; return 0; } EOF -if { (eval echo configure:28516: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:28518: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_gethostbyname_r=yes" else @@ -28533,12 +28535,12 @@ fi echo $ac_n "checking for getservbyname_r""... $ac_c" 1>&6 -echo "configure:28537: checking for getservbyname_r" >&5 +echo "configure:28539: checking for getservbyname_r" >&5 if eval "test \"`echo '$''{'ac_cv_func_getservbyname_r'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 28542 "configure" +#line 28544 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char getservbyname_r(); below. */ @@ -28564,7 +28566,7 @@ getservbyname_r(); ; return 0; } EOF -if { (eval echo configure:28568: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:28570: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_getservbyname_r=yes" else @@ -28585,12 +28587,12 @@ fi fi echo $ac_n "checking for readdir_r""... $ac_c" 1>&6 -echo "configure:28589: checking for readdir_r" >&5 +echo "configure:28591: 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 <<EOF -#line 28594 "configure" +#line 28596 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char readdir_r(); below. */ @@ -28616,7 +28618,7 @@ readdir_r(); ; return 0; } EOF -if { (eval echo configure:28620: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:28622: \"$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 @@ -28641,12 +28643,12 @@ fi echo $ac_n "checking for seekdir""... $ac_c" 1>&6 -echo "configure:28645: checking for seekdir" >&5 +echo "configure:28647: checking for seekdir" >&5 if eval "test \"`echo '$''{'ac_cv_func_seekdir'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 28650 "configure" +#line 28652 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char seekdir(); below. */ @@ -28672,7 +28674,7 @@ seekdir(); ; return 0; } EOF -if { (eval echo configure:28676: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:28678: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_seekdir=yes" else @@ -28697,12 +28699,12 @@ fi echo $ac_n "checking for telldir""... $ac_c" 1>&6 -echo "configure:28701: checking for telldir" >&5 +echo "configure:28703: checking for telldir" >&5 if eval "test \"`echo '$''{'ac_cv_func_telldir'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 28706 "configure" +#line 28708 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char telldir(); below. */ @@ -28728,7 +28730,7 @@ telldir(); ; return 0; } EOF -if { (eval echo configure:28732: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:28734: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_telldir=yes" else @@ -28763,13 +28765,13 @@ fi if test "$ace_has_svr4_dynamic_linking" = yes; then echo $ac_n "checking if dlopen takes a char *""... $ac_c" 1>&6 -echo "configure:28767: checking if dlopen takes a char *" >&5 +echo "configure:28769: checking if dlopen takes a char *" >&5 if eval "test \"`echo '$''{'ace_cv_lib_charptr_dl'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 28773 "configure" +#line 28775 "configure" #include "confdefs.h" #include <dlfcn.h> @@ -28782,7 +28784,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:28786: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:28788: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_charptr_dl=no @@ -28793,7 +28795,7 @@ else rm -rf conftest* cat > conftest.$ac_ext <<EOF -#line 28797 "configure" +#line 28799 "configure" #include "confdefs.h" #include <dlfcn.h> @@ -28806,7 +28808,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:28810: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:28812: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_charptr_dl=yes @@ -28851,13 +28853,13 @@ EOF if test "$ac_cv_func_gethostbyaddr" = yes; then echo $ac_n "checking \"getby\" functions take a non-const char *""... $ac_c" 1>&6 -echo "configure:28855: checking \"getby\" functions take a non-const char *" >&5 +echo "configure:28857: checking \"getby\" functions take a non-const char *" >&5 if eval "test \"`echo '$''{'ace_cv_lib_nonconst_getby'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 28861 "configure" +#line 28863 "configure" #include "confdefs.h" #include <sys/socket.h> @@ -28873,7 +28875,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:28877: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:28879: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_nonconst_getby=yes @@ -28909,7 +28911,7 @@ EOF if test "$ace_user_enable_exceptions" = yes; then echo $ac_n "checking if new throws bad_alloc exception on failure""... $ac_c" 1>&6 -echo "configure:28913: checking if new throws bad_alloc exception on failure" >&5 +echo "configure:28915: checking if new throws bad_alloc exception on failure" >&5 if eval "test \"`echo '$''{'ace_cv_new_throws_bad_alloc_exception'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -28920,7 +28922,7 @@ else else cat > conftest.$ac_ext <<EOF -#line 28924 "configure" +#line 28926 "configure" #include "confdefs.h" #ifdef __cplusplus extern "C" void exit(int); @@ -28957,7 +28959,7 @@ extern "C" void exit(int); } EOF -if { (eval echo configure:28961: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:28963: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null then ace_cv_new_throws_bad_alloc_exception=yes @@ -28992,7 +28994,7 @@ EOF if test "$ace_cv_new_throws_bad_alloc_exception" != yes; then echo $ac_n "checking if new throws xalloc exception on failure""... $ac_c" 1>&6 -echo "configure:28996: checking if new throws xalloc exception on failure" >&5 +echo "configure:28998: checking if new throws xalloc exception on failure" >&5 if eval "test \"`echo '$''{'ace_cv_new_throws_xalloc_exception'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -29003,7 +29005,7 @@ else else cat > conftest.$ac_ext <<EOF -#line 29007 "configure" +#line 29009 "configure" #include "confdefs.h" #ifdef __cplusplus extern "C" void exit(int); @@ -29040,7 +29042,7 @@ extern "C" void exit(int); } EOF -if { (eval echo configure:29044: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:29046: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null then ace_cv_new_throws_xalloc_exception=yes @@ -29082,13 +29084,13 @@ EOF test "$ac_cv_header_stropts_h" = yes; then echo $ac_n "checking if putmsg takes a const struct strbuf*""... $ac_c" 1>&6 -echo "configure:29086: checking if putmsg takes a const struct strbuf*" >&5 +echo "configure:29088: checking if putmsg takes a const struct strbuf*" >&5 if eval "test \"`echo '$''{'ace_cv_lib_const_strbufptr'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 29092 "configure" +#line 29094 "configure" #include "confdefs.h" #include <stropts.h> @@ -29104,7 +29106,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:29108: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:29110: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_const_strbufptr=yes @@ -29146,13 +29148,13 @@ EOF echo $ac_n "checking if select takes int instead of fd_set""... $ac_c" 1>&6 -echo "configure:29150: checking if select takes int instead of fd_set" >&5 +echo "configure:29152: checking if select takes int instead of fd_set" >&5 if eval "test \"`echo '$''{'ace_cv_lib_select_takes_int'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 29156 "configure" +#line 29158 "configure" #include "confdefs.h" #ifndef ACE_LACKS_SYS_TYPES_H @@ -29179,7 +29181,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:29183: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:29185: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_select_takes_int=no @@ -29190,7 +29192,7 @@ else rm -rf conftest* cat > conftest.$ac_ext <<EOF -#line 29194 "configure" +#line 29196 "configure" #include "confdefs.h" #ifndef ACE_LACKS_SYS_TYPES_H @@ -29217,7 +29219,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:29221: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:29223: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_select_takes_int=yes @@ -29257,9 +29259,9 @@ EOF if test "$ac_cv_func_setrlimit" = yes; then echo $ac_n "checking if setrlimit() takes an enum as 1st argument""... $ac_c" 1>&6 -echo "configure:29261: checking if setrlimit() takes an enum as 1st argument" >&5 +echo "configure:29263: checking if setrlimit() takes an enum as 1st argument" >&5 cat > conftest.$ac_ext <<EOF -#line 29263 "configure" +#line 29265 "configure" #include "confdefs.h" #include <sys/resource.h> EOF @@ -29310,13 +29312,13 @@ fi echo $ac_n "checking if setrlimit() takes a const pointer as 2nd argument""... $ac_c" 1>&6 -echo "configure:29314: checking if setrlimit() takes a const pointer as 2nd argument" >&5 +echo "configure:29316: checking if setrlimit() takes a const pointer as 2nd argument" >&5 if eval "test \"`echo '$''{'ace_cv_lib_posix_setrlimit_const_2'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 29320 "configure" +#line 29322 "configure" #include "confdefs.h" #include <sys/resource.h> @@ -29328,7 +29330,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:29332: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:29334: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_posix_setrlimit_const_2=yes @@ -29365,9 +29367,9 @@ EOF if test "$ac_cv_func_getrusage" = yes; then echo $ac_n "checking if getrusage() takes an enum as 1st argument""... $ac_c" 1>&6 -echo "configure:29369: checking if getrusage() takes an enum as 1st argument" >&5 +echo "configure:29371: checking if getrusage() takes an enum as 1st argument" >&5 cat > conftest.$ac_ext <<EOF -#line 29371 "configure" +#line 29373 "configure" #include "confdefs.h" #include <sys/resource.h> EOF @@ -29417,13 +29419,13 @@ fi echo $ac_n "checking if select takes a const fifth argument""... $ac_c" 1>&6 -echo "configure:29421: checking if select takes a const fifth argument" >&5 +echo "configure:29423: checking if select takes a const fifth argument" >&5 if eval "test \"`echo '$''{'ace_cv_lib_posix_select_const_5'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 29427 "configure" +#line 29429 "configure" #include "confdefs.h" #ifndef ACE_LACKS_SYS_TYPES_H @@ -29448,7 +29450,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:29452: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:29454: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_posix_select_const_5=yes @@ -29492,13 +29494,13 @@ if test "$ace_cv_struct_msghdr" = yes && echo $ac_n "checking if sendmsg omits the const from the second argument""... $ac_c" 1>&6 -echo "configure:29496: checking if sendmsg omits the const from the second argument" >&5 +echo "configure:29498: checking if sendmsg omits the const from the second argument" >&5 if eval "test \"`echo '$''{'ace_cv_lib_broken_sendmsg'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 29502 "configure" +#line 29504 "configure" #include "confdefs.h" #ifndef ACE_LACKS_SYS_TYPES_H @@ -29518,7 +29520,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:29522: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:29524: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_broken_sendmsg=no @@ -29561,13 +29563,13 @@ if test "$ac_cv_header_sys_uio_h" = yes && echo $ac_n "checking if writev omits the const from the iovec argument""... $ac_c" 1>&6 -echo "configure:29565: checking if writev omits the const from the iovec argument" >&5 +echo "configure:29567: checking if writev omits the const from the iovec argument" >&5 if eval "test \"`echo '$''{'ace_cv_lib_broken_writev'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 29571 "configure" +#line 29573 "configure" #include "confdefs.h" #ifdef ACE_HAS_UNISTD_H @@ -29588,7 +29590,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:29592: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:29594: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_broken_writev=no @@ -29630,13 +29632,13 @@ EOF echo $ac_n "checking if socket size is denoted by size_t""... $ac_c" 1>&6 -echo "configure:29634: checking if socket size is denoted by size_t" >&5 +echo "configure:29636: checking if socket size is denoted by size_t" >&5 if eval "test \"`echo '$''{'ace_cv_lib_posix_socket_len_size_t'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 29640 "configure" +#line 29642 "configure" #include "confdefs.h" #ifndef ACE_LACKS_SYS_TYPES_H @@ -29653,7 +29655,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:29657: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:29659: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_posix_socket_len_size_t=no @@ -29664,7 +29666,7 @@ else rm -rf conftest* cat > conftest.$ac_ext <<EOF -#line 29668 "configure" +#line 29670 "configure" #include "confdefs.h" #ifndef ACE_LACKS_SYS_TYPES_H @@ -29681,7 +29683,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:29685: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:29687: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_posix_socket_len_size_t=yes @@ -29725,13 +29727,13 @@ EOF echo $ac_n "checking for (struct sockaddr *) msg_name field""... $ac_c" 1>&6 -echo "configure:29729: checking for (struct sockaddr *) msg_name field" >&5 +echo "configure:29731: checking for (struct sockaddr *) msg_name field" >&5 if eval "test \"`echo '$''{'ace_cv_lib_sockaddr_msg_name'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 29735 "configure" +#line 29737 "configure" #include "confdefs.h" #ifndef ACE_LACKS_SYS_TYPES_H @@ -29748,7 +29750,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:29752: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:29754: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_sockaddr_msg_name=yes @@ -29790,13 +29792,13 @@ EOF echo $ac_n "checking if setsockopt() takes a char* fourth argument""... $ac_c" 1>&6 -echo "configure:29794: checking if setsockopt() takes a char* fourth argument" >&5 +echo "configure:29796: checking if setsockopt() takes a char* fourth argument" >&5 if eval "test \"`echo '$''{'ace_cv_lib_posix_setsockopt_charp_4'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 29800 "configure" +#line 29802 "configure" #include "confdefs.h" #ifndef ACE_LACKS_SYS_TYPES_H @@ -29819,7 +29821,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:29823: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:29825: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_posix_setsockopt_charp_4=yes @@ -29860,13 +29862,13 @@ EOF echo $ac_n "checking if setsockopt() takes a void* fourth argument""... $ac_c" 1>&6 -echo "configure:29864: checking if setsockopt() takes a void* fourth argument" >&5 +echo "configure:29866: checking if setsockopt() takes a void* fourth argument" >&5 if eval "test \"`echo '$''{'ace_cv_lib_posix_setsockopt_voidp_4'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 29870 "configure" +#line 29872 "configure" #include "confdefs.h" #ifndef ACE_LACKS_SYS_TYPES_H @@ -29889,7 +29891,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:29893: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:29895: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_posix_setsockopt_voidp_4=yes @@ -29930,13 +29932,13 @@ EOF echo $ac_n "checking if mmap() takes a void* first argument""... $ac_c" 1>&6 -echo "configure:29934: checking if mmap() takes a void* first argument" >&5 +echo "configure:29936: checking if mmap() takes a void* first argument" >&5 if eval "test \"`echo '$''{'ace_cv_lib_posix_voidptr_mmap'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 29940 "configure" +#line 29942 "configure" #include "confdefs.h" #ifndef ACE_LACKS_SYS_TYPES_H @@ -29962,7 +29964,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:29966: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:29968: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_posix_voidptr_mmap=yes @@ -29998,13 +30000,13 @@ EOF if test "$ac_cv_func_msync" = yes; then echo $ac_n "checking if msync accepts a third "sync" argument""... $ac_c" 1>&6 -echo "configure:30002: checking if msync accepts a third "sync" argument" >&5 +echo "configure:30004: checking if msync accepts a third "sync" argument" >&5 if eval "test \"`echo '$''{'ace_cv_lib_broken_msync'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 30008 "configure" +#line 30010 "configure" #include "confdefs.h" #include <sys/mman.h> @@ -30028,7 +30030,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:30032: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:30034: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_broken_msync=no @@ -30039,7 +30041,7 @@ else rm -rf conftest* cat > conftest.$ac_ext <<EOF -#line 30043 "configure" +#line 30045 "configure" #include "confdefs.h" #include <sys/mman.h> @@ -30062,7 +30064,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:30066: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:30068: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_broken_msync=yes @@ -30097,13 +30099,13 @@ EOF fi echo $ac_n "checking for iostream method ipfx()""... $ac_c" 1>&6 -echo "configure:30101: checking for iostream method ipfx()" >&5 +echo "configure:30103: checking for iostream method ipfx()" >&5 if eval "test \"`echo '$''{'ace_cv_feature_has_iostream_ipfx'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 30107 "configure" +#line 30109 "configure" #include "confdefs.h" #include <iostream.h> @@ -30114,7 +30116,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:30118: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:30120: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_feature_has_iostream_ipfx=yes @@ -30147,13 +30149,13 @@ EOF echo $ac_n "checking for line-buffered streambufs""... $ac_c" 1>&6 -echo "configure:30151: checking for line-buffered streambufs" >&5 +echo "configure:30153: checking for line-buffered streambufs" >&5 if eval "test \"`echo '$''{'ace_cv_feature_has_linebuffered_streambuf'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 30157 "configure" +#line 30159 "configure" #include "confdefs.h" #include <iostream.h> @@ -30164,7 +30166,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:30168: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:30170: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_feature_has_linebuffered_streambuf=yes @@ -30197,13 +30199,13 @@ EOF echo $ac_n "checking for unbuffered streambufs""... $ac_c" 1>&6 -echo "configure:30201: checking for unbuffered streambufs" >&5 +echo "configure:30203: checking for unbuffered streambufs" >&5 if eval "test \"`echo '$''{'ace_cv_feature_has_unbuffered_streambuf'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 30207 "configure" +#line 30209 "configure" #include "confdefs.h" #include <iostream.h> @@ -30214,7 +30216,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:30218: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:30220: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_feature_has_unbuffered_streambuf=yes @@ -30254,13 +30256,13 @@ EOF echo $ac_n "checking if signal takes a void (*)(int) as second argument""... $ac_c" 1>&6 -echo "configure:30258: checking if signal takes a void (*)(int) as second argument" >&5 +echo "configure:30260: checking if signal takes a void (*)(int) as second argument" >&5 if eval "test \"`echo '$''{'ace_cv_lib_signal_vi1_2'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 30264 "configure" +#line 30266 "configure" #include "confdefs.h" #include <signal.h> @@ -30274,7 +30276,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:30278: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:30280: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_signal_vi1_2=yes @@ -30285,7 +30287,7 @@ else rm -rf conftest* cat > conftest.$ac_ext <<EOF -#line 30289 "configure" +#line 30291 "configure" #include "confdefs.h" #include <signal.h> @@ -30302,7 +30304,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:30306: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:30308: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_signal_vi1_2=yes @@ -30348,13 +30350,13 @@ EOF echo $ac_n "checking if signal takes a void (*)(void) as second argument""... $ac_c" 1>&6 -echo "configure:30352: checking if signal takes a void (*)(void) as second argument" >&5 +echo "configure:30354: checking if signal takes a void (*)(void) as second argument" >&5 if eval "test \"`echo '$''{'ace_cv_lib_signal_vv1_2'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 30358 "configure" +#line 30360 "configure" #include "confdefs.h" #include <signal.h> @@ -30368,7 +30370,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:30372: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:30374: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_signal_vv1_2=yes @@ -30379,7 +30381,7 @@ else rm -rf conftest* cat > conftest.$ac_ext <<EOF -#line 30383 "configure" +#line 30385 "configure" #include "confdefs.h" #include <signal.h> @@ -30396,7 +30398,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:30400: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:30402: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_signal_vv1_2=yes @@ -30442,13 +30444,13 @@ EOF echo $ac_n "checking if signal takes a void (*)(int, ...) as second argument""... $ac_c" 1>&6 -echo "configure:30446: checking if signal takes a void (*)(int, ...) as second argument" >&5 +echo "configure:30448: checking if signal takes a void (*)(int, ...) as second argument" >&5 if eval "test \"`echo '$''{'ace_cv_lib_signal_vi1a2_2'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 30452 "configure" +#line 30454 "configure" #include "confdefs.h" #include <signal.h> @@ -30462,7 +30464,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:30466: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:30468: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_signal_vi1a2_2=yes @@ -30473,7 +30475,7 @@ else rm -rf conftest* cat > conftest.$ac_ext <<EOF -#line 30477 "configure" +#line 30479 "configure" #include "confdefs.h" #include <signal.h> @@ -30490,7 +30492,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:30494: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:30496: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_signal_vi1a2_2=yes @@ -30536,13 +30538,13 @@ EOF echo $ac_n "checking if signal takes a void (*)(...) as second argument""... $ac_c" 1>&6 -echo "configure:30540: checking if signal takes a void (*)(...) as second argument" >&5 +echo "configure:30542: checking if signal takes a void (*)(...) as second argument" >&5 if eval "test \"`echo '$''{'ace_cv_lib_signal_va1_2'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 30546 "configure" +#line 30548 "configure" #include "confdefs.h" #include <signal.h> @@ -30556,7 +30558,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:30560: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:30562: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_signal_va1_2=yes @@ -30567,7 +30569,7 @@ else rm -rf conftest* cat > conftest.$ac_ext <<EOF -#line 30571 "configure" +#line 30573 "configure" #include "confdefs.h" #include <signal.h> @@ -30584,7 +30586,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:30588: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:30590: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_signal_va1_2=yes @@ -30623,13 +30625,13 @@ EOF CXXFLAGS="$ace_pre_warning_CXXFLAGS" echo $ac_n "checking if signal returns a void (*)(int)""... $ac_c" 1>&6 -echo "configure:30627: checking if signal returns a void (*)(int)" >&5 +echo "configure:30629: checking if signal returns a void (*)(int)" >&5 if eval "test \"`echo '$''{'ace_cv_lib_signal_vi1_ret'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 30633 "configure" +#line 30635 "configure" #include "confdefs.h" #include <signal.h> @@ -30645,7 +30647,7 @@ foo(nn); ; return 0; } EOF -if { (eval echo configure:30649: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:30651: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_signal_vi1_ret=yes @@ -30665,13 +30667,13 @@ fi echo "$ac_t""$ace_cv_lib_signal_vi1_ret" 1>&6 echo $ac_n "checking if signal returns a void (*)(void)""... $ac_c" 1>&6 -echo "configure:30669: checking if signal returns a void (*)(void)" >&5 +echo "configure:30671: checking if signal returns a void (*)(void)" >&5 if eval "test \"`echo '$''{'ace_cv_lib_signal_vv1_ret'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 30675 "configure" +#line 30677 "configure" #include "confdefs.h" #include <signal.h> @@ -30687,7 +30689,7 @@ foo(nn); ; return 0; } EOF -if { (eval echo configure:30691: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:30693: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_signal_vv1_ret=yes @@ -30707,13 +30709,13 @@ fi echo "$ac_t""$ace_cv_lib_signal_vv1_ret" 1>&6 echo $ac_n "checking if signal returns a void (*)(int, ...)""... $ac_c" 1>&6 -echo "configure:30711: checking if signal returns a void (*)(int, ...)" >&5 +echo "configure:30713: checking if signal returns a void (*)(int, ...)" >&5 if eval "test \"`echo '$''{'ace_cv_lib_signal_vi1a2_ret'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 30717 "configure" +#line 30719 "configure" #include "confdefs.h" #include <signal.h> @@ -30726,7 +30728,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:30730: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:30732: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_signal_vi1a2_ret=yes @@ -30746,13 +30748,13 @@ fi echo "$ac_t""$ace_cv_lib_signal_vi1a2_ret" 1>&6 echo $ac_n "checking if signal returns a void (*)(...)""... $ac_c" 1>&6 -echo "configure:30750: checking if signal returns a void (*)(...)" >&5 +echo "configure:30752: checking if signal returns a void (*)(...)" >&5 if eval "test \"`echo '$''{'ace_cv_lib_signal_va1_ret'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 30756 "configure" +#line 30758 "configure" #include "confdefs.h" #include <signal.h> @@ -30765,7 +30767,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:30769: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:30771: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_signal_va1_ret=yes @@ -30786,13 +30788,13 @@ echo "$ac_t""$ace_cv_lib_signal_va1_ret" 1>&6 if test "$ace_cv_struct_sigaction" = yes; then echo $ac_n "checking if struct sigaction takes a void (*)(int) handler""... $ac_c" 1>&6 -echo "configure:30790: checking if struct sigaction takes a void (*)(int) handler" >&5 +echo "configure:30792: checking if struct sigaction takes a void (*)(int) handler" >&5 if eval "test \"`echo '$''{'ace_cv_lib_struct_sigaction_vi1_handler'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 30796 "configure" +#line 30798 "configure" #include "confdefs.h" #include <signal.h> @@ -30808,7 +30810,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:30812: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:30814: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_struct_sigaction_vi1_handler=yes @@ -30828,13 +30830,13 @@ fi echo "$ac_t""$ace_cv_lib_struct_sigaction_vi1_handler" 1>&6 echo $ac_n "checking if struct sigaction takes a void (*)(void) handler""... $ac_c" 1>&6 -echo "configure:30832: checking if struct sigaction takes a void (*)(void) handler" >&5 +echo "configure:30834: checking if struct sigaction takes a void (*)(void) handler" >&5 if eval "test \"`echo '$''{'ace_cv_lib_struct_sigaction_vv1_handler'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 30838 "configure" +#line 30840 "configure" #include "confdefs.h" #include <signal.h> @@ -30850,7 +30852,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:30854: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:30856: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_struct_sigaction_vv1_handler=yes @@ -30870,13 +30872,13 @@ fi echo "$ac_t""$ace_cv_lib_struct_sigaction_vv1_handler" 1>&6 echo $ac_n "checking if struct sigaction takes a void (*)(int, ...) handler""... $ac_c" 1>&6 -echo "configure:30874: checking if struct sigaction takes a void (*)(int, ...) handler" >&5 +echo "configure:30876: checking if struct sigaction takes a void (*)(int, ...) handler" >&5 if eval "test \"`echo '$''{'ace_cv_lib_struct_sigaction_vi1a2_handler'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 30880 "configure" +#line 30882 "configure" #include "confdefs.h" #include <signal.h> @@ -30892,7 +30894,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:30896: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:30898: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_struct_sigaction_vi1a2_handler=yes @@ -30912,13 +30914,13 @@ fi echo "$ac_t""$ace_cv_lib_struct_sigaction_vi1a2_handler" 1>&6 echo $ac_n "checking if struct sigaction takes a void (*)(...) handler""... $ac_c" 1>&6 -echo "configure:30916: checking if struct sigaction takes a void (*)(...) handler" >&5 +echo "configure:30918: checking if struct sigaction takes a void (*)(...) handler" >&5 if eval "test \"`echo '$''{'ace_cv_lib_struct_sigaction_va1_handler'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 30922 "configure" +#line 30924 "configure" #include "confdefs.h" #include <signal.h> @@ -30934,7 +30936,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:30938: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:30940: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_struct_sigaction_va1_handler=yes @@ -30961,13 +30963,13 @@ fi echo $ac_n "checking if msgsnd() takes a struct msgbuf* second argument""... $ac_c" 1>&6 -echo "configure:30965: checking if msgsnd() takes a struct msgbuf* second argument" >&5 +echo "configure:30967: checking if msgsnd() takes a struct msgbuf* second argument" >&5 if eval "test \"`echo '$''{'ace_cv_lib_posix_msgsnd_msgbufp_2'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 30971 "configure" +#line 30973 "configure" #include "confdefs.h" #ifndef ACE_LACKS_SYS_TYPES_H @@ -30988,7 +30990,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:30992: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:30994: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_posix_msgsnd_msgbufp_2=yes @@ -31015,13 +31017,13 @@ fi echo $ac_n "checking if msgsnd() takes a const void* second argument""... $ac_c" 1>&6 -echo "configure:31019: checking if msgsnd() takes a const void* second argument" >&5 +echo "configure:31021: checking if msgsnd() takes a const void* second argument" >&5 if eval "test \"`echo '$''{'ace_cv_lib_posix_msgsnd_cvoidp_2'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 31025 "configure" +#line 31027 "configure" #include "confdefs.h" #ifndef ACE_LACKS_SYS_TYPES_H @@ -31042,7 +31044,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:31046: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:31048: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_posix_msgsnd_cvoidp_2=yes @@ -31090,13 +31092,13 @@ EOF echo $ac_n "checking if msgrcv() takes a void* second argument""... $ac_c" 1>&6 -echo "configure:31094: checking if msgrcv() takes a void* second argument" >&5 +echo "configure:31096: checking if msgrcv() takes a void* second argument" >&5 if eval "test \"`echo '$''{'ace_cv_lib_posix_msgrcv_voidp_2'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 31100 "configure" +#line 31102 "configure" #include "confdefs.h" #ifndef ACE_LACKS_SYS_TYPES_H @@ -31118,7 +31120,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:31122: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:31124: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_posix_msgrcv_voidp_2=yes @@ -31147,13 +31149,13 @@ echo "$ac_t""$ace_cv_lib_posix_msgrcv_voidp_2" 1>&6 echo $ac_n "checking if shmat() takes a void* second argument""... $ac_c" 1>&6 -echo "configure:31151: checking if shmat() takes a void* second argument" >&5 +echo "configure:31153: checking if shmat() takes a void* second argument" >&5 if eval "test \"`echo '$''{'ace_cv_lib_posix_shmat_voidp_2'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 31157 "configure" +#line 31159 "configure" #include "confdefs.h" #ifndef ACE_LACKS_SYS_TYPES_H @@ -31170,7 +31172,7 @@ int shmid; ; return 0; } EOF -if { (eval echo configure:31174: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:31176: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_posix_shmat_voidp_2=yes @@ -31199,13 +31201,13 @@ echo "$ac_t""$ace_cv_lib_posix_shmat_voidp_2" 1>&6 echo $ac_n "checking if sigaction() takes a const* second argument""... $ac_c" 1>&6 -echo "configure:31203: checking if sigaction() takes a const* second argument" >&5 +echo "configure:31205: checking if sigaction() takes a const* second argument" >&5 if eval "test \"`echo '$''{'ace_cv_lib_posix_sigaction_constp_2'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 31209 "configure" +#line 31211 "configure" #include "confdefs.h" #include <signal.h> @@ -31219,7 +31221,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:31223: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:31225: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_posix_sigaction_constp_2=yes @@ -31243,13 +31245,13 @@ echo "$ac_t""$ace_cv_lib_posix_sigaction_constp_2" 1>&6 echo $ac_n "checking if wait() takes a (union wait *) rather than int *""... $ac_c" 1>&6 -echo "configure:31247: checking if wait() takes a (union wait *) rather than int *" >&5 +echo "configure:31249: checking if wait() takes a (union wait *) rather than int *" >&5 if eval "test \"`echo '$''{'ace_cv_lib_wait_takes_union_wait_ptr'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 31253 "configure" +#line 31255 "configure" #include "confdefs.h" #include <sys/wait.h> @@ -31262,7 +31264,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:31266: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:31268: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_wait_takes_union_wait_ptr=no @@ -31273,7 +31275,7 @@ else rm -rf conftest* cat > conftest.$ac_ext <<EOF -#line 31277 "configure" +#line 31279 "configure" #include "confdefs.h" #include <sys/wait.h> @@ -31286,7 +31288,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:31290: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:31292: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_wait_takes_union_wait_ptr=yes @@ -31328,13 +31330,13 @@ EOF echo $ac_n "checking if gettimeofday() takes a void * second argument""... $ac_c" 1>&6 -echo "configure:31332: checking if gettimeofday() takes a void * second argument" >&5 +echo "configure:31334: checking if gettimeofday() takes a void * second argument" >&5 if eval "test \"`echo '$''{'ace_cv_lib_voidptr_gettimeofday'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 31338 "configure" +#line 31340 "configure" #include "confdefs.h" #include <sys/time.h> @@ -31351,7 +31353,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:31355: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:31357: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_voidptr_gettimeofday=yes @@ -31381,13 +31383,13 @@ if test "$ace_cv_lib_voidptr_gettimeofday" = no; then echo $ac_n "checking if gettimeofday() takes a timezone * second argument""... $ac_c" 1>&6 -echo "configure:31385: checking if gettimeofday() takes a timezone * second argument" >&5 +echo "configure:31387: checking if gettimeofday() takes a timezone * second argument" >&5 if eval "test \"`echo '$''{'ace_cv_lib_timezone_gettimeofday'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 31391 "configure" +#line 31393 "configure" #include "confdefs.h" #include <sys/time.h> @@ -31404,7 +31406,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:31408: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:31410: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_timezone_gettimeofday=yes @@ -31430,13 +31432,13 @@ if test "$ace_cv_lib_voidptr_gettimeofday" = yes || test "$ace_cv_lib_timezone_gettimeofday" = yes; then echo $ac_n "checking for gettimeofday() protoype""... $ac_c" 1>&6 -echo "configure:31434: checking for gettimeofday() protoype" >&5 +echo "configure:31436: checking for gettimeofday() protoype" >&5 if eval "test \"`echo '$''{'ace_cv_lib_has_gettimeofday_prototype'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 31440 "configure" +#line 31442 "configure" #include "confdefs.h" #include <time.h> @@ -31502,13 +31504,13 @@ fi if test "$ac_cv_func_ctime_r" = yes; then echo $ac_n "checking if ctime_r() takes two arguments""... $ac_c" 1>&6 -echo "configure:31506: checking if ctime_r() takes two arguments" >&5 +echo "configure:31508: checking if ctime_r() takes two arguments" >&5 if eval "test \"`echo '$''{'ace_cv_lib_posix_ctime_r_2_params'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 31512 "configure" +#line 31514 "configure" #include "confdefs.h" #ifndef _REENTRANT @@ -31529,7 +31531,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:31533: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:31535: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_posix_ctime_r_2_params=yes @@ -31565,13 +31567,13 @@ if test "$ace_cv_struct_msghdr" = yes; then echo $ac_n "checking if struct msghdr has a msg_accrights member""... $ac_c" 1>&6 -echo "configure:31569: checking if struct msghdr has a msg_accrights member" >&5 +echo "configure:31571: checking if struct msghdr has a msg_accrights member" >&5 if eval "test \"`echo '$''{'ace_cv_lib_posix_struct_msghdr_has_msg_accrights'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 31575 "configure" +#line 31577 "configure" #include "confdefs.h" #ifndef ACE_LACKS_SYS_TYPES_H @@ -31586,7 +31588,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:31590: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:31592: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_posix_struct_msghdr_has_msg_accrights=yes @@ -31615,13 +31617,13 @@ fi echo $ac_n "checking if struct msghdr has a msg_accrightslen member""... $ac_c" 1>&6 -echo "configure:31619: checking if struct msghdr has a msg_accrightslen member" >&5 +echo "configure:31621: checking if struct msghdr has a msg_accrightslen member" >&5 if eval "test \"`echo '$''{'ace_cv_lib_posix_struct_msghdr_has_msg_accrightslen'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 31625 "configure" +#line 31627 "configure" #include "confdefs.h" #ifndef ACE_LACKS_SYS_TYPES_H @@ -31636,7 +31638,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:31640: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:31642: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_posix_struct_msghdr_has_msg_accrightslen=yes @@ -31671,13 +31673,13 @@ EOF echo $ac_n "checking for 4.4 BSD style struct msghdr""... $ac_c" 1>&6 -echo "configure:31675: checking for 4.4 BSD style struct msghdr" >&5 +echo "configure:31677: checking for 4.4 BSD style struct msghdr" >&5 if eval "test \"`echo '$''{'ace_cv_lib_4_4bsd_msghdr'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 31681 "configure" +#line 31683 "configure" #include "confdefs.h" #include <sys/socket.h> EOF @@ -31720,13 +31722,13 @@ EOF if test "$ace_cv_lib_4_4bsd_msghdr" = yes; then echo $ac_n "checking if CMSG_DATA is defined""... $ac_c" 1>&6 -echo "configure:31724: checking if CMSG_DATA is defined" >&5 +echo "configure:31726: checking if CMSG_DATA is defined" >&5 if eval "test \"`echo '$''{'ace_cv_lib_cmsg_data'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 31730 "configure" +#line 31732 "configure" #include "confdefs.h" #ifndef ACE_LACKS_SYS_TYPES_H @@ -31751,7 +31753,7 @@ else ace_cv_lib_cmsg_data=no cat > conftest.$ac_ext <<EOF -#line 31755 "configure" +#line 31757 "configure" #include "confdefs.h" #ifndef ACE_LACKS_SYS_TYPES_H @@ -31770,7 +31772,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:31774: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:31776: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* @@ -31780,7 +31782,7 @@ else rm -rf conftest* cat > conftest.$ac_ext <<EOF -#line 31784 "configure" +#line 31786 "configure" #include "confdefs.h" #ifndef ACE_LACKS_SYS_TYPES_H @@ -31799,7 +31801,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:31803: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:31805: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* { echo "configure: error: cmsgmdr member '__cmsg_data0' not supported by ACE's CMSG_DATA macro" 1>&2; exit 1; } @@ -31810,7 +31812,7 @@ else rm -rf conftest* cat > conftest.$ac_ext <<EOF -#line 31814 "configure" +#line 31816 "configure" #include "confdefs.h" #ifndef ACE_LACKS_SYS_TYPES_H @@ -31825,7 +31827,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:31829: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:31831: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* if eval "test \"`echo '$''{'ace_cv_lib_cmsg_data_member'+set}'`\" = set"; then @@ -31885,13 +31887,13 @@ fi echo $ac_n "checking for ctime() macro""... $ac_c" 1>&6 -echo "configure:31889: checking for ctime() macro" >&5 +echo "configure:31891: checking for ctime() macro" >&5 if eval "test \"`echo '$''{'ace_cv_feature_have_ctime_macro'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 31895 "configure" +#line 31897 "configure" #include "confdefs.h" #include <time.h> @@ -31937,13 +31939,13 @@ EOF echo $ac_n "checking for reentrant function macros""... $ac_c" 1>&6 -echo "configure:31941: checking for reentrant function macros" >&5 +echo "configure:31943: checking for reentrant function macros" >&5 if eval "test \"`echo '$''{'ace_cv_feature_has_broken_r_routines'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 31947 "configure" +#line 31949 "configure" #include "confdefs.h" #ifndef _REENTRANT @@ -32000,13 +32002,13 @@ EOF echo $ac_n "checking for sig{empty fill add del}set macros""... $ac_c" 1>&6 -echo "configure:32004: checking for sig{empty fill add del}set macros" >&5 +echo "configure:32006: checking for sig{empty fill add del}set macros" >&5 if eval "test \"`echo '$''{'ace_cv_feature_have_sig_macros'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 32010 "configure" +#line 32012 "configure" #include "confdefs.h" #ifndef ACE_LACKS_SYS_TYPES_H @@ -32055,13 +32057,13 @@ EOF echo $ac_n "checking for open() mode masks""... $ac_c" 1>&6 -echo "configure:32059: checking for open() mode masks" >&5 +echo "configure:32061: checking for open() mode masks" >&5 if eval "test \"`echo '$''{'ace_cv_feature_have_open_mode_masks'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 32065 "configure" +#line 32067 "configure" #include "confdefs.h" #ifndef ACE_LACKS_SYS_TYPES_H @@ -32122,13 +32124,13 @@ EOF echo $ac_n "checking for POSIX O_NONBLOCK semantics""... $ac_c" 1>&6 -echo "configure:32126: checking for POSIX O_NONBLOCK semantics" >&5 +echo "configure:32128: checking for POSIX O_NONBLOCK semantics" >&5 if eval "test \"`echo '$''{'ace_cv_feature_posix_o_nonblock'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 32132 "configure" +#line 32134 "configure" #include "confdefs.h" #ifndef ACE_LACKS_SYS_TYPES_H @@ -32174,13 +32176,13 @@ EOF echo $ac_n "checking for MAP_FAILED constant""... $ac_c" 1>&6 -echo "configure:32178: checking for MAP_FAILED constant" >&5 +echo "configure:32180: checking for MAP_FAILED constant" >&5 if eval "test \"`echo '$''{'ace_cv_lib_have_map_failed'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 32184 "configure" +#line 32186 "configure" #include "confdefs.h" #include <sys/mman.h> @@ -32210,13 +32212,13 @@ fi echo $ac_n "checking if MAP_FAILED is a long constant""... $ac_c" 1>&6 -echo "configure:32214: checking if MAP_FAILED is a long constant" >&5 +echo "configure:32216: checking if MAP_FAILED is a long constant" >&5 if eval "test \"`echo '$''{'ace_cv_feature_long_map_failed'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 32220 "configure" +#line 32222 "configure" #include "confdefs.h" #include <sys/mman.h> @@ -32252,13 +32254,13 @@ EOF echo $ac_n "checking if MAP_FAILED is not cast to void *""... $ac_c" 1>&6 -echo "configure:32256: checking if MAP_FAILED is not cast to void *" >&5 +echo "configure:32258: checking if MAP_FAILED is not cast to void *" >&5 if eval "test \"`echo '$''{'ace_cv_have_broken_map_failed'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 32262 "configure" +#line 32264 "configure" #include "confdefs.h" #include <sys/mman.h> @@ -32269,7 +32271,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:32273: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:32275: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_have_broken_map_failed=no @@ -32280,7 +32282,7 @@ else rm -rf conftest* cat > conftest.$ac_ext <<EOF -#line 32284 "configure" +#line 32286 "configure" #include "confdefs.h" #include <sys/mman.h> @@ -32291,7 +32293,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:32295: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:32297: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_have_broken_map_failed=yes @@ -32336,13 +32338,13 @@ EOF echo $ac_n "checking for TCP_NODELAY support""... $ac_c" 1>&6 -echo "configure:32340: checking for TCP_NODELAY support" >&5 +echo "configure:32342: checking for TCP_NODELAY support" >&5 if eval "test \"`echo '$''{'ace_cv_feature_tcp_nodelay'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 32346 "configure" +#line 32348 "configure" #include "confdefs.h" #ifndef ACE_LACKS_SYS_TYPES_H @@ -32388,13 +32390,13 @@ EOF echo $ac_n "checking for SO_SNDBUF/SO_RCVBUF socket options""... $ac_c" 1>&6 -echo "configure:32392: checking for SO_SNDBUF/SO_RCVBUF socket options" >&5 +echo "configure:32394: checking for SO_SNDBUF/SO_RCVBUF socket options" >&5 if eval "test \"`echo '$''{'ace_cv_feature_so_sndbuf_rcvbuf'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 32398 "configure" +#line 32400 "configure" #include "confdefs.h" #ifndef ACE_LACKS_SYS_TYPES_H @@ -32443,7 +32445,7 @@ if test "$ac_cv_header_dlfcn_h" = yes && test "$ace_has_svr4_dynamic_linking" = yes; then echo $ac_n "checking for automatic init/fini calls""... $ac_c" 1>&6 -echo "configure:32447: checking for automatic init/fini calls" >&5 +echo "configure:32449: checking for automatic init/fini calls" >&5 if eval "test \"`echo '$''{'ace_cv_feature_auto_init_fini'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -32475,7 +32477,7 @@ fi if test "$ace_user_enable_threads" = yes; then echo $ac_n "checking for recursive thread exit semantics""... $ac_c" 1>&6 -echo "configure:32479: checking for recursive thread exit semantics" >&5 +echo "configure:32481: checking for recursive thread exit semantics" >&5 if eval "test \"`echo '$''{'ace_cv_feature_recursive_thr_exit'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -32501,13 +32503,13 @@ fi echo $ac_n "checking for UNIX domain sockets""... $ac_c" 1>&6 -echo "configure:32505: checking for UNIX domain sockets" >&5 +echo "configure:32507: checking for UNIX domain sockets" >&5 if eval "test \"`echo '$''{'ace_cv_feature_unix_sockets'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 32511 "configure" +#line 32513 "configure" #include "confdefs.h" #include <sys/un.h> @@ -32518,7 +32520,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:32522: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:32524: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_feature_unix_sockets=yes @@ -32551,7 +32553,7 @@ EOF echo $ac_n "checking for ACE_Handle_Set optimized for select()""... $ac_c" 1>&6 -echo "configure:32555: checking for ACE_Handle_Set optimized for select()" >&5 +echo "configure:32557: checking for ACE_Handle_Set optimized for select()" >&5 if eval "test \"`echo '$''{'ace_cv_feature_handle_set_optimized_for_select'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -32581,13 +32583,13 @@ EOF echo $ac_n "checking for IP multicast support""... $ac_c" 1>&6 -echo "configure:32585: checking for IP multicast support" >&5 +echo "configure:32587: checking for IP multicast support" >&5 if eval "test \"`echo '$''{'ace_cv_feature_ip_multicast'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 32591 "configure" +#line 32593 "configure" #include "confdefs.h" #ifndef ACE_LACKS_SYS_TYPES_H @@ -32601,7 +32603,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:32605: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:32607: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_feature_ip_multicast=yes @@ -32612,7 +32614,7 @@ else rm -rf conftest* cat > conftest.$ac_ext <<EOF -#line 32616 "configure" +#line 32618 "configure" #include "confdefs.h" #ifndef ACE_LACKS_SYS_TYPES_H @@ -32626,7 +32628,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:32630: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:32632: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_feature_ip_multicast=yes @@ -32661,7 +32663,7 @@ EOF echo $ac_n "checking if running on an Alpha""... $ac_c" 1>&6 -echo "configure:32665: checking if running on an Alpha" >&5 +echo "configure:32667: checking if running on an Alpha" >&5 if eval "test \"`echo '$''{'ace_cv_feature_alpha'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -32700,7 +32702,7 @@ EOF echo $ac_n "checking if running on a Power PC""... $ac_c" 1>&6 -echo "configure:32704: checking if running on a Power PC" >&5 +echo "configure:32706: checking if running on a Power PC" >&5 if eval "test \"`echo '$''{'ace_cv_feature_powerpc'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -32741,7 +32743,7 @@ EOF echo $ac_n "checking if running on a Pentium(tm) processor""... $ac_c" 1>&6 -echo "configure:32745: checking if running on a Pentium(tm) processor" >&5 +echo "configure:32747: checking if running on a Pentium(tm) processor" >&5 if eval "test \"`echo '$''{'ace_cv_feature_pentium'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -32857,7 +32859,7 @@ EOF fi echo $ac_n "checking which POSIX thread library was found""... $ac_c" 1>&6 -echo "configure:32861: checking which POSIX thread library was found" >&5 +echo "configure:32863: checking which POSIX thread library was found" >&5 ace_has_pthreads=no @@ -32925,7 +32927,7 @@ else echo "$ac_t""none" 1>&6 fi echo $ac_n "checking if a UNIX International thread library was found""... $ac_c" 1>&6 -echo "configure:32929: checking if a UNIX International thread library was found" >&5 +echo "configure:32931: checking if a UNIX International thread library was found" >&5 if test "$ace_has_sthreads" = yes; then echo "$ac_t""yes" 1>&6 else @@ -32976,13 +32978,13 @@ EOF echo $ac_n "checking for pthread_join null status pointer support""... $ac_c" 1>&6 -echo "configure:32980: checking for pthread_join null status pointer support" >&5 +echo "configure:32982: checking for pthread_join null status pointer support" >&5 if eval "test \"`echo '$''{'ace_cv_have_null_status_pthread_join'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 32986 "configure" +#line 32988 "configure" #include "confdefs.h" #if defined (ACE_HAS_PTHREADS) && defined (ACE_HAS_PTHREADS_DRAFT4) @@ -33001,7 +33003,7 @@ if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | else cat > conftest.$ac_ext <<EOF -#line 33005 "configure" +#line 33007 "configure" #include "confdefs.h" #ifdef __cplusplus extern "C" void exit(int); @@ -33064,7 +33066,7 @@ main (int argc, char *argv[]) } EOF -if { (eval echo configure:33068: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:33070: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null then ace_cv_have_null_status_pthread_join=yes @@ -33108,13 +33110,13 @@ EOF echo $ac_n "checking if SCHED_OTHER is only scheduling policy""... $ac_c" 1>&6 -echo "configure:33112: checking if SCHED_OTHER is only scheduling policy" >&5 +echo "configure:33114: checking if SCHED_OTHER is only scheduling policy" >&5 if eval "test \"`echo '$''{'ace_cv_feature_only_have_sched_other'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 33118 "configure" +#line 33120 "configure" #include "confdefs.h" #ifdef ACE_HAS_PTHREADS @@ -33149,7 +33151,7 @@ else else cat > conftest.$ac_ext <<EOF -#line 33153 "configure" +#line 33155 "configure" #include "confdefs.h" #ifdef __cplusplus extern "C" void exit(int); @@ -33207,7 +33209,7 @@ int main () } EOF -if { (eval echo configure:33211: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:33213: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null then ace_cv_feature_only_have_sched_other=no @@ -33436,7 +33438,7 @@ EOF EOF cat > conftest.$ac_ext <<EOF -#line 33440 "configure" +#line 33442 "configure" #include "confdefs.h" #ifdef __LP64__ @@ -33584,7 +33586,7 @@ EOF ;; *osf3.2*) cat > conftest.$ac_ext <<EOF -#line 33588 "configure" +#line 33590 "configure" #include "confdefs.h" #if defined(__DECCXX) @@ -33607,7 +33609,7 @@ rm -f conftest* ;; *osf4.0*) cat > conftest.$ac_ext <<EOF -#line 33611 "configure" +#line 33613 "configure" #include "confdefs.h" #if defined(__DECCXX) @@ -33628,7 +33630,7 @@ fi rm -f conftest* cat > conftest.$ac_ext <<EOF -#line 33632 "configure" +#line 33634 "configure" #include "confdefs.h" /* Include unistd.h to define _POSIX_C_SOURCE. */ @@ -33680,7 +33682,7 @@ EOF EOF cat > conftest.$ac_ext <<EOF -#line 33684 "configure" +#line 33686 "configure" #include "confdefs.h" #if defined (ACE_HAS_TSS_EMULATION) @@ -33846,7 +33848,7 @@ EOF EOF cat > conftest.$ac_ext <<EOF -#line 33850 "configure" +#line 33852 "configure" #include "confdefs.h" #if defined (ACE_HAS_TSS_EMULATION) @@ -33973,7 +33975,7 @@ rm -f confcache echo $ac_n "checking if generated ACE configuration is usable""... $ac_c" 1>&6 -echo "configure:33977: checking if generated ACE configuration is usable" >&5 +echo "configure:33979: checking if generated ACE configuration is usable" >&5 if eval "test \"`echo '$''{'ace_cv_configuration_is_usable'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -34003,7 +34005,7 @@ else cat > conftest.$ac_ext <<EOF -#line 34007 "configure" +#line 34009 "configure" #include "confdefs.h" #if defined(ACE_UINT64_TYPEDEF) @@ -34018,7 +34020,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:34022: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:34024: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_configuration_is_usable=yes @@ -34093,7 +34095,7 @@ the \`config.log' file and the following information: echo $ac_n "checking for ACE iostream support""... $ac_c" 1>&6 -echo "configure:34097: checking for ACE iostream support" >&5 +echo "configure:34099: checking for ACE iostream support" >&5 if eval "test \"`echo '$''{'ace_cv_feature_ace_iostream'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -34123,7 +34125,7 @@ else cat > conftest.$ac_ext <<EOF -#line 34127 "configure" +#line 34129 "configure" #include "confdefs.h" #if defined(ACE_UINT64_TYPEDEF) @@ -34138,7 +34140,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:34142: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:34144: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_feature_ace_iostream=yes @@ -34191,7 +34193,7 @@ EOF echo $ac_n "checking if ACE needs minimum iostream header inclusion""... $ac_c" 1>&6 -echo "configure:34195: checking if ACE needs minimum iostream header inclusion" >&5 +echo "configure:34197: checking if ACE needs minimum iostream header inclusion" >&5 if eval "test \"`echo '$''{'ace_cv_lib_minimum_iostream'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -34221,7 +34223,7 @@ else cat > conftest.$ac_ext <<EOF -#line 34225 "configure" +#line 34227 "configure" #include "confdefs.h" #if defined(ACE_UINT64_TYPEDEF) @@ -34236,7 +34238,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:34240: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:34242: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_minimum_iostream=no @@ -34253,7 +34255,7 @@ else cat > conftest.$ac_ext <<EOF -#line 34257 "configure" +#line 34259 "configure" #include "confdefs.h" #if defined(ACE_UINT64_TYPEDEF) @@ -34269,7 +34271,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:34273: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:34275: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_minimum_iostream=yes @@ -34328,7 +34330,7 @@ EOF echo $ac_n "checking for ACE_addr::sap_any support""... $ac_c" 1>&6 -echo "configure:34332: checking for ACE_addr::sap_any support" >&5 +echo "configure:34334: checking for ACE_addr::sap_any support" >&5 if eval "test \"`echo '$''{'ace_cv_lib_sap_any_support'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -34358,7 +34360,7 @@ else cat > conftest.$ac_ext <<EOF -#line 34362 "configure" +#line 34364 "configure" #include "confdefs.h" #if defined(ACE_UINT64_TYPEDEF) @@ -34373,7 +34375,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:34377: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:34379: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_sap_any_support=yes @@ -34390,7 +34392,7 @@ else cat > conftest.$ac_ext <<EOF -#line 34394 "configure" +#line 34396 "configure" #include "confdefs.h" #if defined(ACE_UINT64_TYPEDEF) @@ -34406,7 +34408,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:34410: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:34412: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_sap_any_support=no @@ -34466,7 +34468,7 @@ EOF echo $ac_n "checking if ACE needs conversion to pass ACE_TTY_IO to DEV_Connector""... $ac_c" 1>&6 -echo "configure:34470: checking if ACE needs conversion to pass ACE_TTY_IO to DEV_Connector" >&5 +echo "configure:34472: checking if ACE needs conversion to pass ACE_TTY_IO to DEV_Connector" >&5 if eval "test \"`echo '$''{'ace_cv_lib_need_dev_io_conv'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -34496,7 +34498,7 @@ else cat > conftest.$ac_ext <<EOF -#line 34500 "configure" +#line 34502 "configure" #include "confdefs.h" #if defined(ACE_UINT64_TYPEDEF) @@ -34511,7 +34513,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:34515: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:34517: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_need_dev_io_conv=no @@ -34528,7 +34530,7 @@ else cat > conftest.$ac_ext <<EOF -#line 34532 "configure" +#line 34534 "configure" #include "confdefs.h" #if defined(ACE_UINT64_TYPEDEF) @@ -34544,7 +34546,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:34548: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:34550: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_need_dev_io_conv=yes @@ -34871,11 +34873,11 @@ s%@X_LIBS@%$X_LIBS%g s%@X_EXTRA_LIBS@%$X_EXTRA_LIBS%g s%@COMPILE_GPERF_TRUE@%$COMPILE_GPERF_TRUE%g s%@COMPILE_GPERF_FALSE@%$COMPILE_GPERF_FALSE%g +s%@OBJEXT@%$OBJEXT%g +s%@EXEEXT@%$EXEEXT%g s%@XTREACTOR_TEST_XLIBS@%$XTREACTOR_TEST_XLIBS%g s%@COMPILE_XTREACTOR_TEST_TRUE@%$COMPILE_XTREACTOR_TEST_TRUE%g s%@COMPILE_XTREACTOR_TEST_FALSE@%$COMPILE_XTREACTOR_TEST_FALSE%g -s%@OBJEXT@%$OBJEXT%g -s%@EXEEXT@%$EXEEXT%g s%@RANLIB@%$RANLIB%g s%@STRIP@%$STRIP%g s%@LIBTOOL@%$LIBTOOL%g diff --git a/configure.in b/configure.in index 1b7d3f234f5..9e10561031b 100644 --- a/configure.in +++ b/configure.in @@ -779,6 +779,18 @@ AC_ARG_WITH(tli-device, esac ],) +# Autoconf's AC_OBJEXT and AC_EXEEXT macros only works for C compilers! +# Libtool's setup macro calls AC_OBJEXT and AC_EXEEXT without setting +# the test language to C. We do it before any libtool setup macros are +# called so that the proper values are cached beforehand. We also do +# it before any linker flags (LDFLAGS) are set so that C++ specific +# ones don't break the tests. +AC_LANG_SAVE +AC_LANG_C +AC_OBJEXT +AC_EXEEXT +AC_LANG_RESTORE + dnl Call ACE_SET_COMPILER_FLAGS before AC_PROG_LIBTOOL and after the dnl AC_ARG_ENABLE and AC_ARG_WITH calls. ACE_SET_COMPILER_FLAGS @@ -1000,16 +1012,6 @@ dnl This should be done in the "programs" section of this file but dnl libtool may then be unaware of compiler flags set during the dnl thread checks. -# Autoconf's AC_OBJEXT and AC_EXEEXT macros only works for C compilers! -# Libtool's setup macro calls AC_OBJEXT and AC_EXEEXT without setting -# the test language to C. We do it before any libtool setup macros are -# called so that the proper values are cached beforehand. -AC_LANG_SAVE -AC_LANG_C -AC_OBJEXT -AC_EXEEXT -AC_LANG_RESTORE - dnl Disable building of static libraries by default AC_DISABLE_STATIC |