summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
-rw-r--r--ChangeLog-99b90
-rw-r--r--Makefile.am2
-rw-r--r--NEWS3
-rw-r--r--acconfig.h46
-rw-r--r--ace-config.1.in3
-rw-r--r--ace-config.in20
-rw-r--r--aclocal.m41007
-rwxr-xr-xbin/bootstrap29
-rwxr-xr-xconfigure2960
-rw-r--r--configure.in218
-rw-r--r--man/Makefile.am23
-rw-r--r--man/html/Makefile.am32
-rw-r--r--man/man3/Makefile.am25
13 files changed, 2500 insertions, 1958 deletions
diff --git a/ChangeLog-99b b/ChangeLog-99b
index 4198c884bb7..4e94015f06a 100644
--- a/ChangeLog-99b
+++ b/ChangeLog-99b
@@ -1,3 +1,93 @@
+Fri Oct 29 19:53:59 1999 Ossama Othman <othman@cs.wustl.edu>
+
+ * Makefile.am (EXTRA_DIST):
+
+ Removed ACE.DSW from the distribution list.
+
+ * configure.in:
+
+ Removed test for necessity of _GNU_SOURCE macro. All uses and
+ need of that feature test macro have been removed from ACE.
+
+ If a thread library was detected, define _REENTRANT in the
+ command line, not the generated config.h header. The user can
+ use the ace-config script to determine what other flags are
+ needed to compile ACE.
+
+ Check for sched_yield in the librt library, if it exists, in
+ addition to the others listed. Solaris 7 moves sched_yield from
+ the libposix4 library to librt.
+
+ Added libsocket to list of libraries to search for
+ getservbyname().
+
+ If check for socket() results in unresolved symbols, add `-lnsl'
+ to library search.
+
+ Improved ACE_HAS_PTHREAD_PROCESS_ENUM test.
+
+ Added checks for getpgid, strtok_r, strptime and lseek64
+ prototypes. The old getpgid test is superceded by a new one. A
+ prototype is declared if the checks determine that certain
+ feature test macros are needed to enable them.
+
+ Added man directory Makefiles to list of files to generate.
+
+ * ace-config.in:
+
+ Minor updates. Modified so that "ace" is the default library if
+ one isn't specified.
+
+ * ace-config.1.in:
+
+ Minor updates.
+
+ * ace/config-linux-common.h:
+ * ace/OS.h:
+
+ Moved all prototypes to OS.h. Only macros should be defined
+ config headers. Each of the moved prototypes are enabled by
+ using the following newly added macros:
+
+ ACE_LACKS_GETPGID_PROTOTYPE
+ ACE_LACKS_STRPTIME_PROTOTYPE
+ ACE_LACKS_STRTOK_R_PROTOTYPE
+ ACE_LACKS_LSEEK64_PROTOTYPE
+
+ All prototypes in ace/OS.h should come after the inclusion of
+ ace/Basic_Types.h since the prototypes may need types that are
+ only available after that inclusion. Also added a
+ ACE_LACKS_PREAD_PROTOTYPE that is used to enable make both
+ pread() and pwrite() protypes.
+
+ Recent glibc libraries have pread and pwrite but only enable the
+ prototypes if _XOPEN_SOURCE=500 is defined (Single Unix
+ specification). Now define ACE_HAS_P_READ_WRITE and
+ ACE_LACKS_PREAD_PROTOTYPE on Linux.
+
+ * bin/bootstrap:
+
+ Added ACE man page generation. Generating the man pages during
+ the bootstrapping process allows the man page list in
+ man/man3/Makefile.am to be generated by a shell command instead
+ of having to explicitly specify each man page in that Makefile.
+ The man pages will only be generated if the ACE.3 man page
+ doesn't exist. That man page should be representative of the
+ existence of the rest of the man pages.
+
+ * man/Makefile.am:
+ * man/html/Makefile.am:
+ * man/man3/Makefile.am:
+
+ Added Automake input files for the ACE man pages. The man pages
+ will now be installed during a `make install'. This is an
+ ACE Configuration Project specific enhancement. ACE's current
+ man page scheme is unchanged, and doesn't support this feature.
+
+ * m4/features.m4:
+
+ Delete test_aio.log when the test is done.
+
Fri Oct 29 17:01:58 1999 Kirthika Parameswaran <kirthika@cs.wustl.edu>
* ace/OS.h: Added ACE_DEFAULT_SHLIB_MODE for KCC. Since this mode
diff --git a/Makefile.am b/Makefile.am
index 2a54460adda..2e44db6175e 100644
--- a/Makefile.am
+++ b/Makefile.am
@@ -41,7 +41,6 @@ SUBDIRS = ace \
EXTRA_DIST = \
ACE-INSTALL.html \
ACE-install.sh \
- ACE.DSW \
BIBLIOGRAPHY \
ChangeLog-93 \
ChangeLog-94 \
@@ -52,6 +51,7 @@ EXTRA_DIST = \
ChangeLog-97b \
ChangeLog-98a \
ChangeLog-98b \
+ ChangeLog-99a \
FAQ \
PROBLEM-REPORT-FORM \
README.aceconf \
diff --git a/NEWS b/NEWS
index 7908c020206..931d96d7c4c 100644
--- a/NEWS
+++ b/NEWS
@@ -1,5 +1,4 @@
-Please see the release notes in the docs directory and the ChangeLog for
-information about what has changed between releases.
+This is ACE version 5.0.7, released Sat Oct 23 19:11:51 1999.
If you have any problems with or questions about ACE, please send
email to the ACE mailing list (ace-users@cs.wustl.edu), using the form
diff --git a/acconfig.h b/acconfig.h
index c784cb9d540..1b80a300928 100644
--- a/acconfig.h
+++ b/acconfig.h
@@ -15,11 +15,6 @@
*/
-/* Define _REENTRANT if reentrant functions should be used. */
-#ifndef _REENTRANT
-# undef _REENTRANT
-#endif
-
#ifndef _POSIX_THREADS
# undef _POSIX_THREADS
#endif
@@ -33,25 +28,6 @@
# undef _POSIX_PTHREAD_SEMANTICS
#endif
-/* Some platforms require "feature test" macros to be defined to make
- some function prototypes "visible." */
-#ifndef _GNU_SOURCE
-# undef _GNU_SOURCE
-#else
-# ifndef _XOPEN_SOURCE
-# undef _XOPEN_SOURCE
-# endif /*_XOPEN_SOURCE */
-# ifndef _XOPEN_EXTENDED_SOURCE
-# undef _XOPEN_EXTENDED_SOURCE
-# endif /* _XOPEN_EXTENDED_SOURCE */
-# ifndef _LARGEFILE64_SOURCE
-# undef _LARGEFILE64_SOURCE
-# endif /* _LARGEFILE64_SOURCE */
-# ifndef _FILE_OFFSET_BITS
-# undef _FILE_OFFSET_BITS
-# endif /* _FILE_OFFSET_BITS */
-#endif /* _GNU_SOURCE */
-
/* ACE currently doesn't use these; however the configure script does */
#undef ACE_LACKS_SYSTIMES_H
#undef ACE_LACKS_UNBUFFERED_STREAMBUF
@@ -228,6 +204,7 @@
#undef IP_ADD_MEMBERSHIP
#undef IP_DROP_MEMBERSHIP
+
/* Specify sizes of given built-in types. If a size isn't defined here,
then ace/Basic_Types.h will attempt to deduce the size. */
/* #undef ACE_SIZEOF_CHAR */
@@ -240,6 +217,12 @@
#undef ACE_SIZEOF_DOUBLE
#undef ACE_SIZEOF_LONG_DOUBLE
+
+/* Missing prototypes: These prototypes should only be enabled if the
+ function actually exists on the platform. */
+
+
+
/* typedef for ACE_UINT64 */
/*
We only make the typedef if ACE_UINT64_TYPEDEF is defined. Otherwise,
@@ -1293,6 +1276,21 @@
/* Platform doesn't have truncate() (e.g., vxworks) */
#undef ACE_LACKS_TRUNCATE
+/* Platform/compiler lacks the getpgid() prototype */
+#undef ACE_LACKS_GETPGID_PROTOTYPE
+
+/* Platform/compiler lacks the strptime() prototype */
+#undef ACE_LACKS_STRPTIME_PROTOTYPE
+
+/* Platform/compiler lacks the strtok_r() prototype */
+#undef ACE_LACKS_STRTOK_R_PROTOTYPE
+
+/* Platform/compiler lacks the lseek64() prototype */
+#undef ACE_LACKS_LSEEK64_PROTOTYPE
+
+/* Platform/compiler lacks the pread() and pwrite() prototypes */
+#undef ACE_LACKS_PREAD_PROTOTYPE
+
/* Platform/compiler lacks the ualarm() prototype (e.g., Solaris) */
#undef ACE_LACKS_UALARM_PROTOTYPE
diff --git a/ace-config.1.in b/ace-config.1.in
index 1b3c0dd5f61..99b93e9545a 100644
--- a/ace-config.1.in
+++ b/ace-config.1.in
@@ -50,8 +50,7 @@ the ACE ORB (TAO) library
Additional ACE related library configuration information.
.RE
.SH BUGS
-No option to display which C++ compiler was used to compile ACE currently
-exists.
+None.
.SH AUTHOR
Ossama Othman <othman@cs.wustl.edu>
.SH "SEE ALSO"
diff --git a/ace-config.in b/ace-config.in
index 25e92e47fef..38b755857d2 100644
--- a/ace-config.in
+++ b/ace-config.in
@@ -26,20 +26,20 @@ pkgincludedir=${includedir}/@PACKAGE@
usage()
{
cat <<EOF
-Usage: ace-config [OPTIONS]... [LIBRARY]...
+Usage: ace-config OPTION [OPTIONS...] [LIBRARY]
-Generic options
+Generic options:
--version output ACE version information
--help display this help and exit
-Compilation support options
+Compilation support options:
--cxx print C++ compiler used for compiling
--cxxflags print C++ pre-processor and compiler flags
--libs print library linking information
--libs-only-L only print the -L/-R part of --libs
--libs-only-l only print the -l part of --libs
-Install directories ace-libs was configured to
+Install directories ACE was configured with:
--prefix --exec-prefix --bindir --sbindir --libexecdir --datadir
--sysconfdir --sharedstatedir --localstatedir --libdir --infodir
--mandir --includedir
@@ -69,6 +69,11 @@ cxxflags=false
libs_L=false
libs_l=false
+# These values are only valid for ACE.
+the_compiler="@CXX@"
+the_libs="$the_libs @ACE_LIBDIR@ @ACE_LIBS@"
+the_flags="$the_flags @ACE_INCLUDEDIR@ @CXXFLAGS@"
+
while test $# -gt 0; do
case "$1" in
-*=*) optarg=`echo "$1" | sed 's/[-_a-zA-Z0-9]*=//'` ;;
@@ -118,9 +123,10 @@ while test $# -gt 0; do
usage 1
;;
ace)
- the_compiler="@CXX@"
- the_libs="$the_libs @ACE_LIBDIR@ @ACE_LIBS@"
- the_flags="$the_flags @ACE_INCLUDEDIR@ @CXXFLAGS@"
+# These are set before this option parsing loop begins.
+# the_compiler="@CXX@"
+# the_libs="$the_libs @ACE_LIBDIR@ @ACE_LIBS@"
+# the_flags="$the_flags @ACE_INCLUDEDIR@ @CXXFLAGS@"
;;
netsvcs)
echo "Currently unsupported."
diff --git a/aclocal.m4 b/aclocal.m4
index a9158f7d003..7bb00fc65e3 100644
--- a/aclocal.m4
+++ b/aclocal.m4
@@ -10,509 +10,6 @@ dnl but WITHOUT ANY WARRANTY, to the extent permitted by law; without
dnl even the implied warranty of MERCHANTABILITY or FITNESS FOR A
dnl PARTICULAR PURPOSE.
-dnl -------------------------------------------------------------------------
-dnl $Id$
-dnl
-dnl ACE M4 include file which contains general M4 macros
-dnl to be used by the ACE configure script.
-dnl
-dnl The macros in this file were designed for ACE but should be
-dnl general enough for general use.
-dnl
-dnl -------------------------------------------------------------------------
-
-dnl Copyright (C) 1998, 1999 Ossama Othman
-dnl
-dnl All Rights Reserved
-dnl
-dnl This library is free software; you can redistribute it and/or
-dnl modify it under the current ACE distribution terms.
-dnl
-dnl This library is distributed in the hope that it will be useful,
-dnl but WITHOUT ANY WARRANTY; without even the implied warranty of
-dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
-
-
-dnl miscellaneous macros
-
-dnl Prevent the configure script continuing any further if a CVS control
-dnl directory is found. The idea is to prevent files generated during
-dnl configuration and build from be checked in to the CVS repository that
-dnl the sources are checked into. This should only be an issue for
-dnl maintainers, not end-users. Maintainers should configure and build in
-dnl a directory that doesn't contain any CVS controlled sources and files,
-dnl i.e. that doesn't contain a CVS directory.
-dnl
-dnl Usage: ACE_CHECK_FOR_CVS_DIR
-AC_DEFUN(ACE_CHECK_FOR_CVS_DIR,
-[
- if test -d CVS; then
- AC_MSG_ERROR(
- [
- This error is meant for maintainers:
-
- Please configure and build in a non-CVS controlled directory.
- Doing so will prevent accidentally committing automatically
- generated files into the CVS repository and help ensure that
- the generated files and build scheme are correct.
- ])
- fi
-])
-
-dnl Add compiler flags to the CXXFLAGS and CFLAGS variables when doing an
-dnl AC_TRY_COMPILE (not ACE_TRY_COMPILE).
-dnl Use this macro when adding include directories to the compiler flags,
-dnl for example.
-dnl Usage: ACE_TRY_COMPILE(COMPILER-FLAGS, INCLUDES, FUNCTION-BODY,
-dnl [ACTION-IF-FOUND [,ACTION-IF-NOT-FOUND]])
-AC_DEFUN(ACE_TRY_COMPILE, dnl
-[
- ace_pre_try_CXXFLAGS="$CXXFLAGS"
- CXXFLAGS="$CXXFLAGS $1"
-
- ace_pre_try_CFLAGS="$CFLAGS"
- CFLAGS="$CFLAGS $1"
-
- AC_TRY_COMPILE($2, $3, $4, $5)
-
- dnl Restore the C++ and C flags
- CXXFLAGS="$ace_pre_try_CXXFLAGS"
- CFLAGS="$ace_pre_try_CFLAGS"
-
-])
-
-dnl Create a temporary empty file and remove it after commands are done using
-dnl it. The directory in which the temporary file will be created in must
-dnl exist. Files will be created under the source directory, not the build
-dnl directory.
-dnl Use this macro when you need a particular file available but want it to be
-dnl empty. This is useful to prevent conflicts with autoconf's confdefs.h
-dnl header when doing an AC_TRY_COMPILE.
-dnl Usage: ACE_USE_TEMP_FILE(TEMP-FILE-TO-CREATE, COMMANDS-THAT-WILL-USE-IT)
-AC_DEFUN(ACE_USE_TEMP_FILE, dnl
-[
- if test -f ${srcdir}/$1; then
- mv ${srcdir}/$1 ${srcdir}/$1.conf
- fi
-
- touch ${srcdir}/$1
-
- $2
-
- if test -f ${srcdir}/$1.conf; then
- mv ${srcdir}/$1.conf ${srcdir}/$1
- else
- rm ${srcdir}/$1
- fi
-])
-
-dnl Run given test(s) with warnings converted to errors
-dnl Usage: ACE_CONVERT_WARNINGS_TO_ERRORS(TEST-BLOCK)
-AC_DEFUN(ACE_CONVERT_WARNINGS_TO_ERRORS, dnl
-[
-dnl If we are using GNU C++, add the "-Werror" compiler flag to the
-dnl current set of flags so that compiler warnings become errors. We
-dnl do this to cause certain tests to fail when they are supposed to
-dnl fail. Some of the tests pass because the GNU C++ compiler issues
-dnl warnings instead of errors when errors should occur.
-dnl Other "treat warnings as errors" flags for other compilers should
-dnl be added if possible.
- ace_pre_warning_CXXFLAGS="$CXXFLAGS"
-
- if test -n "$GXX"; then
- CXXFLAGS="$CXXFLAGS -Werror"
- else
- case $target in
- *solaris*)
- if test "$CXX" = CC; then
- CXXFLAGS="$CXXFLAGS -xwe"
- fi
- ;;
- *) ;;
- esac
- fi
-
- $1
-
- CXXFLAGS="$ace_pre_warning_CXXFLAGS"
-])
-
-dnl Wrapper around AC_CACHE_VAL used to ensure "ACTION-IF" commands are run
-dnl even if results have been previously cached.
-dnl Usage: ACE_CACHE_CHECK(MESSAGE, CACHE-ID, COMMANDS-TO-SET-CACHE-VAL,
-dnl ACTION-IF-CACHE-ID-IS-YES,
-dnl ACTION-IF-CACHE-ID-IS-NO)
-dnl The COMMANDS-TO-SET-CACHE-VAL should set the CACHE-ID to yes or "no,"
-dnl otherwise the "ACTION-IF*" commands may not run. The
-dnl COMMANDS-TO-SET-CACHE-VAL should only set the CACHE value. For example,
-dnl no AC_DEFINES should be placed in the COMMANDS-TO-SET-CACHE-VAL.
-AC_DEFUN(ACE_CACHE_CHECK,
-[
- AC_MSG_CHECKING([$1])
- AC_CACHE_VAL([$2], [$3])
- AC_MSG_RESULT([$]$2)
- if test "[$]$2" != no; then
- ace_just_a_place_holder=fixme
-ifelse([$4], , :, [$4])
- else
- ace_just_a_place_holder=fixme
-ifelse([$5], , , [$5
-])
- fi
-])
-
-dnl checks for programs
-
-dnl checks for libraries
-
-dnl checks for header files
-
-dnl checks for typedefs
-
-dnl Check for specific typedef in given header file
-dnl Usage: ACE_CHECK_TYPE(TYPEDEF, INCLUDE,
-dnl [ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND]])
-dnl This macro can only check for one typedef in one header file at a time!!
-AC_DEFUN(ACE_CHECK_TYPE, dnl
-[
-dnl AC_REQUIRE([AC_PROG_CXX])
-dnl AC_REQUIRE([AC_PROG_CXXCPP])
-dnl AC_REQUIRE([AC_LANG_CPLUSPLUS])
-
- ACE_CACHE_CHECK(for $1 in $2, ace_cv_type_$1,
- [
- AC_TRY_COMPILE(
- [
-#include <$2>
- ],
- [
- $1 ace_$1;
- ],
- [
- ace_cv_type_$1=yes
- ],
- [
- ace_cv_type_$1=no
- ])
- ], $3, $4)
-])
-
-
-dnl checks for structures
-
-dnl Check for specific struct in given header file
-dnl Usage: ACE_CHECK_STRUCT(STRUCTURE, INCLUDE,
-dnl [ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND]])
-dnl This macro can only check for one struct in one header file at a time!!
-AC_DEFUN(ACE_CHECK_STRUCT, dnl
-[
-dnl AC_REQUIRE([AC_PROG_CXX])
-dnl AC_REQUIRE([AC_PROG_CXXCPP])
-dnl AC_REQUIRE([AC_LANG_CPLUSPLUS])
-
-dnl Do the transliteration at runtime so arg 1 can be a shell variable.
-dnl ac_safe=`echo "$1" | sed 'y%./+-%__p_%'`
-
- ACE_CACHE_CHECK(for struct $1 in $2, ace_cv_struct_$1,
- [
- ACE_TRY_COMPILE_STRUCT($1, $2,
- [
- ace_cv_struct_$1=yes
- ],
- [
- ace_cv_struct_$1=no
- ])
- ], $3, $4)
-])
-
-dnl Check for specific struct in given header file by compiling a test
-dnl program. This macro is used by ACE_CHECK_STRUCT.
-dnl Usage: ACE_TRY_COMPILE_STRUCT(STRUCTURE, INCLUDE,
-dnl [ACTION-IF-SUCCESSFUL[, ACTION-IF-NOT-SUCCESSFUL]])
-dnl This macro can only check for one struct in one header file at a time!!
-AC_DEFUN(ACE_TRY_COMPILE_STRUCT, dnl
-[
-dnl AC_REQUIRE([AC_PROG_CXX])
-dnl AC_REQUIRE([AC_PROG_CXXCPP])
-dnl AC_REQUIRE([AC_LANG_CPLUSPLUS])
-
- AC_TRY_COMPILE(
- [
-#include <$2>
- ],
- [
- struct $1 ace_$1;
- ],
- [
- $3
- ],
- [
-dnl Some compilers don't like the "struct" but we need the struct for some
-dnl platforms to resolve ambiguities between functions and structures with
-dnl with the same name. So, we try the same test but without "struct" if
-dnl the above test with "struct" fails. If both tests fail, then we can
-dnl be reasonably sure that we don't have the structure we are testing for.
- AC_TRY_COMPILE(
- [
-#include <$2>
- ],
- [
- $1 ace_$1;
- ],
- [
- $3
- ],
- [
- $4
- ])
- ])
-])
-
-dnl checks for variables
-
-dnl checks for compiler characteristics
-
-dnl checks for library functions
-
-dnl Check for function using prototype in header
-dnl This macro is used if a function is called a different name in a given
-dnl library than what is in the header file but the difference is made
-dnl transparent to the user since the header may provide a macro to make
-dnl things "transparent." If the given header does not exist then this
-dnl macro acts just like the standard AC_CHECK_FUNC macro.
-dnl Usage: ACE_CHECK_FUNC(FUNCTION, HEADER,
-dnl [ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND]])
-AC_DEFUN(ACE_CHECK_FUNC, dnl
-[
-dnl AC_REQUIRE([AC_PROG_CXX])
-dnl AC_REQUIRE([AC_PROG_CXXCPP])
-dnl AC_REQUIRE([AC_LANG_CPLUSPLUS])
- AC_REQUIRE([AC_PROG_AWK])
-
- AC_TRY_CPP(
- [
-#include <$2>
- ], ace_header_exists=yes, ace_header_exists=no)
-
- cat > conftest.$ac_ext <<EOF
-
-#include <$2>
- ACE_REAL_FUNCTION $1
-
-EOF
-
- if test "$ace_header_exists" = yes; then
- if test -z "$AWK"; then
- AC_MSG_WARN(No awk program found. "Real" function may not be found.)
- fi
-
- if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
- egrep "ACE_REAL_FUNCTION" |
- (eval "$AWK '{print \[$]2}' > conftest.awk 2>&1"); then
- rm -f conftest.$ac_ext
- ace_real_function=`cat conftest.awk`
- rm -f conftest.awk
- fi
-
- if test $1 != "$ace_real_function"; then
- AC_MSG_CHECKING(for real $1 from $2)
- AC_MSG_RESULT($ace_real_function)
- fi
- else
- ace_real_function=$1
- fi dnl test "$ace_header_not_exist" != yes
-
- AC_CHECK_FUNC($ace_real_function, $3, $4)
-])
-
-dnl Check for function in library using prototype in header
-dnl This macro is used if a function is called a different name in a given
-dnl library than what is in the header file but the difference is made
-dnl transparent to the user since the header may provide a macro to make
-dnl things "transparent." If the given header does not exist then this
-dnl macro acts just like the standard AC_CHECK_LIB macro.
-dnl Usage: ACE_CHECK_LIB(LIBRARY, FUNCTION, HEADER,
-dnl [ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND]])
-AC_DEFUN(ACE_CHECK_LIB, dnl
-[
-dnl AC_REQUIRE([AC_PROG_CXX])
-dnl AC_REQUIRE([AC_PROG_CXXCPP])
-dnl AC_REQUIRE([AC_LANG_CPLUSPLUS])
- AC_REQUIRE([AC_PROG_AWK])
-
- AC_TRY_CPP(
- [
-#include <$3>
- ], ace_header_exists=yes, ace_header_exists=no)
-
- cat > conftest.$ac_ext <<EOF
-
-#include <$3>
- ACE_REAL_FUNCTION $2
-
-EOF
-
- if test "$ace_header_exists" = yes; then
- if test -z "$AWK"; then
- AC_MSG_WARN(No awk program found. "Real" function in library may not be found.)
- fi
-
- if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
- egrep "ACE_REAL_FUNCTION" |
- eval "$AWK '{print \[$]2}'" > conftest.awk 2>&1; then
- rm -f conftest.$ac_ext
- ace_real_function=`cat conftest.awk`
- rm -f conftest.awk
- fi
-
- if test $2 != "$ace_real_function"; then
- AC_MSG_CHECKING(for real $2 from $3)
- AC_MSG_RESULT($ace_real_function)
- fi
- else
- ace_real_function=$2
- fi dnl test "$ace_header_not_exist" != yes
-
- AC_CHECK_LIB($1, $ace_real_function, $4, $5)
-])
-
-
-dnl checks for structures
-
-dnl checks for system services
-
-
-dnl *********************** SPECIAL SECTION *******************************
-dnl
-dnl This section contains my own *re*implementation of the functionality
-dnl provided by some tests/macros found in GNU Autoconf since the ones found
-dnl in Autoconf don't appear to work as expected.
-dnl
-dnl -Ossama Othman <ossama@debian.org>
-dnl
-dnl The copyright for the following macros is listed below.
-dnl Note that all macros listed prior to this section are copyrighted
-dnl by Ossama Othman, not the Free Software Foundation. Nevertheless,
-dnl all software found in this file is free software. Please read the
-dnl distribution terms found at the top of this file and the ones below.
-
-dnl Parameterized macros.
-dnl Requires GNU m4.
-dnl This file is part of Autoconf.
-dnl Copyright (C) 1992, 93, 94, 95, 96, 1998 Free Software Foundation, Inc.
-dnl
-dnl This program is free software; you can redistribute it and/or modify
-dnl it under the terms of the GNU General Public License as published by
-dnl the Free Software Foundation; either version 2, or (at your option)
-dnl any later version.
-dnl
-dnl This program is distributed in the hope that it will be useful,
-dnl but WITHOUT ANY WARRANTY; without even the implied warranty of
-dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
-dnl GNU General Public License for more details.
-dnl
-dnl You should have received a copy of the GNU General Public License
-dnl along with this program; if not, write to the Free Software
-dnl Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
-dnl 02111-1307, USA.
-dnl
-dnl As a special exception, the Free Software Foundation gives unlimited
-dnl permission to copy, distribute and modify the configure scripts that
-dnl are the output of Autoconf. You need not follow the terms of the GNU
-dnl General Public License when using or distributing such scripts, even
-dnl though portions of the text of Autoconf appear in them. The GNU
-dnl General Public License (GPL) does govern all other use of the material
-dnl that constitutes the Autoconf program.
-dnl
-dnl Certain portions of the Autoconf source text are designed to be copied
-dnl (in certain cases, depending on the input) into the output of
-dnl Autoconf. We call these the "data" portions. The rest of the Autoconf
-dnl source text consists of comments plus executable code that decides which
-dnl of the data portions to output in any given case. We call these
-dnl comments and executable code the "non-data" portions. Autoconf never
-dnl copies any of the non-data portions into its output.
-dnl
-dnl This special exception to the GPL applies to versions of Autoconf
-dnl released by the Free Software Foundation. When you make and
-dnl distribute a modified version of Autoconf, you may extend this special
-dnl exception to the GPL to apply to your modified version as well, *unless*
-dnl your modified version has the potential to copy into its output some
-dnl of the text that was the non-data portion of the version that you started
-dnl with. (In other words, unless your change moves or copies text from
-dnl the non-data portions to the data portions.) If your modification has
-dnl such potential, you must delete any notice of this special exception
-dnl to the GPL from your modified version.
-dnl
-dnl Written by David MacKenzie, with help from
-dnl Franc,ois Pinard, Karl Berry, Richard Pixley, Ian Lance Taylor,
-dnl Roland McGrath, Noah Friedman, david d zuhn, and many others.
-
-
-dnl Usage: ACE_SEARCH_LIBS(FUNCTION, SEARCH-LIBS [, ACTION-IF-FOUND
-dnl [, ACTION-IF-NOT-FOUND [, OTHER-LIBRARIES]]])
-dnl Search for a library defining FUNCTION, if it's not already available.
-AC_DEFUN(ACE_SEARCH_LIBS,
-[
- AC_CACHE_CHECK(for library containing $1, ac_cv_search_$1,
- [
- ac_func_search_save_LIBS="$LIBS"
-
- ac_cv_search_$1="no"
-
- ACE_TRY_LINK_FUNC([$1], [ac_cv_search_$1="none required"])
-
- test "$ac_cv_search_$1" = "no" && for i in $2; do
- LIBS="-l$i $5 $ac_func_search_save_LIBS"
- ACE_TRY_LINK_FUNC($1,
- [
- ac_cv_search_$1="-l$i"
- break
- ])
- done
-
- LIBS="$ac_func_search_save_LIBS"
- ])
-
- if test "$ac_cv_search_$1" != "no"; then
- test "$ac_cv_search_$1" = "none required" || LIBS="$ac_cv_search_$1 $LIBS"
- $3
- else :
- $4
- fi
-])
-
-dnl Usage: ACE_TRY_LINK_FUNC(FUNCTION,[, ACTION-IF-FOUND
-dnl [, ACTION-IF-NOT-FOUND])
-dnl Search for a library defining FUNCTION, if it's not already available.
-AC_DEFUN(ACE_TRY_LINK_FUNC,
-[
-AC_TRY_LINK(
-dnl Don't include <ctype.h> because on OSF/1 3.0 it includes <sys/types.h>
-dnl which includes <sys/select.h> which contains a prototype for
-dnl select. Similarly for bzero.
-[/* System header to define __stub macros and hopefully few prototypes,
- which can conflict with char $1(); below. */
-#include <assert.h>
-/* Override any gcc2 internal prototype to avoid an error. */
-]ifelse(AC_LANG, CPLUSPLUS, [#ifdef __cplusplus
-extern "C"
-#endif
-])dnl
-[/* We use char because int might match the return type of a gcc2
- builtin and then its argument prototype would still apply. */
-char $1();
-], [
-/* The GNU C library defines this for functions which it implements
- to always fail with ENOSYS. Some functions are actually named
- something starting with __ and the normal name is an alias. */
-#if defined (__stub_$1) || defined (__stub___$1)
-choke me
-#else
-$1();
-#endif
-],[$2],[$3])
-])
-
# Do all the work for Automake. This macro actually does too much --
# some checks are only needed if your package does certain things.
# But this isn't really a big deal.
@@ -1870,6 +1367,509 @@ ifelse([AC_DISABLE_FAST_INSTALL])dnl
dnl -------------------------------------------------------------------------
dnl $Id$
dnl
+dnl ACE M4 include file which contains general M4 macros
+dnl to be used by the ACE configure script.
+dnl
+dnl The macros in this file were designed for ACE but should be
+dnl general enough for general use.
+dnl
+dnl -------------------------------------------------------------------------
+
+dnl Copyright (C) 1998, 1999 Ossama Othman
+dnl
+dnl All Rights Reserved
+dnl
+dnl This library is free software; you can redistribute it and/or
+dnl modify it under the current ACE distribution terms.
+dnl
+dnl This library is distributed in the hope that it will be useful,
+dnl but WITHOUT ANY WARRANTY; without even the implied warranty of
+dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+
+
+dnl miscellaneous macros
+
+dnl Prevent the configure script continuing any further if a CVS control
+dnl directory is found. The idea is to prevent files generated during
+dnl configuration and build from be checked in to the CVS repository that
+dnl the sources are checked into. This should only be an issue for
+dnl maintainers, not end-users. Maintainers should configure and build in
+dnl a directory that doesn't contain any CVS controlled sources and files,
+dnl i.e. that doesn't contain a CVS directory.
+dnl
+dnl Usage: ACE_CHECK_FOR_CVS_DIR
+AC_DEFUN(ACE_CHECK_FOR_CVS_DIR,
+[
+ if test -d CVS; then
+ AC_MSG_ERROR(
+ [
+ This error is meant for maintainers:
+
+ Please configure and build in a non-CVS controlled directory.
+ Doing so will prevent accidentally committing automatically
+ generated files into the CVS repository and help ensure that
+ the generated files and build scheme are correct.
+ ])
+ fi
+])
+
+dnl Add compiler flags to the CXXFLAGS and CFLAGS variables when doing an
+dnl AC_TRY_COMPILE (not ACE_TRY_COMPILE).
+dnl Use this macro when adding include directories to the compiler flags,
+dnl for example.
+dnl Usage: ACE_TRY_COMPILE(COMPILER-FLAGS, INCLUDES, FUNCTION-BODY,
+dnl [ACTION-IF-FOUND [,ACTION-IF-NOT-FOUND]])
+AC_DEFUN(ACE_TRY_COMPILE, dnl
+[
+ ace_pre_try_CXXFLAGS="$CXXFLAGS"
+ CXXFLAGS="$CXXFLAGS $1"
+
+ ace_pre_try_CFLAGS="$CFLAGS"
+ CFLAGS="$CFLAGS $1"
+
+ AC_TRY_COMPILE($2, $3, $4, $5)
+
+ dnl Restore the C++ and C flags
+ CXXFLAGS="$ace_pre_try_CXXFLAGS"
+ CFLAGS="$ace_pre_try_CFLAGS"
+
+])
+
+dnl Create a temporary empty file and remove it after commands are done using
+dnl it. The directory in which the temporary file will be created in must
+dnl exist. Files will be created under the source directory, not the build
+dnl directory.
+dnl Use this macro when you need a particular file available but want it to be
+dnl empty. This is useful to prevent conflicts with autoconf's confdefs.h
+dnl header when doing an AC_TRY_COMPILE.
+dnl Usage: ACE_USE_TEMP_FILE(TEMP-FILE-TO-CREATE, COMMANDS-THAT-WILL-USE-IT)
+AC_DEFUN(ACE_USE_TEMP_FILE, dnl
+[
+ if test -f ${srcdir}/$1; then
+ mv ${srcdir}/$1 ${srcdir}/$1.conf
+ fi
+
+ touch ${srcdir}/$1
+
+ $2
+
+ if test -f ${srcdir}/$1.conf; then
+ mv ${srcdir}/$1.conf ${srcdir}/$1
+ else
+ rm ${srcdir}/$1
+ fi
+])
+
+dnl Run given test(s) with warnings converted to errors
+dnl Usage: ACE_CONVERT_WARNINGS_TO_ERRORS(TEST-BLOCK)
+AC_DEFUN(ACE_CONVERT_WARNINGS_TO_ERRORS, dnl
+[
+dnl If we are using GNU C++, add the "-Werror" compiler flag to the
+dnl current set of flags so that compiler warnings become errors. We
+dnl do this to cause certain tests to fail when they are supposed to
+dnl fail. Some of the tests pass because the GNU C++ compiler issues
+dnl warnings instead of errors when errors should occur.
+dnl Other "treat warnings as errors" flags for other compilers should
+dnl be added if possible.
+ ace_pre_warning_CXXFLAGS="$CXXFLAGS"
+
+ if test -n "$GXX"; then
+ CXXFLAGS="$CXXFLAGS -Werror"
+ else
+ case $target in
+ *solaris*)
+ if test "$CXX" = CC; then
+ CXXFLAGS="$CXXFLAGS -xwe"
+ fi
+ ;;
+ *) ;;
+ esac
+ fi
+
+ $1
+
+ CXXFLAGS="$ace_pre_warning_CXXFLAGS"
+])
+
+dnl Wrapper around AC_CACHE_VAL used to ensure "ACTION-IF" commands are run
+dnl even if results have been previously cached.
+dnl Usage: ACE_CACHE_CHECK(MESSAGE, CACHE-ID, COMMANDS-TO-SET-CACHE-VAL,
+dnl ACTION-IF-CACHE-ID-IS-YES,
+dnl ACTION-IF-CACHE-ID-IS-NO)
+dnl The COMMANDS-TO-SET-CACHE-VAL should set the CACHE-ID to yes or "no,"
+dnl otherwise the "ACTION-IF*" commands may not run. The
+dnl COMMANDS-TO-SET-CACHE-VAL should only set the CACHE value. For example,
+dnl no AC_DEFINES should be placed in the COMMANDS-TO-SET-CACHE-VAL.
+AC_DEFUN(ACE_CACHE_CHECK,
+[
+ AC_MSG_CHECKING([$1])
+ AC_CACHE_VAL([$2], [$3])
+ AC_MSG_RESULT([$]$2)
+ if test "[$]$2" != no; then
+ ace_just_a_place_holder=fixme
+ifelse([$4], , :, [$4])
+ else
+ ace_just_a_place_holder=fixme
+ifelse([$5], , , [$5
+])
+ fi
+])
+
+dnl checks for programs
+
+dnl checks for libraries
+
+dnl checks for header files
+
+dnl checks for typedefs
+
+dnl Check for specific typedef in given header file
+dnl Usage: ACE_CHECK_TYPE(TYPEDEF, INCLUDE,
+dnl [ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND]])
+dnl This macro can only check for one typedef in one header file at a time!!
+AC_DEFUN(ACE_CHECK_TYPE, dnl
+[
+dnl AC_REQUIRE([AC_PROG_CXX])
+dnl AC_REQUIRE([AC_PROG_CXXCPP])
+dnl AC_REQUIRE([AC_LANG_CPLUSPLUS])
+
+ ACE_CACHE_CHECK(for $1 in $2, ace_cv_type_$1,
+ [
+ AC_TRY_COMPILE(
+ [
+#include <$2>
+ ],
+ [
+ $1 ace_$1;
+ ],
+ [
+ ace_cv_type_$1=yes
+ ],
+ [
+ ace_cv_type_$1=no
+ ])
+ ], $3, $4)
+])
+
+
+dnl checks for structures
+
+dnl Check for specific struct in given header file
+dnl Usage: ACE_CHECK_STRUCT(STRUCTURE, INCLUDE,
+dnl [ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND]])
+dnl This macro can only check for one struct in one header file at a time!!
+AC_DEFUN(ACE_CHECK_STRUCT, dnl
+[
+dnl AC_REQUIRE([AC_PROG_CXX])
+dnl AC_REQUIRE([AC_PROG_CXXCPP])
+dnl AC_REQUIRE([AC_LANG_CPLUSPLUS])
+
+dnl Do the transliteration at runtime so arg 1 can be a shell variable.
+dnl ac_safe=`echo "$1" | sed 'y%./+-%__p_%'`
+
+ ACE_CACHE_CHECK(for struct $1 in $2, ace_cv_struct_$1,
+ [
+ ACE_TRY_COMPILE_STRUCT($1, $2,
+ [
+ ace_cv_struct_$1=yes
+ ],
+ [
+ ace_cv_struct_$1=no
+ ])
+ ], $3, $4)
+])
+
+dnl Check for specific struct in given header file by compiling a test
+dnl program. This macro is used by ACE_CHECK_STRUCT.
+dnl Usage: ACE_TRY_COMPILE_STRUCT(STRUCTURE, INCLUDE,
+dnl [ACTION-IF-SUCCESSFUL[, ACTION-IF-NOT-SUCCESSFUL]])
+dnl This macro can only check for one struct in one header file at a time!!
+AC_DEFUN(ACE_TRY_COMPILE_STRUCT, dnl
+[
+dnl AC_REQUIRE([AC_PROG_CXX])
+dnl AC_REQUIRE([AC_PROG_CXXCPP])
+dnl AC_REQUIRE([AC_LANG_CPLUSPLUS])
+
+ AC_TRY_COMPILE(
+ [
+#include <$2>
+ ],
+ [
+ struct $1 ace_$1;
+ ],
+ [
+ $3
+ ],
+ [
+dnl Some compilers don't like the "struct" but we need the struct for some
+dnl platforms to resolve ambiguities between functions and structures with
+dnl with the same name. So, we try the same test but without "struct" if
+dnl the above test with "struct" fails. If both tests fail, then we can
+dnl be reasonably sure that we don't have the structure we are testing for.
+ AC_TRY_COMPILE(
+ [
+#include <$2>
+ ],
+ [
+ $1 ace_$1;
+ ],
+ [
+ $3
+ ],
+ [
+ $4
+ ])
+ ])
+])
+
+dnl checks for variables
+
+dnl checks for compiler characteristics
+
+dnl checks for library functions
+
+dnl Check for function using prototype in header
+dnl This macro is used if a function is called a different name in a given
+dnl library than what is in the header file but the difference is made
+dnl transparent to the user since the header may provide a macro to make
+dnl things "transparent." If the given header does not exist then this
+dnl macro acts just like the standard AC_CHECK_FUNC macro.
+dnl Usage: ACE_CHECK_FUNC(FUNCTION, HEADER,
+dnl [ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND]])
+AC_DEFUN(ACE_CHECK_FUNC, dnl
+[
+dnl AC_REQUIRE([AC_PROG_CXX])
+dnl AC_REQUIRE([AC_PROG_CXXCPP])
+dnl AC_REQUIRE([AC_LANG_CPLUSPLUS])
+ AC_REQUIRE([AC_PROG_AWK])
+
+ AC_TRY_CPP(
+ [
+#include <$2>
+ ], ace_header_exists=yes, ace_header_exists=no)
+
+ cat > conftest.$ac_ext <<EOF
+
+#include <$2>
+ ACE_REAL_FUNCTION $1
+
+EOF
+
+ if test "$ace_header_exists" = yes; then
+ if test -z "$AWK"; then
+ AC_MSG_WARN(No awk program found. "Real" function may not be found.)
+ fi
+
+ if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
+ egrep "ACE_REAL_FUNCTION" |
+ (eval "$AWK '{print \[$]2}' > conftest.awk 2>&1"); then
+ rm -f conftest.$ac_ext
+ ace_real_function=`cat conftest.awk`
+ rm -f conftest.awk
+ fi
+
+ if test $1 != "$ace_real_function"; then
+ AC_MSG_CHECKING(for real $1 from $2)
+ AC_MSG_RESULT($ace_real_function)
+ fi
+ else
+ ace_real_function=$1
+ fi dnl test "$ace_header_not_exist" != yes
+
+ AC_CHECK_FUNC($ace_real_function, $3, $4)
+])
+
+dnl Check for function in library using prototype in header
+dnl This macro is used if a function is called a different name in a given
+dnl library than what is in the header file but the difference is made
+dnl transparent to the user since the header may provide a macro to make
+dnl things "transparent." If the given header does not exist then this
+dnl macro acts just like the standard AC_CHECK_LIB macro.
+dnl Usage: ACE_CHECK_LIB(LIBRARY, FUNCTION, HEADER,
+dnl [ACTION-IF-FOUND [, ACTION-IF-NOT-FOUND]])
+AC_DEFUN(ACE_CHECK_LIB, dnl
+[
+dnl AC_REQUIRE([AC_PROG_CXX])
+dnl AC_REQUIRE([AC_PROG_CXXCPP])
+dnl AC_REQUIRE([AC_LANG_CPLUSPLUS])
+ AC_REQUIRE([AC_PROG_AWK])
+
+ AC_TRY_CPP(
+ [
+#include <$3>
+ ], ace_header_exists=yes, ace_header_exists=no)
+
+ cat > conftest.$ac_ext <<EOF
+
+#include <$3>
+ ACE_REAL_FUNCTION $2
+
+EOF
+
+ if test "$ace_header_exists" = yes; then
+ if test -z "$AWK"; then
+ AC_MSG_WARN(No awk program found. "Real" function in library may not be found.)
+ fi
+
+ if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
+ egrep "ACE_REAL_FUNCTION" |
+ eval "$AWK '{print \[$]2}'" > conftest.awk 2>&1; then
+ rm -f conftest.$ac_ext
+ ace_real_function=`cat conftest.awk`
+ rm -f conftest.awk
+ fi
+
+ if test $2 != "$ace_real_function"; then
+ AC_MSG_CHECKING(for real $2 from $3)
+ AC_MSG_RESULT($ace_real_function)
+ fi
+ else
+ ace_real_function=$2
+ fi dnl test "$ace_header_not_exist" != yes
+
+ AC_CHECK_LIB($1, $ace_real_function, $4, $5)
+])
+
+
+dnl checks for structures
+
+dnl checks for system services
+
+
+dnl *********************** SPECIAL SECTION *******************************
+dnl
+dnl This section contains my own *re*implementation of the functionality
+dnl provided by some tests/macros found in GNU Autoconf since the ones found
+dnl in Autoconf don't appear to work as expected.
+dnl
+dnl -Ossama Othman <ossama@debian.org>
+dnl
+dnl The copyright for the following macros is listed below.
+dnl Note that all macros listed prior to this section are copyrighted
+dnl by Ossama Othman, not the Free Software Foundation. Nevertheless,
+dnl all software found in this file is free software. Please read the
+dnl distribution terms found at the top of this file and the ones below.
+
+dnl Parameterized macros.
+dnl Requires GNU m4.
+dnl This file is part of Autoconf.
+dnl Copyright (C) 1992, 93, 94, 95, 96, 1998 Free Software Foundation, Inc.
+dnl
+dnl This program is free software; you can redistribute it and/or modify
+dnl it under the terms of the GNU General Public License as published by
+dnl the Free Software Foundation; either version 2, or (at your option)
+dnl any later version.
+dnl
+dnl This program is distributed in the hope that it will be useful,
+dnl but WITHOUT ANY WARRANTY; without even the implied warranty of
+dnl MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
+dnl GNU General Public License for more details.
+dnl
+dnl You should have received a copy of the GNU General Public License
+dnl along with this program; if not, write to the Free Software
+dnl Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
+dnl 02111-1307, USA.
+dnl
+dnl As a special exception, the Free Software Foundation gives unlimited
+dnl permission to copy, distribute and modify the configure scripts that
+dnl are the output of Autoconf. You need not follow the terms of the GNU
+dnl General Public License when using or distributing such scripts, even
+dnl though portions of the text of Autoconf appear in them. The GNU
+dnl General Public License (GPL) does govern all other use of the material
+dnl that constitutes the Autoconf program.
+dnl
+dnl Certain portions of the Autoconf source text are designed to be copied
+dnl (in certain cases, depending on the input) into the output of
+dnl Autoconf. We call these the "data" portions. The rest of the Autoconf
+dnl source text consists of comments plus executable code that decides which
+dnl of the data portions to output in any given case. We call these
+dnl comments and executable code the "non-data" portions. Autoconf never
+dnl copies any of the non-data portions into its output.
+dnl
+dnl This special exception to the GPL applies to versions of Autoconf
+dnl released by the Free Software Foundation. When you make and
+dnl distribute a modified version of Autoconf, you may extend this special
+dnl exception to the GPL to apply to your modified version as well, *unless*
+dnl your modified version has the potential to copy into its output some
+dnl of the text that was the non-data portion of the version that you started
+dnl with. (In other words, unless your change moves or copies text from
+dnl the non-data portions to the data portions.) If your modification has
+dnl such potential, you must delete any notice of this special exception
+dnl to the GPL from your modified version.
+dnl
+dnl Written by David MacKenzie, with help from
+dnl Franc,ois Pinard, Karl Berry, Richard Pixley, Ian Lance Taylor,
+dnl Roland McGrath, Noah Friedman, david d zuhn, and many others.
+
+
+dnl Usage: ACE_SEARCH_LIBS(FUNCTION, SEARCH-LIBS [, ACTION-IF-FOUND
+dnl [, ACTION-IF-NOT-FOUND [, OTHER-LIBRARIES]]])
+dnl Search for a library defining FUNCTION, if it's not already available.
+AC_DEFUN(ACE_SEARCH_LIBS,
+[
+ AC_CACHE_CHECK(for library containing $1, ac_cv_search_$1,
+ [
+ ac_func_search_save_LIBS="$LIBS"
+
+ ac_cv_search_$1="no"
+
+ ACE_TRY_LINK_FUNC([$1], [ac_cv_search_$1="none required"])
+
+ test "$ac_cv_search_$1" = "no" && for i in $2; do
+ LIBS="-l$i $5 $ac_func_search_save_LIBS"
+ ACE_TRY_LINK_FUNC($1,
+ [
+ ac_cv_search_$1="-l$i"
+ break
+ ])
+ done
+
+ LIBS="$ac_func_search_save_LIBS"
+ ])
+
+ if test "$ac_cv_search_$1" != "no"; then
+ test "$ac_cv_search_$1" = "none required" || LIBS="$ac_cv_search_$1 $LIBS"
+ $3
+ else :
+ $4
+ fi
+])
+
+dnl Usage: ACE_TRY_LINK_FUNC(FUNCTION,[, ACTION-IF-FOUND
+dnl [, ACTION-IF-NOT-FOUND])
+dnl Search for a library defining FUNCTION, if it's not already available.
+AC_DEFUN(ACE_TRY_LINK_FUNC,
+[
+AC_TRY_LINK(
+dnl Don't include <ctype.h> because on OSF/1 3.0 it includes <sys/types.h>
+dnl which includes <sys/select.h> which contains a prototype for
+dnl select. Similarly for bzero.
+[/* System header to define __stub macros and hopefully few prototypes,
+ which can conflict with char $1(); below. */
+#include <assert.h>
+/* Override any gcc2 internal prototype to avoid an error. */
+]ifelse(AC_LANG, CPLUSPLUS, [#ifdef __cplusplus
+extern "C"
+#endif
+])dnl
+[/* We use char because int might match the return type of a gcc2
+ builtin and then its argument prototype would still apply. */
+char $1();
+], [
+/* The GNU C library defines this for functions which it implements
+ to always fail with ENOSYS. Some functions are actually named
+ something starting with __ and the normal name is an alias. */
+#if defined (__stub_$1) || defined (__stub___$1)
+choke me
+#else
+$1();
+#endif
+],[$2],[$3])
+])
+
+dnl -------------------------------------------------------------------------
+dnl $Id$
+dnl
dnl threads.m4
dnl
dnl ACE M4 include file which contains ACE specific M4 macros
@@ -2717,6 +2717,7 @@ main (int, char *[])
])
])
], AC_DEFINE(ACE_HAS_AIO_CALLS), LIBS="$ace_save_LIBS")
+ rm -f test_aio.log
fi dnl test "$ace_has_aio_funcs" = yes
])
diff --git a/bin/bootstrap b/bin/bootstrap
index c8157c058ec..b0e3345806a 100755
--- a/bin/bootstrap
+++ b/bin/bootstrap
@@ -22,23 +22,52 @@
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
+set -e
+
+# This script must be run from the top-level ACE source directory
+if test -d m4; then
+
# Generate an `aclocal.m4' file from all existing m4 macro files
# including those in the `m4' directory.
+echo Running aclocal
aclocal -I m4
# Generate a `config.h.in' configuration header template from `acconfig.h'.
+echo 'Running autoheader (expect some "AC_TRY_RUN" warnings)'
autoheader
# Generate the `configure' script from the `configure.in'.
+echo 'Running autoconf (expect some "AC_TRY_RUN" warnings)'
autoconf
# Generate all `Makefile.in' templates in the directories listed in
# `configure.in' and add any missing files that GNU Automake needs so
# that the distribution and configuration processes will run properly.
+echo Running automake
automake --add-missing #--verbose
# Update the NEWS file
# For now just copy the contents of the `VERSION' file to make automake
# happy. Eventually, we should start putting real news in to it.
+echo Creating a NEWS file
cp VERSION NEWS
+# Generate the man pages
+if test -f man/man3/ACE.3; then
+ echo ACE man pages have already been generated.
+else
+ echo 'Generating the ACE man pages (this may take several minutes)'
+
+ (cd man/man3; \
+ ACE_ROOT=../..; \
+ export ACE_ROOT; \
+ ACE_HEADERS=`find $ACE_ROOT/ace -name CLASSIX -prune -o \
+ -name '*.h' ! -name 'config*.h' ! -name \
+ 'ws2tcpip.h' -print`; \
+ $ACE_ROOT/bin/class2man $ACE_HEADERS > /dev/null)
+fi # test -f man/man3/ACE.3
+
+else
+ echo ACE must be bootstrapped from the top-level ACE source directory.
+ exit 1;
+fi # test -d m4 \ No newline at end of file
diff --git a/configure b/configure
index 4b5dff649a3..98bd07b2ab8 100755
--- a/configure
+++ b/configure
@@ -1,6 +1,6 @@
#! /bin/sh
-# From configure.in Revision 0.65
+# From configure.in Revision 0.66
@@ -5544,7 +5544,7 @@ rm -f conftest*
test "$ac_cv_search_socket" = "no" && for i in socket; do
- LIBS="-l$i $ac_func_search_save_LIBS"
+ LIBS="-l$i -lnsl $ac_func_search_save_LIBS"
cat > conftest.$ac_ext <<EOF
#line 5551 "configure"
@@ -5755,8 +5755,8 @@ fi
rm -f conftest*
- test "$ac_cv_search_getservbyname" = "no" && for i in xnet; do
- LIBS="-l$i $ac_func_search_save_LIBS"
+ test "$ac_cv_search_getservbyname" = "no" && for i in socket xnet; do
+ LIBS="-l$i -lnsl $ac_func_search_save_LIBS"
cat > conftest.$ac_ext <<EOF
#line 5763 "configure"
@@ -7241,7 +7241,7 @@ fi
rm -f conftest*
- test "$ac_cv_search_sched_yield" = "no" && for i in posix4; do
+ test "$ac_cv_search_sched_yield" = "no" && for i in rt posix4; do
LIBS="-l$i $ac_func_search_save_LIBS"
cat > conftest.$ac_ext <<EOF
@@ -8009,11 +8009,12 @@ LIBS="$ace_save_LIBS"
fi
+ rm -f test_aio.log
fi
echo $ac_n "checking for library containing clock_gettime""... $ac_c" 1>&6
-echo "configure:8017: checking for library containing clock_gettime" >&5
+echo "configure:8018: 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
@@ -8024,7 +8025,7 @@ else
cat > conftest.$ac_ext <<EOF
-#line 8028 "configure"
+#line 8029 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char clock_gettime(); below. */
@@ -8050,7 +8051,7 @@ clock_gettime();
; return 0; }
EOF
-if { (eval echo configure:8054: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:8055: \"$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
@@ -8060,11 +8061,11 @@ fi
rm -f conftest*
- test "$ac_cv_search_clock_gettime" = "no" && for i in posix4; do
+ test "$ac_cv_search_clock_gettime" = "no" && for i in rt posix4; do
LIBS="-l$i $ac_func_search_save_LIBS"
cat > conftest.$ac_ext <<EOF
-#line 8068 "configure"
+#line 8069 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char clock_gettime(); below. */
@@ -8090,7 +8091,7 @@ clock_gettime();
; return 0; }
EOF
-if { (eval echo configure:8094: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:8095: \"$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"
@@ -8199,7 +8200,7 @@ fi
# 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:8203: checking for $ac_word" >&5
+echo "configure:8204: 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
@@ -8238,7 +8239,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:8242: checking for ld used by GCC" >&5
+echo "configure:8243: checking for ld used by GCC" >&5
ac_prog=`($CC -print-prog-name=ld) 2>&5`
case "$ac_prog" in
# Accept absolute paths.
@@ -8262,10 +8263,10 @@ echo "configure:8242: 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:8266: checking for GNU ld" >&5
+echo "configure:8267: checking for GNU ld" >&5
else
echo $ac_n "checking for non-GNU ld""... $ac_c" 1>&6
-echo "configure:8269: checking for non-GNU ld" >&5
+echo "configure:8270: 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
@@ -8301,7 +8302,7 @@ 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:8305: checking if the linker ($LD) is GNU ld" >&5
+echo "configure:8306: 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
@@ -8317,7 +8318,7 @@ echo "$ac_t""$ac_cv_prog_gnu_ld" 1>&6
echo $ac_n "checking for BSD-compatible nm""... $ac_c" 1>&6
-echo "configure:8321: checking for BSD-compatible nm" >&5
+echo "configure:8322: 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
@@ -8377,8 +8378,8 @@ test x"$silent" = xyes && libtool_flags="$libtool_flags --silent"
case "$host" in
*-*-irix6*)
# Find out which ABI we are using.
- echo '#line 8381 "configure"' > conftest.$ac_ext
- if { (eval echo configure:8382: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+ echo '#line 8382 "configure"' > conftest.$ac_ext
+ if { (eval echo configure:8383: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
case "`/usr/bin/file conftest.o`" in
*32-bit*)
LD="${LD-ld} -32"
@@ -8399,19 +8400,19 @@ case "$host" in
SAVE_CFLAGS="$CFLAGS"
CFLAGS="$CFLAGS -belf"
echo $ac_n "checking whether the C compiler needs -belf""... $ac_c" 1>&6
-echo "configure:8403: checking whether the C compiler needs -belf" >&5
+echo "configure:8404: 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 8408 "configure"
+#line 8409 "configure"
#include "confdefs.h"
int main() {
; return 0; }
EOF
-if { (eval echo configure:8415: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:8416: \"$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
@@ -8521,12 +8522,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:8525: checking for $ac_hdr that defines DIR" >&5
+echo "configure:8526: 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 8530 "configure"
+#line 8531 "configure"
#include "confdefs.h"
#include <sys/types.h>
#include <$ac_hdr>
@@ -8534,7 +8535,7 @@ int main() {
DIR *dirp = 0;
; return 0; }
EOF
-if { (eval echo configure:8538: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:8539: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
eval "ac_cv_header_dirent_$ac_safe=yes"
else
@@ -8559,7 +8560,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:8563: checking for opendir in -ldir" >&5
+echo "configure:8564: 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
@@ -8567,7 +8568,7 @@ else
ac_save_LIBS="$LIBS"
LIBS="-ldir $LIBS"
cat > conftest.$ac_ext <<EOF
-#line 8571 "configure"
+#line 8572 "configure"
#include "confdefs.h"
/* Override any gcc2 internal prototype to avoid an error. */
#ifdef __cplusplus
@@ -8581,7 +8582,7 @@ int main() {
opendir()
; return 0; }
EOF
-if { (eval echo configure:8585: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:8586: \"$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
@@ -8603,7 +8604,7 @@ fi
else
echo $ac_n "checking for opendir in -lx""... $ac_c" 1>&6
-echo "configure:8607: checking for opendir in -lx" >&5
+echo "configure:8608: 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
@@ -8611,7 +8612,7 @@ else
ac_save_LIBS="$LIBS"
LIBS="-lx $LIBS"
cat > conftest.$ac_ext <<EOF
-#line 8615 "configure"
+#line 8616 "configure"
#include "confdefs.h"
/* Override any gcc2 internal prototype to avoid an error. */
#ifdef __cplusplus
@@ -8625,7 +8626,7 @@ int main() {
opendir()
; return 0; }
EOF
-if { (eval echo configure:8629: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:8630: \"$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
@@ -8659,12 +8660,12 @@ EOF
fi
echo $ac_n "checking for sys/wait.h that is POSIX.1 compatible""... $ac_c" 1>&6
-echo "configure:8663: checking for sys/wait.h that is POSIX.1 compatible" >&5
+echo "configure:8664: 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 8668 "configure"
+#line 8669 "configure"
#include "confdefs.h"
#include <sys/types.h>
#include <sys/wait.h>
@@ -8680,7 +8681,7 @@ wait (&s);
s = WIFEXITED (s) ? WEXITSTATUS (s) : 1;
; return 0; }
EOF
-if { (eval echo configure:8684: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:8685: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
ac_cv_header_sys_wait_h=yes
else
@@ -8704,17 +8705,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:8708: checking for cygwin32/socket.h" >&5
+echo "configure:8709: 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 8713 "configure"
+#line 8714 "configure"
#include "confdefs.h"
#include <cygwin32/socket.h>
EOF
ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
-{ (eval echo configure:8718: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
+{ (eval echo configure:8719: \"$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*
@@ -8742,17 +8743,17 @@ fi
ac_safe=`echo "dlfcn.h" | sed 'y%./+-%__p_%'`
echo $ac_n "checking for dlfcn.h""... $ac_c" 1>&6
-echo "configure:8746: checking for dlfcn.h" >&5
+echo "configure:8747: 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 8751 "configure"
+#line 8752 "configure"
#include "confdefs.h"
#include <dlfcn.h>
EOF
ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
-{ (eval echo configure:8756: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
+{ (eval echo configure:8757: \"$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*
@@ -8783,17 +8784,17 @@ fi
ac_safe=`echo "malloc.h" | sed 'y%./+-%__p_%'`
echo $ac_n "checking for malloc.h""... $ac_c" 1>&6
-echo "configure:8787: checking for malloc.h" >&5
+echo "configure:8788: 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 8792 "configure"
+#line 8793 "configure"
#include "confdefs.h"
#include <malloc.h>
EOF
ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
-{ (eval echo configure:8797: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
+{ (eval echo configure:8798: \"$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*
@@ -8821,17 +8822,17 @@ fi
ac_safe=`echo "memory.h" | sed 'y%./+-%__p_%'`
echo $ac_n "checking for memory.h""... $ac_c" 1>&6
-echo "configure:8825: checking for memory.h" >&5
+echo "configure:8826: 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 8830 "configure"
+#line 8831 "configure"
#include "confdefs.h"
#include <memory.h>
EOF
ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
-{ (eval echo configure:8835: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
+{ (eval echo configure:8836: \"$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*
@@ -8859,17 +8860,17 @@ fi
ac_safe=`echo "bytesex.h" | sed 'y%./+-%__p_%'`
echo $ac_n "checking for bytesex.h""... $ac_c" 1>&6
-echo "configure:8863: checking for bytesex.h" >&5
+echo "configure:8864: 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 8868 "configure"
+#line 8869 "configure"
#include "confdefs.h"
#include <bytesex.h>
EOF
ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
-{ (eval echo configure:8873: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
+{ (eval echo configure:8874: \"$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*
@@ -8897,17 +8898,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:8901: checking for sys/msg.h" >&5
+echo "configure:8902: 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 8906 "configure"
+#line 8907 "configure"
#include "confdefs.h"
#include <sys/msg.h>
EOF
ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
-{ (eval echo configure:8911: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
+{ (eval echo configure:8912: \"$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*
@@ -8926,13 +8927,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:8930: checking if _KERNEL is needed for msg prototypes" >&5
+echo "configure:8931: 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 8936 "configure"
+#line 8937 "configure"
#include "confdefs.h"
#include <sys/msg.h>
@@ -8943,7 +8944,7 @@ int main() {
; return 0; }
EOF
-if { (eval echo configure:8947: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:8948: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
ace_cv_lib_broken_msg_h=no
@@ -8954,7 +8955,7 @@ else
rm -rf conftest*
cat > conftest.$ac_ext <<EOF
-#line 8958 "configure"
+#line 8959 "configure"
#include "confdefs.h"
#ifndef _KERNEL
@@ -8968,7 +8969,7 @@ int main() {
; return 0; }
EOF
-if { (eval echo configure:8972: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:8973: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
ace_cv_lib_broken_msg_h=yes
@@ -9014,17 +9015,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:9018: checking for sys/param.h" >&5
+echo "configure:9019: 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 9023 "configure"
+#line 9024 "configure"
#include "confdefs.h"
#include <sys/param.h>
EOF
ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
-{ (eval echo configure:9028: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
+{ (eval echo configure:9029: \"$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*
@@ -9052,17 +9053,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:9056: checking for sys/priocntl.h" >&5
+echo "configure:9057: 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 9061 "configure"
+#line 9062 "configure"
#include "confdefs.h"
#include <sys/priocntl.h>
EOF
ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
-{ (eval echo configure:9066: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
+{ (eval echo configure:9067: \"$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*
@@ -9086,17 +9087,17 @@ fi
ac_safe=`echo "ucontext.h" | sed 'y%./+-%__p_%'`
echo $ac_n "checking for ucontext.h""... $ac_c" 1>&6
-echo "configure:9090: checking for ucontext.h" >&5
+echo "configure:9091: 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 9095 "configure"
+#line 9096 "configure"
#include "confdefs.h"
#include <ucontext.h>
EOF
ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
-{ (eval echo configure:9100: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
+{ (eval echo configure:9101: \"$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*
@@ -9124,17 +9125,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:9128: checking for sys/procfs.h" >&5
+echo "configure:9129: 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 9133 "configure"
+#line 9134 "configure"
#include "confdefs.h"
#include <sys/procfs.h>
EOF
ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
-{ (eval echo configure:9138: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
+{ (eval echo configure:9139: \"$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*
@@ -9153,13 +9154,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:9157: checking if sys/procfs.h conflicts with ucontext.h" >&5
+echo "configure:9158: 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 9163 "configure"
+#line 9164 "configure"
#include "confdefs.h"
#ifndef ACE_LACKS_UCONTEXT_H
@@ -9174,7 +9175,7 @@ int main() {
; return 0; }
EOF
-if { (eval echo configure:9178: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:9179: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
ace_has_procfs_conflict=no
@@ -9215,17 +9216,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:9219: checking for sys/select.h" >&5
+echo "configure:9220: 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 9224 "configure"
+#line 9225 "configure"
#include "confdefs.h"
#include <sys/select.h>
EOF
ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
-{ (eval echo configure:9229: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
+{ (eval echo configure:9230: \"$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*
@@ -9252,17 +9253,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:9256: checking for netinet/tcp.h" >&5
+echo "configure:9257: 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 9261 "configure"
+#line 9262 "configure"
#include "confdefs.h"
#include <netinet/tcp.h>
EOF
ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
-{ (eval echo configure:9266: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
+{ (eval echo configure:9267: \"$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*
@@ -9290,17 +9291,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:9294: checking for sys/sockio.h" >&5
+echo "configure:9295: 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 9299 "configure"
+#line 9300 "configure"
#include "confdefs.h"
#include <sys/sockio.h>
EOF
ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
-{ (eval echo configure:9304: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
+{ (eval echo configure:9305: \"$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*
@@ -9327,17 +9328,17 @@ fi
ac_safe=`echo "sysent.h" | sed 'y%./+-%__p_%'`
echo $ac_n "checking for sysent.h""... $ac_c" 1>&6
-echo "configure:9331: checking for sysent.h" >&5
+echo "configure:9332: 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 9336 "configure"
+#line 9337 "configure"
#include "confdefs.h"
#include <sysent.h>
EOF
ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
-{ (eval echo configure:9341: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
+{ (eval echo configure:9342: \"$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*
@@ -9364,17 +9365,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:9368: checking for sys/systeminfo.h" >&5
+echo "configure:9369: 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 9373 "configure"
+#line 9374 "configure"
#include "confdefs.h"
#include <sys/systeminfo.h>
EOF
ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
-{ (eval echo configure:9378: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
+{ (eval echo configure:9379: \"$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*
@@ -9397,17 +9398,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:9401: checking for sys/filio.h" >&5
+echo "configure:9402: 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 9406 "configure"
+#line 9407 "configure"
#include "confdefs.h"
#include <sys/filio.h>
EOF
ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
-{ (eval echo configure:9411: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
+{ (eval echo configure:9412: \"$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*
@@ -9434,17 +9435,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:9438: checking for sys/uio.h" >&5
+echo "configure:9439: 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 9443 "configure"
+#line 9444 "configure"
#include "confdefs.h"
#include <sys/uio.h>
EOF
ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
-{ (eval echo configure:9448: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
+{ (eval echo configure:9449: \"$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*
@@ -9467,17 +9468,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:9471: checking for sys/ioctl.h" >&5
+echo "configure:9472: 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 9476 "configure"
+#line 9477 "configure"
#include "confdefs.h"
#include <sys/ioctl.h>
EOF
ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
-{ (eval echo configure:9481: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
+{ (eval echo configure:9482: \"$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*
@@ -9504,17 +9505,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:9508: checking for sys/types.h" >&5
+echo "configure:9509: 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 9513 "configure"
+#line 9514 "configure"
#include "confdefs.h"
#include <sys/types.h>
EOF
ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
-{ (eval echo configure:9518: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
+{ (eval echo configure:9519: \"$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*
@@ -9542,17 +9543,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:9546: checking for sys/termios.h" >&5
+echo "configure:9547: 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 9551 "configure"
+#line 9552 "configure"
#include "confdefs.h"
#include <sys/termios.h>
EOF
ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
-{ (eval echo configure:9556: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
+{ (eval echo configure:9557: \"$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*
@@ -9570,7 +9571,7 @@ if eval "test \"`echo '$ac_cv_header_'$ac_safe`\" = yes"; then
echo "$ac_t""yes" 1>&6
cat > conftest.$ac_ext <<EOF
-#line 9574 "configure"
+#line 9575 "configure"
#include "confdefs.h"
#include <sys/termios.h>
@@ -9607,17 +9608,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:9611: checking for xti.h" >&5
+echo "configure:9612: 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 9616 "configure"
+#line 9617 "configure"
#include "confdefs.h"
#include <xti.h>
EOF
ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
-{ (eval echo configure:9621: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
+{ (eval echo configure:9622: \"$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*
@@ -9651,17 +9652,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:9655: checking for sys/xti.h" >&5
+echo "configure:9656: 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 9660 "configure"
+#line 9661 "configure"
#include "confdefs.h"
#include <sys/xti.h>
EOF
ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
-{ (eval echo configure:9665: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
+{ (eval echo configure:9666: \"$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*
@@ -9699,17 +9700,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:9703: checking for sys/timod.h" >&5
+echo "configure:9704: 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 9708 "configure"
+#line 9709 "configure"
#include "confdefs.h"
#include <sys/timod.h>
EOF
ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
-{ (eval echo configure:9713: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
+{ (eval echo configure:9714: \"$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*
@@ -9736,17 +9737,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:9740: checking for tli/timod.h" >&5
+echo "configure:9741: 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 9745 "configure"
+#line 9746 "configure"
#include "confdefs.h"
#include <tli/timod.h>
EOF
ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
-{ (eval echo configure:9750: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
+{ (eval echo configure:9751: \"$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*
@@ -9778,17 +9779,17 @@ fi
ac_safe=`echo "tiuser.h" | sed 'y%./+-%__p_%'`
echo $ac_n "checking for tiuser.h""... $ac_c" 1>&6
-echo "configure:9782: checking for tiuser.h" >&5
+echo "configure:9783: 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 9787 "configure"
+#line 9788 "configure"
#include "confdefs.h"
#include <tiuser.h>
EOF
ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
-{ (eval echo configure:9792: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
+{ (eval echo configure:9793: \"$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*
@@ -9823,13 +9824,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:9827: checking if tiuser.h is protected by extern \"C\"" >&5
+echo "configure:9828: 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 9833 "configure"
+#line 9834 "configure"
#include "confdefs.h"
#include <tiuser.h>
EOF
@@ -9866,17 +9867,17 @@ EOF
fi
ac_safe=`echo "xliuser.h" | sed 'y%./+-%__p_%'`
echo $ac_n "checking for xliuser.h""... $ac_c" 1>&6
-echo "configure:9870: checking for xliuser.h" >&5
+echo "configure:9871: 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 9875 "configure"
+#line 9876 "configure"
#include "confdefs.h"
#include <xliuser.h>
EOF
ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
-{ (eval echo configure:9880: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
+{ (eval echo configure:9881: \"$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*
@@ -9912,13 +9913,13 @@ fi
if test "$ace_has_tli" = yes; then
echo $ac_n "checking for TLI prototypes""... $ac_c" 1>&6
-echo "configure:9916: checking for TLI prototypes" >&5
+echo "configure:9917: 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 9922 "configure"
+#line 9923 "configure"
#include "confdefs.h"
#if defined (ACE_HAS_TIMOD_H)
@@ -9984,13 +9985,13 @@ EOF
echo $ac_n "checking for t_errno in TLI headers""... $ac_c" 1>&6
-echo "configure:9988: checking for t_errno in TLI headers" >&5
+echo "configure:9989: 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 9994 "configure"
+#line 9995 "configure"
#include "confdefs.h"
#if defined (ACE_HAS_TIMOD_H)
@@ -10062,17 +10063,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:10066: checking for sys/time.h" >&5
+echo "configure:10067: 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 10071 "configure"
+#line 10072 "configure"
#include "confdefs.h"
#include <sys/time.h>
EOF
ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
-{ (eval echo configure:10076: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
+{ (eval echo configure:10077: \"$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*
@@ -10090,7 +10091,7 @@ if eval "test \"`echo '$ac_cv_header_'$ac_safe`\" = yes"; then
echo "$ac_t""yes" 1>&6
cat > conftest.$ac_ext <<EOF
-#line 10094 "configure"
+#line 10095 "configure"
#include "confdefs.h"
#include <time.h>
EOF
@@ -10116,17 +10117,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:10120: checking for sys/mman.h" >&5
+echo "configure:10121: 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 10125 "configure"
+#line 10126 "configure"
#include "confdefs.h"
#include <sys/mman.h>
EOF
ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
-{ (eval echo configure:10130: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
+{ (eval echo configure:10131: \"$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*
@@ -10144,7 +10145,7 @@ if eval "test \"`echo '$ac_cv_header_'$ac_safe`\" = yes"; then
echo "$ac_t""yes" 1>&6
cat > conftest.$ac_ext <<EOF
-#line 10148 "configure"
+#line 10149 "configure"
#include "confdefs.h"
#include <sys/mman.h>
EOF
@@ -10176,17 +10177,17 @@ fi
ac_safe=`echo "bstring.h" | sed 'y%./+-%__p_%'`
echo $ac_n "checking for bstring.h""... $ac_c" 1>&6
-echo "configure:10180: checking for bstring.h" >&5
+echo "configure:10181: 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 10185 "configure"
+#line 10186 "configure"
#include "confdefs.h"
#include <bstring.h>
EOF
ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
-{ (eval echo configure:10190: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
+{ (eval echo configure:10191: \"$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*
@@ -10204,7 +10205,7 @@ if eval "test \"`echo '$ac_cv_header_'$ac_safe`\" = yes"; then
echo "$ac_t""yes" 1>&6
cat > conftest.$ac_ext <<EOF
-#line 10208 "configure"
+#line 10209 "configure"
#include "confdefs.h"
#include <bstring.h>
EOF
@@ -10228,17 +10229,17 @@ fi
ac_safe=`echo "strings.h" | sed 'y%./+-%__p_%'`
echo $ac_n "checking for strings.h""... $ac_c" 1>&6
-echo "configure:10232: checking for strings.h" >&5
+echo "configure:10233: 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 10237 "configure"
+#line 10238 "configure"
#include "confdefs.h"
#include <strings.h>
EOF
ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
-{ (eval echo configure:10242: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
+{ (eval echo configure:10243: \"$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*
@@ -10256,7 +10257,7 @@ if eval "test \"`echo '$ac_cv_header_'$ac_safe`\" = yes"; then
echo "$ac_t""yes" 1>&6
cat > conftest.$ac_ext <<EOF
-#line 10260 "configure"
+#line 10261 "configure"
#include "confdefs.h"
#include <strings.h>
EOF
@@ -10280,17 +10281,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:10284: checking for sys/syscall.h" >&5
+echo "configure:10285: 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 10289 "configure"
+#line 10290 "configure"
#include "confdefs.h"
#include <sys/syscall.h>
EOF
ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
-{ (eval echo configure:10294: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
+{ (eval echo configure:10295: \"$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*
@@ -10317,17 +10318,17 @@ fi
ac_safe=`echo "poll.h" | sed 'y%./+-%__p_%'`
echo $ac_n "checking for poll.h""... $ac_c" 1>&6
-echo "configure:10321: checking for poll.h" >&5
+echo "configure:10322: 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 10326 "configure"
+#line 10327 "configure"
#include "confdefs.h"
#include <poll.h>
EOF
ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
-{ (eval echo configure:10331: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
+{ (eval echo configure:10332: \"$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*
@@ -10356,17 +10357,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:10360: checking for $ac_hdr" >&5
+echo "configure:10361: 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 10365 "configure"
+#line 10366 "configure"
#include "confdefs.h"
#include <$ac_hdr>
EOF
ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
-{ (eval echo configure:10370: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
+{ (eval echo configure:10371: \"$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*
@@ -10394,17 +10395,17 @@ done
ac_safe=`echo "regexpr.h" | sed 'y%./+-%__p_%'`
echo $ac_n "checking for regexpr.h""... $ac_c" 1>&6
-echo "configure:10398: checking for regexpr.h" >&5
+echo "configure:10399: 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 10403 "configure"
+#line 10404 "configure"
#include "confdefs.h"
#include <regexpr.h>
EOF
ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
-{ (eval echo configure:10408: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
+{ (eval echo configure:10409: \"$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*
@@ -10431,17 +10432,17 @@ fi
ac_safe=`echo "stropts.h" | sed 'y%./+-%__p_%'`
echo $ac_n "checking for stropts.h""... $ac_c" 1>&6
-echo "configure:10435: checking for stropts.h" >&5
+echo "configure:10436: 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 10440 "configure"
+#line 10441 "configure"
#include "confdefs.h"
#include <stropts.h>
EOF
ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
-{ (eval echo configure:10445: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
+{ (eval echo configure:10446: \"$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*
@@ -10468,17 +10469,17 @@ fi
ac_safe=`echo "siginfo.h" | sed 'y%./+-%__p_%'`
echo $ac_n "checking for siginfo.h""... $ac_c" 1>&6
-echo "configure:10472: checking for siginfo.h" >&5
+echo "configure:10473: 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 10477 "configure"
+#line 10478 "configure"
#include "confdefs.h"
#include <siginfo.h>
EOF
ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
-{ (eval echo configure:10482: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
+{ (eval echo configure:10483: \"$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*
@@ -10506,17 +10507,17 @@ fi
ac_safe=`echo "unistd.h" | sed 'y%./+-%__p_%'`
echo $ac_n "checking for unistd.h""... $ac_c" 1>&6
-echo "configure:10510: checking for unistd.h" >&5
+echo "configure:10511: 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 10515 "configure"
+#line 10516 "configure"
#include "confdefs.h"
#include <unistd.h>
EOF
ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
-{ (eval echo configure:10520: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
+{ (eval echo configure:10521: \"$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*
@@ -10544,17 +10545,17 @@ fi
ac_safe=`echo "utime.h" | sed 'y%./+-%__p_%'`
echo $ac_n "checking for utime.h""... $ac_c" 1>&6
-echo "configure:10548: checking for utime.h" >&5
+echo "configure:10549: 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 10553 "configure"
+#line 10554 "configure"
#include "confdefs.h"
#include <utime.h>
EOF
ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
-{ (eval echo configure:10558: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
+{ (eval echo configure:10559: \"$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*
@@ -10582,17 +10583,17 @@ fi
ac_safe=`echo "libc.h" | sed 'y%./+-%__p_%'`
echo $ac_n "checking for libc.h""... $ac_c" 1>&6
-echo "configure:10586: checking for libc.h" >&5
+echo "configure:10587: 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 10591 "configure"
+#line 10592 "configure"
#include "confdefs.h"
#include <libc.h>
EOF
ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
-{ (eval echo configure:10596: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
+{ (eval echo configure:10597: \"$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*
@@ -10619,17 +10620,17 @@ fi
ac_safe=`echo "osfcn.h" | sed 'y%./+-%__p_%'`
echo $ac_n "checking for osfcn.h""... $ac_c" 1>&6
-echo "configure:10623: checking for osfcn.h" >&5
+echo "configure:10624: 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 10628 "configure"
+#line 10629 "configure"
#include "confdefs.h"
#include <osfcn.h>
EOF
ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
-{ (eval echo configure:10633: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
+{ (eval echo configure:10634: \"$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*
@@ -10656,17 +10657,17 @@ fi
ac_safe=`echo "new" | sed 'y%./+-%__p_%'`
echo $ac_n "checking for new""... $ac_c" 1>&6
-echo "configure:10660: checking for new" >&5
+echo "configure:10661: 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 10665 "configure"
+#line 10666 "configure"
#include "confdefs.h"
#include <new>
EOF
ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
-{ (eval echo configure:10670: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
+{ (eval echo configure:10671: \"$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*
@@ -10691,17 +10692,17 @@ else
ac_safe=`echo "new.h" | sed 'y%./+-%__p_%'`
echo $ac_n "checking for new.h""... $ac_c" 1>&6
-echo "configure:10695: checking for new.h" >&5
+echo "configure:10696: 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 10700 "configure"
+#line 10701 "configure"
#include "confdefs.h"
#include <new.h>
EOF
ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
-{ (eval echo configure:10705: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
+{ (eval echo configure:10706: \"$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*
@@ -10731,17 +10732,17 @@ fi
ac_safe=`echo "stdexcept" | sed 'y%./+-%__p_%'`
echo $ac_n "checking for stdexcept""... $ac_c" 1>&6
-echo "configure:10735: checking for stdexcept" >&5
+echo "configure:10736: 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 10740 "configure"
+#line 10741 "configure"
#include "confdefs.h"
#include <stdexcept>
EOF
ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
-{ (eval echo configure:10745: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
+{ (eval echo configure:10746: \"$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*
@@ -10766,17 +10767,17 @@ else
ac_safe=`echo "exception.h" | sed 'y%./+-%__p_%'`
echo $ac_n "checking for exception.h""... $ac_c" 1>&6
-echo "configure:10770: checking for exception.h" >&5
+echo "configure:10771: 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 10775 "configure"
+#line 10776 "configure"
#include "confdefs.h"
#include <exception.h>
EOF
ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
-{ (eval echo configure:10780: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
+{ (eval echo configure:10781: \"$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*
@@ -10806,17 +10807,17 @@ fi
ac_safe=`echo "iomanip" | sed 'y%./+-%__p_%'`
echo $ac_n "checking for iomanip""... $ac_c" 1>&6
-echo "configure:10810: checking for iomanip" >&5
+echo "configure:10811: 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 10815 "configure"
+#line 10816 "configure"
#include "confdefs.h"
#include <iomanip>
EOF
ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
-{ (eval echo configure:10820: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
+{ (eval echo configure:10821: \"$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*
@@ -10843,17 +10844,17 @@ fi
ac_safe=`echo "cstring" | sed 'y%./+-%__p_%'`
echo $ac_n "checking for cstring""... $ac_c" 1>&6
-echo "configure:10847: checking for cstring" >&5
+echo "configure:10848: 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 10852 "configure"
+#line 10853 "configure"
#include "confdefs.h"
#include <cstring>
EOF
ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
-{ (eval echo configure:10857: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
+{ (eval echo configure:10858: \"$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*
@@ -10880,17 +10881,17 @@ fi
ac_safe=`echo "memory" | sed 'y%./+-%__p_%'`
echo $ac_n "checking for memory""... $ac_c" 1>&6
-echo "configure:10884: checking for memory" >&5
+echo "configure:10885: 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 10889 "configure"
+#line 10890 "configure"
#include "confdefs.h"
#include <memory>
EOF
ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
-{ (eval echo configure:10894: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
+{ (eval echo configure:10895: \"$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*
@@ -10913,17 +10914,17 @@ fi
ac_safe=`echo "map" | sed 'y%./+-%__p_%'`
echo $ac_n "checking for map""... $ac_c" 1>&6
-echo "configure:10917: checking for map" >&5
+echo "configure:10918: 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 10922 "configure"
+#line 10923 "configure"
#include "confdefs.h"
#include <map>
EOF
ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
-{ (eval echo configure:10927: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
+{ (eval echo configure:10928: \"$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*
@@ -10942,17 +10943,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:10946: checking for net/if.h" >&5
+echo "configure:10947: 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 10951 "configure"
+#line 10952 "configure"
#include "confdefs.h"
#include <net/if.h>
EOF
ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
-{ (eval echo configure:10956: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
+{ (eval echo configure:10957: \"$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*
@@ -10971,13 +10972,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:10975: checking if STL map class conflicts with <net/if.h> map struct" >&5
+echo "configure:10976: 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 10981 "configure"
+#line 10982 "configure"
#include "confdefs.h"
#ifndef ACE_LACKS_SYS_TYPES_H
@@ -10992,7 +10993,7 @@ int main() {
; return 0; }
EOF
-if { (eval echo configure:10996: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:10997: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
ace_cv_header_stl_map_conflict=no
@@ -11034,17 +11035,17 @@ fi
ac_safe=`echo "queue" | sed 'y%./+-%__p_%'`
echo $ac_n "checking for queue""... $ac_c" 1>&6
-echo "configure:11038: checking for queue" >&5
+echo "configure:11039: 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 11043 "configure"
+#line 11044 "configure"
#include "confdefs.h"
#include <queue>
EOF
ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
-{ (eval echo configure:11048: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
+{ (eval echo configure:11049: \"$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*
@@ -11063,17 +11064,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:11067: checking for netinet/in.h" >&5
+echo "configure:11068: 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 11072 "configure"
+#line 11073 "configure"
#include "confdefs.h"
#include <netinet/in.h>
EOF
ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
-{ (eval echo configure:11077: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
+{ (eval echo configure:11078: \"$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*
@@ -11092,13 +11093,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:11096: checking if STL queue class conflicts with <netinet/in.h> queue struct" >&5
+echo "configure:11097: 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 11102 "configure"
+#line 11103 "configure"
#include "confdefs.h"
#ifndef ACE_LACKS_SYS_TYPES_H
@@ -11113,7 +11114,7 @@ int main() {
; return 0; }
EOF
-if { (eval echo configure:11117: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:11118: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
ace_cv_header_stl_queue_conflict=no
@@ -11157,17 +11158,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:11161: checking for $ac_hdr" >&5
+echo "configure:11162: 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 11166 "configure"
+#line 11167 "configure"
#include "confdefs.h"
#include <$ac_hdr>
EOF
ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
-{ (eval echo configure:11171: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
+{ (eval echo configure:11172: \"$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*
@@ -11200,17 +11201,17 @@ done
ac_safe=`echo "iostream.h" | sed 'y%./+-%__p_%'`
echo $ac_n "checking for iostream.h""... $ac_c" 1>&6
-echo "configure:11204: checking for iostream.h" >&5
+echo "configure:11205: 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 11209 "configure"
+#line 11210 "configure"
#include "confdefs.h"
#include <iostream.h>
EOF
ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
-{ (eval echo configure:11214: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
+{ (eval echo configure:11215: \"$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*
@@ -11228,17 +11229,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:11232: checking for fstream.h" >&5
+echo "configure:11233: 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 11237 "configure"
+#line 11238 "configure"
#include "confdefs.h"
#include <fstream.h>
EOF
ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
-{ (eval echo configure:11242: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
+{ (eval echo configure:11243: \"$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*
@@ -11274,13 +11275,13 @@ fi
echo $ac_n "checking sched.h for thread scheduling definitions""... $ac_c" 1>&6
-echo "configure:11278: checking sched.h for thread scheduling definitions" >&5
+echo "configure:11279: 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 11284 "configure"
+#line 11285 "configure"
#include "confdefs.h"
#include <sched.h>
EOF
@@ -11316,13 +11317,13 @@ EOF
echo $ac_n "checking regexpr.h for regular expression support""... $ac_c" 1>&6
-echo "configure:11320: checking regexpr.h for regular expression support" >&5
+echo "configure:11321: 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 11326 "configure"
+#line 11327 "configure"
#include "confdefs.h"
#include <regexpr.h>
EOF
@@ -11340,7 +11341,7 @@ else
rm -rf conftest*
cat > conftest.$ac_ext <<EOF
-#line 11344 "configure"
+#line 11345 "configure"
#include "confdefs.h"
#include <regexpr.h>
EOF
@@ -11397,13 +11398,13 @@ EOF
echo $ac_n "checking if sprintf() returns char*""... $ac_c" 1>&6
-echo "configure:11401: checking if sprintf() returns char*" >&5
+echo "configure:11402: 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 11407 "configure"
+#line 11408 "configure"
#include "confdefs.h"
#include <stdlib.h>
@@ -11421,7 +11422,7 @@ int main() {
; return 0; }
EOF
-if { (eval echo configure:11425: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:11426: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
ace_cv_lib_charptr_sprintf=yes
@@ -11456,13 +11457,13 @@ EOF
echo $ac_n "checking for getopt() prototype""... $ac_c" 1>&6
-echo "configure:11460: checking for getopt() prototype" >&5
+echo "configure:11461: 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 11466 "configure"
+#line 11467 "configure"
#include "confdefs.h"
#include <unistd.h>
EOF
@@ -11476,7 +11477,7 @@ else
rm -rf conftest*
cat > conftest.$ac_ext <<EOF
-#line 11480 "configure"
+#line 11481 "configure"
#include "confdefs.h"
#include <stdlib.h>
EOF
@@ -11534,13 +11535,13 @@ EOF
echo $ac_n "checking for old malloc() prototype""... $ac_c" 1>&6
-echo "configure:11538: checking for old malloc() prototype" >&5
+echo "configure:11539: 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 11544 "configure"
+#line 11545 "configure"
#include "confdefs.h"
#include <stdlib.h>
@@ -11555,7 +11556,7 @@ int main() {
; return 0; }
EOF
-if { (eval echo configure:11559: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:11560: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
ace_cv_lib_old_malloc_proto=yes
@@ -11590,13 +11591,13 @@ EOF
echo $ac_n "checking for *_timedwait() prototypes""... $ac_c" 1>&6
-echo "configure:11594: checking for *_timedwait() prototypes" >&5
+echo "configure:11595: 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 11600 "configure"
+#line 11601 "configure"
#include "confdefs.h"
#include <pthread.h>
EOF
@@ -11610,7 +11611,7 @@ else
rm -rf conftest*
cat > conftest.$ac_ext <<EOF
-#line 11614 "configure"
+#line 11615 "configure"
#include "confdefs.h"
#include <fcntl.h>
EOF
@@ -11651,13 +11652,13 @@ EOF
echo $ac_n "checking for ualarm() prototype""... $ac_c" 1>&6
-echo "configure:11655: checking for ualarm() prototype" >&5
+echo "configure:11656: 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 11661 "configure"
+#line 11662 "configure"
#include "confdefs.h"
#include <unistd.h>
EOF
@@ -11694,13 +11695,13 @@ EOF
echo $ac_n "checking for getrusage() in sys/resource.h""... $ac_c" 1>&6
-echo "configure:11698: checking for getrusage() in sys/resource.h" >&5
+echo "configure:11699: 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 11704 "configure"
+#line 11705 "configure"
#include "confdefs.h"
#include <sys/resource.h>
EOF
@@ -11736,13 +11737,13 @@ EOF
echo $ac_n "checking for getrlimit() and setrlimit() in sys/resource.h""... $ac_c" 1>&6
-echo "configure:11740: checking for getrlimit() and setrlimit() in sys/resource.h" >&5
+echo "configure:11741: 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 11746 "configure"
+#line 11747 "configure"
#include "confdefs.h"
#include <sys/resource.h>
EOF
@@ -11751,7 +11752,7 @@ if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
rm -rf conftest*
cat > conftest.$ac_ext <<EOF
-#line 11755 "configure"
+#line 11756 "configure"
#include "confdefs.h"
#include <sys/resource.h>
EOF
@@ -11797,13 +11798,13 @@ EOF
echo $ac_n "checking if dlfcn.h is protected by extern \"C\"""... $ac_c" 1>&6
-echo "configure:11801: checking if dlfcn.h is protected by extern \"C\"" >&5
+echo "configure:11802: 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 11807 "configure"
+#line 11808 "configure"
#include "confdefs.h"
#include <dlfcn.h>
EOF
@@ -11839,13 +11840,348 @@ EOF
+ echo $ac_n "checking if XOPEN defines are needed for getpgid prototype""... $ac_c" 1>&6
+echo "configure:11845: checking if XOPEN defines are needed for getpgid prototype" >&5
+ if eval "test \"`echo '$''{'ace_cv_lib_getpgid_needs_xopen'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+else
+
+ save_CPPFLAGS="$CPPFLAGS"
+ ace_no_xopen="-U_XOPEN_SOURCE -U_XOPEN_SOURCE_EXTENDED"
+ CPPFLAGS="$CPPFLAGS $ace_no_xopen"
+ cat > conftest.$ac_ext <<EOF
+#line 11854 "configure"
+#include "confdefs.h"
+#include <unistd.h>
+EOF
+if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
+ egrep "[^_]+getpgid" >/dev/null 2>&1; then
+ rm -rf conftest*
+
+ ace_cv_lib_getpgid_needs_xopen=no
+
+else
+ rm -rf conftest*
+
+ ace_xopen="-D_XOPEN_SOURCE -D_XOPEN_SOURCE_EXTENDED"
+ CPPFLAGS="$save_CPPFLAGS $ace_xopen"
+ cat > conftest.$ac_ext <<EOF
+#line 11870 "configure"
+#include "confdefs.h"
+#include <unistd.h>
+EOF
+if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
+ egrep "[^_]+getpgid" >/dev/null 2>&1; then
+ rm -rf conftest*
+
+ ace_cv_lib_getpgid_needs_xopen=yes
+
+else
+ rm -rf conftest*
+
+ # We're hosed if we get here!
+ ace_cv_lib_getpgid_needs_xopen=no
+
+fi
+rm -f conftest*
+
+
+fi
+rm -f conftest*
+
+ CPPFLAGS="$save_CPPFLAGS"
+
+fi
+
+ echo "$ac_t""$ace_cv_lib_getpgid_needs_xopen" 1>&6
+ if test "$ace_cv_lib_getpgid_needs_xopen" != no; then
+ ace_just_a_place_holder=fixme
+cat >> confdefs.h <<\EOF
+#define ACE_LACKS_GETPGID_PROTOTYPE 1
+EOF
+
+ else
+ ace_just_a_place_holder=fixme
+
+ fi
+
+
+
+ echo $ac_n "checking if POSIX define is needed for strtok_r prototype""... $ac_c" 1>&6
+echo "configure:11912: checking if POSIX define is needed for strtok_r prototype" >&5
+ if eval "test \"`echo '$''{'ace_cv_lib_strtok_r_needs_posix'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+else
+
+ save_CPPFLAGS="$CPPFLAGS"
+ ace_no_posix="-U_POSIX_SOURCE"
+ CPPFLAGS="$CPPFLAGS $ace_no_posix"
+ cat > conftest.$ac_ext <<EOF
+#line 11921 "configure"
+#include "confdefs.h"
+#include <string.h>
+EOF
+if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
+ egrep "[^_]+strtok_r" >/dev/null 2>&1; then
+ rm -rf conftest*
+
+ ace_cv_lib_strtok_r_needs_posix=no
+
+else
+ rm -rf conftest*
+
+ ace_posix="-D_POSIX_SOURCE"
+ CPPFLAGS="$save_CPPFLAGS $ace_posix"
+ cat > conftest.$ac_ext <<EOF
+#line 11937 "configure"
+#include "confdefs.h"
+#include <string.h>
+EOF
+if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
+ egrep "[^_]+strtok_r" >/dev/null 2>&1; then
+ rm -rf conftest*
+
+ ace_cv_lib_strtok_r_needs_posix=yes
+
+else
+ rm -rf conftest*
+
+ # We're hosed if we get here!
+ ace_cv_lib_strtok_r_needs_posix=no
+
+fi
+rm -f conftest*
+
+
+fi
+rm -f conftest*
+
+ CPPFLAGS="$save_CPPFLAGS"
+
+fi
+
+ echo "$ac_t""$ace_cv_lib_strtok_r_needs_posix" 1>&6
+ if test "$ace_cv_lib_strtok_r_needs_posix" != no; then
+ ace_just_a_place_holder=fixme
+cat >> confdefs.h <<\EOF
+#define ACE_LACKS_STRTOK_R_PROTOTYPE 1
+EOF
+
+ else
+ ace_just_a_place_holder=fixme
+
+ fi
+
+
+
+ echo $ac_n "checking if XOPEN define is needed for strptime prototype""... $ac_c" 1>&6
+echo "configure:11979: checking if XOPEN define is needed for strptime prototype" >&5
+ if eval "test \"`echo '$''{'ace_cv_lib_strptime_needs_xopen'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+else
+
+ save_CPPFLAGS="$CPPFLAGS"
+ ace_no_xopen="-U_XOPEN_SOURCE"
+ CPPFLAGS="$CPPFLAGS $ace_no_xopen"
+ cat > conftest.$ac_ext <<EOF
+#line 11988 "configure"
+#include "confdefs.h"
+#include <time.h>
+EOF
+if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
+ egrep "[^_]+strptime" >/dev/null 2>&1; then
+ rm -rf conftest*
+
+ ace_cv_lib_strptime_needs_xopen=no
+
+else
+ rm -rf conftest*
+
+ ace_xopen="-D_XOPEN_SOURCE"
+ CPPFLAGS="$save_CPPFLAGS $ace_xopen"
+ cat > conftest.$ac_ext <<EOF
+#line 12004 "configure"
+#include "confdefs.h"
+#include <time.h>
+EOF
+if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
+ egrep "[^_]+strptime" >/dev/null 2>&1; then
+ rm -rf conftest*
+
+ ace_cv_lib_strptime_needs_xopen=yes
+
+else
+ rm -rf conftest*
+
+ # We're hosed if we get here!
+ ace_cv_lib_strptime_needs_xopen=no
+
+fi
+rm -f conftest*
+
+
+fi
+rm -f conftest*
+
+ CPPFLAGS="$save_CPPFLAGS"
+
+fi
+
+ echo "$ac_t""$ace_cv_lib_strptime_needs_xopen" 1>&6
+ if test "$ace_cv_lib_strptime_needs_xopen" != no; then
+ ace_just_a_place_holder=fixme
+cat >> confdefs.h <<\EOF
+#define ACE_LACKS_STRPTIME_PROTOTYPE 1
+EOF
+
+ else
+ ace_just_a_place_holder=fixme
+
+ fi
+
+
+
+ echo $ac_n "checking if LARGEFILE64 define is needed for lseek64 prototype""... $ac_c" 1>&6
+echo "configure:12046: checking if LARGEFILE64 define is needed for lseek64 prototype" >&5
+ if eval "test \"`echo '$''{'ace_cv_lib_lseek64_needs_largefile64'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+else
+
+ save_CPPFLAGS="$CPPFLAGS"
+ ace_no_largefile64="-U_LARGEFILE64_SOURCE"
+ CPPFLAGS="$CPPFLAGS $ace_no_largefile64"
+ cat > conftest.$ac_ext <<EOF
+#line 12055 "configure"
+#include "confdefs.h"
+#include <unistd.h>
+EOF
+if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
+ egrep "[^_]+lseek64" >/dev/null 2>&1; then
+ rm -rf conftest*
+
+ ace_cv_lib_lseek64_needs_largefile64=no
+
+else
+ rm -rf conftest*
+
+ ace_largefile64="-D_LARGEFILE64_SOURCE"
+ CPPFLAGS="$save_CPPFLAGS $ace_largefile64"
+ cat > conftest.$ac_ext <<EOF
+#line 12071 "configure"
+#include "confdefs.h"
+#include <unistd.h>
+EOF
+if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
+ egrep "[^_]+lseek64" >/dev/null 2>&1; then
+ rm -rf conftest*
+
+ ace_cv_lib_lseek64_needs_largefile64=yes
+
+else
+ rm -rf conftest*
+
+ # We're hosed if we get here!
+ ace_cv_lib_lseek64_needs_largefile64=no
+
+fi
+rm -f conftest*
+
+
+fi
+rm -f conftest*
+
+ CPPFLAGS="$save_CPPFLAGS"
+
+fi
+
+ echo "$ac_t""$ace_cv_lib_lseek64_needs_largefile64" 1>&6
+ if test "$ace_cv_lib_lseek64_needs_largefile64" != no; then
+ ace_just_a_place_holder=fixme
+cat >> confdefs.h <<\EOF
+#define ACE_LACKS_LSEEK64_PROTOTYPE 1
+EOF
+
+ else
+ ace_just_a_place_holder=fixme
+
+ fi
+
+
+
+ echo $ac_n "checking if XOPEN define is needed for pread prototype""... $ac_c" 1>&6
+echo "configure:12113: checking if XOPEN define is needed for pread prototype" >&5
+ if eval "test \"`echo '$''{'ace_cv_lib_pread_needs_xopen'+set}'`\" = set"; then
+ echo $ac_n "(cached) $ac_c" 1>&6
+else
+
+ save_CPPFLAGS="$CPPFLAGS"
+ ace_no_xopen="-U_XOPEN_SOURCE"
+ CPPFLAGS="$CPPFLAGS $ace_no_xopen"
+ cat > conftest.$ac_ext <<EOF
+#line 12122 "configure"
+#include "confdefs.h"
+#include <unistd.h>
+EOF
+if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
+ egrep "[^_]+pread" >/dev/null 2>&1; then
+ rm -rf conftest*
+
+ ace_cv_lib_pread_needs_xopen=no
+
+else
+ rm -rf conftest*
+
+ ace_xopen="-D_XOPEN_SOURCE=500"
+ CPPFLAGS="$save_CPPFLAGS $ace_xopen"
+ cat > conftest.$ac_ext <<EOF
+#line 12138 "configure"
+#include "confdefs.h"
+#include <unistd.h>
+EOF
+if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
+ egrep "[^_]+pread" >/dev/null 2>&1; then
+ rm -rf conftest*
+
+ ace_cv_lib_pread_needs_xopen=yes
+
+else
+ rm -rf conftest*
+
+ # We're hosed if we get here!
+ ace_cv_lib_pread_needs_xopen=no
+
+fi
+rm -f conftest*
+
+
+fi
+rm -f conftest*
+
+ CPPFLAGS="$save_CPPFLAGS"
+
+fi
+
+ echo "$ac_t""$ace_cv_lib_pread_needs_xopen" 1>&6
+ if test "$ace_cv_lib_pread_needs_xopen" != no; then
+ ace_just_a_place_holder=fixme
+cat >> confdefs.h <<\EOF
+#define ACE_LACKS_PREAD_PROTOTYPE 1
+EOF
+
+ else
+ ace_just_a_place_holder=fixme
+
+ fi
+
+
+
echo $ac_n "checking for uid_t in sys/types.h""... $ac_c" 1>&6
-echo "configure:11844: checking for uid_t in sys/types.h" >&5
+echo "configure:12180: 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 11849 "configure"
+#line 12185 "configure"
#include "confdefs.h"
#include <sys/types.h>
EOF
@@ -11874,12 +12210,12 @@ EOF
fi
echo $ac_n "checking for ANSI C header files""... $ac_c" 1>&6
-echo "configure:11878: checking for ANSI C header files" >&5
+echo "configure:12214: 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 11883 "configure"
+#line 12219 "configure"
#include "confdefs.h"
#include <stdlib.h>
#include <stdarg.h>
@@ -11887,7 +12223,7 @@ else
#include <float.h>
EOF
ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
-{ (eval echo configure:11891: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
+{ (eval echo configure:12227: \"$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*
@@ -11904,7 +12240,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 11908 "configure"
+#line 12244 "configure"
#include "confdefs.h"
#include <string.h>
EOF
@@ -11922,7 +12258,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 11926 "configure"
+#line 12262 "configure"
#include "confdefs.h"
#include <stdlib.h>
EOF
@@ -11943,7 +12279,7 @@ if test "$cross_compiling" = yes; then
:
else
cat > conftest.$ac_ext <<EOF
-#line 11947 "configure"
+#line 12283 "configure"
#include "confdefs.h"
#ifdef __cplusplus
extern "C" void exit(int);
@@ -11957,7 +12293,7 @@ if (XOR (islower (i), ISLOWER (i)) || toupper (i) != TOUPPER (i)) exit(2);
exit (0); }
EOF
-if { (eval echo configure:11961: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
+if { (eval echo configure:12297: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
then
:
else
@@ -11981,12 +12317,12 @@ EOF
fi
echo $ac_n "checking for mode_t""... $ac_c" 1>&6
-echo "configure:11985: checking for mode_t" >&5
+echo "configure:12321: 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 11990 "configure"
+#line 12326 "configure"
#include "confdefs.h"
#include <sys/types.h>
#if STDC_HEADERS
@@ -12014,12 +12350,12 @@ EOF
fi
echo $ac_n "checking for off_t""... $ac_c" 1>&6
-echo "configure:12018: checking for off_t" >&5
+echo "configure:12354: 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 12023 "configure"
+#line 12359 "configure"
#include "confdefs.h"
#include <sys/types.h>
#if STDC_HEADERS
@@ -12047,12 +12383,12 @@ EOF
fi
echo $ac_n "checking for pid_t""... $ac_c" 1>&6
-echo "configure:12051: checking for pid_t" >&5
+echo "configure:12387: 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 12056 "configure"
+#line 12392 "configure"
#include "confdefs.h"
#include <sys/types.h>
#if STDC_HEADERS
@@ -12080,12 +12416,12 @@ EOF
fi
echo $ac_n "checking for size_t""... $ac_c" 1>&6
-echo "configure:12084: checking for size_t" >&5
+echo "configure:12420: 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 12089 "configure"
+#line 12425 "configure"
#include "confdefs.h"
#include <sys/types.h>
#if STDC_HEADERS
@@ -12115,15 +12451,16 @@ fi
+
echo $ac_n "checking for idtype_t in signal.h""... $ac_c" 1>&6
-echo "configure:12121: checking for idtype_t in signal.h" >&5
+echo "configure:12458: 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 12127 "configure"
+#line 12464 "configure"
#include "confdefs.h"
#include <signal.h>
@@ -12134,7 +12471,7 @@ int main() {
; return 0; }
EOF
-if { (eval echo configure:12138: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:12475: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
ace_cv_type_idtype_t=yes
@@ -12168,13 +12505,13 @@ EOF
echo $ac_n "checking for sem_t in semaphore.h""... $ac_c" 1>&6
-echo "configure:12172: checking for sem_t in semaphore.h" >&5
+echo "configure:12509: 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 12178 "configure"
+#line 12515 "configure"
#include "confdefs.h"
#include <semaphore.h>
@@ -12185,7 +12522,7 @@ int main() {
; return 0; }
EOF
-if { (eval echo configure:12189: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:12526: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
ace_cv_type_sem_t=yes
@@ -12216,13 +12553,13 @@ fi
echo $ac_n "checking for key_t in sys/types.h""... $ac_c" 1>&6
-echo "configure:12220: checking for key_t in sys/types.h" >&5
+echo "configure:12557: 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 12226 "configure"
+#line 12563 "configure"
#include "confdefs.h"
#include <sys/types.h>
@@ -12233,7 +12570,7 @@ int main() {
; return 0; }
EOF
-if { (eval echo configure:12237: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:12574: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
ace_cv_type_key_t=yes
@@ -12268,13 +12605,13 @@ EOF
echo $ac_n "checking for ssize_t in sys/types.h""... $ac_c" 1>&6
-echo "configure:12272: checking for ssize_t in sys/types.h" >&5
+echo "configure:12609: 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 12278 "configure"
+#line 12615 "configure"
#include "confdefs.h"
#include <sys/types.h>
@@ -12285,7 +12622,7 @@ int main() {
; return 0; }
EOF
-if { (eval echo configure:12289: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:12626: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
ace_cv_type_ssize_t=yes
@@ -12319,13 +12656,13 @@ EOF
echo $ac_n "checking for u_longlong_t in sys/types.h""... $ac_c" 1>&6
-echo "configure:12323: checking for u_longlong_t in sys/types.h" >&5
+echo "configure:12660: 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 12329 "configure"
+#line 12666 "configure"
#include "confdefs.h"
#include <sys/types.h>
@@ -12336,7 +12673,7 @@ int main() {
; return 0; }
EOF
-if { (eval echo configure:12340: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:12677: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
ace_cv_type_u_longlong_t=yes
@@ -12371,13 +12708,13 @@ EOF
echo $ac_n "checking for pri_t in sys/types.h""... $ac_c" 1>&6
-echo "configure:12375: checking for pri_t in sys/types.h" >&5
+echo "configure:12712: 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 12381 "configure"
+#line 12718 "configure"
#include "confdefs.h"
#include <sys/types.h>
@@ -12388,7 +12725,7 @@ int main() {
; return 0; }
EOF
-if { (eval echo configure:12392: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:12729: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
ace_cv_type_pri_t=yes
@@ -12423,13 +12760,13 @@ EOF
echo $ac_n "checking for socklen_t in sys/socket.h""... $ac_c" 1>&6
-echo "configure:12427: checking for socklen_t in sys/socket.h" >&5
+echo "configure:12764: 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 12433 "configure"
+#line 12770 "configure"
#include "confdefs.h"
#include <sys/socket.h>
@@ -12440,7 +12777,7 @@ int main() {
; return 0; }
EOF
-if { (eval echo configure:12444: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:12781: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
ace_cv_type_socklen_t=yes
@@ -12474,13 +12811,13 @@ EOF
echo $ac_n "checking for ucontext_t in ucontext.h""... $ac_c" 1>&6
-echo "configure:12478: checking for ucontext_t in ucontext.h" >&5
+echo "configure:12815: 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 12484 "configure"
+#line 12821 "configure"
#include "confdefs.h"
#include <ucontext.h>
@@ -12491,7 +12828,7 @@ int main() {
; return 0; }
EOF
-if { (eval echo configure:12495: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:12832: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
ace_cv_type_ucontext_t=yes
@@ -12525,13 +12862,13 @@ EOF
echo $ac_n "checking for wchar_t in wchar.h""... $ac_c" 1>&6
-echo "configure:12529: checking for wchar_t in wchar.h" >&5
+echo "configure:12866: 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 12535 "configure"
+#line 12872 "configure"
#include "confdefs.h"
#include <wchar.h>
@@ -12542,7 +12879,7 @@ int main() {
; return 0; }
EOF
-if { (eval echo configure:12546: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:12883: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
ace_cv_type_wchar_t=yes
@@ -12572,13 +12909,13 @@ EOF
echo $ac_n "checking for wchar_t in sys/types.h""... $ac_c" 1>&6
-echo "configure:12576: checking for wchar_t in sys/types.h" >&5
+echo "configure:12913: 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 12582 "configure"
+#line 12919 "configure"
#include "confdefs.h"
#include <sys/types.h>
@@ -12589,7 +12926,7 @@ int main() {
; return 0; }
EOF
-if { (eval echo configure:12593: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:12930: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
ace_cv_type_wchar_t=yes
@@ -12628,13 +12965,13 @@ EOF
echo $ac_n "checking for sig_atomic_t""... $ac_c" 1>&6
-echo "configure:12632: checking for sig_atomic_t" >&5
+echo "configure:12969: 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 12638 "configure"
+#line 12975 "configure"
#include "confdefs.h"
#ifndef ACE_LACKS_SYS_TYPES_H
@@ -12648,7 +12985,7 @@ int main() {
; return 0; }
EOF
-if { (eval echo configure:12652: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:12989: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
ace_cv_lib_posix_defines_sig_atomic_t=yes
@@ -12684,7 +13021,7 @@ EOF
echo $ac_n "checking for struct flock in fcntl.h""... $ac_c" 1>&6
-echo "configure:12688: checking for struct flock in fcntl.h" >&5
+echo "configure:13025: 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
@@ -12692,7 +13029,7 @@ else
cat > conftest.$ac_ext <<EOF
-#line 12696 "configure"
+#line 13033 "configure"
#include "confdefs.h"
#include <fcntl.h>
@@ -12703,7 +13040,7 @@ int main() {
; return 0; }
EOF
-if { (eval echo configure:12707: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:13044: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
@@ -12716,7 +13053,7 @@ else
rm -rf conftest*
cat > conftest.$ac_ext <<EOF
-#line 12720 "configure"
+#line 13057 "configure"
#include "confdefs.h"
#include <fcntl.h>
@@ -12727,7 +13064,7 @@ int main() {
; return 0; }
EOF
-if { (eval echo configure:12731: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:13068: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
@@ -12771,7 +13108,7 @@ EOF
echo $ac_n "checking for struct rwlock_t in synch.h""... $ac_c" 1>&6
-echo "configure:12775: checking for struct rwlock_t in synch.h" >&5
+echo "configure:13112: 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
@@ -12779,7 +13116,7 @@ else
cat > conftest.$ac_ext <<EOF
-#line 12783 "configure"
+#line 13120 "configure"
#include "confdefs.h"
#include <synch.h>
@@ -12790,7 +13127,7 @@ int main() {
; return 0; }
EOF
-if { (eval echo configure:12794: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:13131: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
@@ -12803,7 +13140,7 @@ else
rm -rf conftest*
cat > conftest.$ac_ext <<EOF
-#line 12807 "configure"
+#line 13144 "configure"
#include "confdefs.h"
#include <synch.h>
@@ -12814,7 +13151,7 @@ int main() {
; return 0; }
EOF
-if { (eval echo configure:12818: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:13155: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
@@ -12858,7 +13195,7 @@ EOF
echo $ac_n "checking for struct strbuf in stropts.h""... $ac_c" 1>&6
-echo "configure:12862: checking for struct strbuf in stropts.h" >&5
+echo "configure:13199: 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
@@ -12866,7 +13203,7 @@ else
cat > conftest.$ac_ext <<EOF
-#line 12870 "configure"
+#line 13207 "configure"
#include "confdefs.h"
#include <stropts.h>
@@ -12877,7 +13214,7 @@ int main() {
; return 0; }
EOF
-if { (eval echo configure:12881: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:13218: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
@@ -12890,7 +13227,7 @@ else
rm -rf conftest*
cat > conftest.$ac_ext <<EOF
-#line 12894 "configure"
+#line 13231 "configure"
#include "confdefs.h"
#include <stropts.h>
@@ -12901,7 +13238,7 @@ int main() {
; return 0; }
EOF
-if { (eval echo configure:12905: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:13242: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
@@ -12944,7 +13281,7 @@ EOF
echo $ac_n "checking for struct msgbuf in sys/msg.h""... $ac_c" 1>&6
-echo "configure:12948: checking for struct msgbuf in sys/msg.h" >&5
+echo "configure:13285: 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
@@ -12952,7 +13289,7 @@ else
cat > conftest.$ac_ext <<EOF
-#line 12956 "configure"
+#line 13293 "configure"
#include "confdefs.h"
#include <sys/msg.h>
@@ -12963,7 +13300,7 @@ int main() {
; return 0; }
EOF
-if { (eval echo configure:12967: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:13304: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
@@ -12976,7 +13313,7 @@ else
rm -rf conftest*
cat > conftest.$ac_ext <<EOF
-#line 12980 "configure"
+#line 13317 "configure"
#include "confdefs.h"
#include <sys/msg.h>
@@ -12987,7 +13324,7 @@ int main() {
; return 0; }
EOF
-if { (eval echo configure:12991: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:13328: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
@@ -13035,7 +13372,7 @@ case "$target" in
echo $ac_n "checking for struct prusage_t in sys/procfs.h""... $ac_c" 1>&6
-echo "configure:13039: checking for struct prusage_t in sys/procfs.h" >&5
+echo "configure:13376: 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
@@ -13043,7 +13380,7 @@ else
cat > conftest.$ac_ext <<EOF
-#line 13047 "configure"
+#line 13384 "configure"
#include "confdefs.h"
#include <sys/procfs.h>
@@ -13054,7 +13391,7 @@ int main() {
; return 0; }
EOF
-if { (eval echo configure:13058: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:13395: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
@@ -13067,7 +13404,7 @@ else
rm -rf conftest*
cat > conftest.$ac_ext <<EOF
-#line 13071 "configure"
+#line 13408 "configure"
#include "confdefs.h"
#include <sys/procfs.h>
@@ -13078,7 +13415,7 @@ int main() {
; return 0; }
EOF
-if { (eval echo configure:13082: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:13419: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
@@ -13123,7 +13460,7 @@ esac
echo $ac_n "checking for struct strrecvfd in stropts.h""... $ac_c" 1>&6
-echo "configure:13127: checking for struct strrecvfd in stropts.h" >&5
+echo "configure:13464: 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
@@ -13131,7 +13468,7 @@ else
cat > conftest.$ac_ext <<EOF
-#line 13135 "configure"
+#line 13472 "configure"
#include "confdefs.h"
#include <stropts.h>
@@ -13142,7 +13479,7 @@ int main() {
; return 0; }
EOF
-if { (eval echo configure:13146: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:13483: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
@@ -13155,7 +13492,7 @@ else
rm -rf conftest*
cat > conftest.$ac_ext <<EOF
-#line 13159 "configure"
+#line 13496 "configure"
#include "confdefs.h"
#include <stropts.h>
@@ -13166,7 +13503,7 @@ int main() {
; return 0; }
EOF
-if { (eval echo configure:13170: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:13507: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
@@ -13210,7 +13547,7 @@ EOF
echo $ac_n "checking for struct sembuf in sys/sem.h""... $ac_c" 1>&6
-echo "configure:13214: checking for struct sembuf in sys/sem.h" >&5
+echo "configure:13551: 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
@@ -13218,7 +13555,7 @@ else
cat > conftest.$ac_ext <<EOF
-#line 13222 "configure"
+#line 13559 "configure"
#include "confdefs.h"
#include <sys/sem.h>
@@ -13229,7 +13566,7 @@ int main() {
; return 0; }
EOF
-if { (eval echo configure:13233: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:13570: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
@@ -13242,7 +13579,7 @@ else
rm -rf conftest*
cat > conftest.$ac_ext <<EOF
-#line 13246 "configure"
+#line 13583 "configure"
#include "confdefs.h"
#include <sys/sem.h>
@@ -13253,7 +13590,7 @@ int main() {
; return 0; }
EOF
-if { (eval echo configure:13257: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:13594: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
@@ -13297,7 +13634,7 @@ EOF
echo $ac_n "checking for struct sigaction in signal.h""... $ac_c" 1>&6
-echo "configure:13301: checking for struct sigaction in signal.h" >&5
+echo "configure:13638: 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
@@ -13305,7 +13642,7 @@ else
cat > conftest.$ac_ext <<EOF
-#line 13309 "configure"
+#line 13646 "configure"
#include "confdefs.h"
#include <signal.h>
@@ -13316,7 +13653,7 @@ int main() {
; return 0; }
EOF
-if { (eval echo configure:13320: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:13657: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
@@ -13329,7 +13666,7 @@ else
rm -rf conftest*
cat > conftest.$ac_ext <<EOF
-#line 13333 "configure"
+#line 13670 "configure"
#include "confdefs.h"
#include <signal.h>
@@ -13340,7 +13677,7 @@ int main() {
; return 0; }
EOF
-if { (eval echo configure:13344: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:13681: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
@@ -13384,7 +13721,7 @@ EOF
echo $ac_n "checking for struct sigset_t in signal.h""... $ac_c" 1>&6
-echo "configure:13388: checking for struct sigset_t in signal.h" >&5
+echo "configure:13725: 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
@@ -13392,7 +13729,7 @@ else
cat > conftest.$ac_ext <<EOF
-#line 13396 "configure"
+#line 13733 "configure"
#include "confdefs.h"
#include <signal.h>
@@ -13403,7 +13740,7 @@ int main() {
; return 0; }
EOF
-if { (eval echo configure:13407: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:13744: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
@@ -13416,7 +13753,7 @@ else
rm -rf conftest*
cat > conftest.$ac_ext <<EOF
-#line 13420 "configure"
+#line 13757 "configure"
#include "confdefs.h"
#include <signal.h>
@@ -13427,7 +13764,7 @@ int main() {
; return 0; }
EOF
-if { (eval echo configure:13431: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:13768: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
@@ -13471,7 +13808,7 @@ EOF
echo $ac_n "checking for struct utsname in sys/utsname.h""... $ac_c" 1>&6
-echo "configure:13475: checking for struct utsname in sys/utsname.h" >&5
+echo "configure:13812: 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
@@ -13479,7 +13816,7 @@ else
cat > conftest.$ac_ext <<EOF
-#line 13483 "configure"
+#line 13820 "configure"
#include "confdefs.h"
#include <sys/utsname.h>
@@ -13490,7 +13827,7 @@ int main() {
; return 0; }
EOF
-if { (eval echo configure:13494: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:13831: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
@@ -13503,7 +13840,7 @@ else
rm -rf conftest*
cat > conftest.$ac_ext <<EOF
-#line 13507 "configure"
+#line 13844 "configure"
#include "confdefs.h"
#include <sys/utsname.h>
@@ -13514,7 +13851,7 @@ int main() {
; return 0; }
EOF
-if { (eval echo configure:13518: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:13855: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
@@ -13556,7 +13893,7 @@ EOF
echo $ac_n "checking for struct siginfo_t""... $ac_c" 1>&6
-echo "configure:13560: checking for struct siginfo_t" >&5
+echo "configure:13897: 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
@@ -13564,7 +13901,7 @@ else
cat > conftest.$ac_ext <<EOF
-#line 13568 "configure"
+#line 13905 "configure"
#include "confdefs.h"
#include <siginfo.h>
@@ -13575,7 +13912,7 @@ int main() {
; return 0; }
EOF
-if { (eval echo configure:13579: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:13916: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
@@ -13588,7 +13925,7 @@ else
rm -rf conftest*
cat > conftest.$ac_ext <<EOF
-#line 13592 "configure"
+#line 13929 "configure"
#include "confdefs.h"
#include <siginfo.h>
@@ -13599,7 +13936,7 @@ int main() {
; return 0; }
EOF
-if { (eval echo configure:13603: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:13940: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
@@ -13615,7 +13952,7 @@ else
cat > conftest.$ac_ext <<EOF
-#line 13619 "configure"
+#line 13956 "configure"
#include "confdefs.h"
#include <signal.h>
@@ -13626,7 +13963,7 @@ int main() {
; return 0; }
EOF
-if { (eval echo configure:13630: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:13967: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
@@ -13639,7 +13976,7 @@ else
rm -rf conftest*
cat > conftest.$ac_ext <<EOF
-#line 13643 "configure"
+#line 13980 "configure"
#include "confdefs.h"
#include <signal.h>
@@ -13650,7 +13987,7 @@ int main() {
; return 0; }
EOF
-if { (eval echo configure:13654: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:13991: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
@@ -13700,13 +14037,13 @@ EOF
echo $ac_n "checking for struct msghdr""... $ac_c" 1>&6
-echo "configure:13704: checking for struct msghdr" >&5
+echo "configure:14041: 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 13710 "configure"
+#line 14047 "configure"
#include "confdefs.h"
#ifndef ACE_LACKS_SYS_TYPES_H
@@ -13720,7 +14057,7 @@ int main() {
; return 0; }
EOF
-if { (eval echo configure:13724: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:14061: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
ace_cv_struct_msghdr=yes
@@ -13752,13 +14089,13 @@ EOF
echo $ac_n "checking for condition variable support""... $ac_c" 1>&6
-echo "configure:13756: checking for condition variable support" >&5
+echo "configure:14093: 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 13762 "configure"
+#line 14099 "configure"
#include "confdefs.h"
#include <pthread.h>
@@ -13769,7 +14106,7 @@ int main() {
; return 0; }
EOF
-if { (eval echo configure:13773: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:14110: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
ace_cv_struct_cond_t=yes
@@ -13780,7 +14117,7 @@ else
rm -rf conftest*
cat > conftest.$ac_ext <<EOF
-#line 13784 "configure"
+#line 14121 "configure"
#include "confdefs.h"
#include <synch.h>
@@ -13791,7 +14128,7 @@ int main() {
; return 0; }
EOF
-if { (eval echo configure:13795: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:14132: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
ace_cv_struct_cond_t=yes
@@ -13827,13 +14164,13 @@ EOF
echo $ac_n "checking for POSIX timer structure""... $ac_c" 1>&6
-echo "configure:13831: checking for POSIX timer structure" >&5
+echo "configure:14168: 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 13837 "configure"
+#line 14174 "configure"
#include "confdefs.h"
#include <time.h>
@@ -13848,7 +14185,7 @@ int main() {
; return 0; }
EOF
-if { (eval echo configure:13852: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:14189: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
ace_cv_lib_posix_timer_struct=yes
@@ -13859,7 +14196,7 @@ else
rm -rf conftest*
cat > conftest.$ac_ext <<EOF
-#line 13863 "configure"
+#line 14200 "configure"
#include "confdefs.h"
#include <time.h>
@@ -13874,19 +14211,19 @@ int main() {
; return 0; }
EOF
-if { (eval echo configure:13878: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:14215: \"$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:13884: checking for struct timespec in sys/timers.h" >&5
+echo "configure:14221: 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 13890 "configure"
+#line 14227 "configure"
#include "confdefs.h"
#include <sys/timers.h>
@@ -13897,7 +14234,7 @@ int main() {
; return 0; }
EOF
-if { (eval echo configure:13901: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:14238: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
ace_cv_lib_posix_struct_timespec_broken=yes
@@ -13962,13 +14299,13 @@ EOF
echo $ac_n "checking for struct timespec in sys/timers.h""... $ac_c" 1>&6
-echo "configure:13966: checking for struct timespec in sys/timers.h" >&5
+echo "configure:14303: 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 13972 "configure"
+#line 14309 "configure"
#include "confdefs.h"
#include <sys/timers.h>
@@ -13979,7 +14316,7 @@ int main() {
; return 0; }
EOF
-if { (eval echo configure:13983: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:14320: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
ace_cv_lib_posix_struct_timespec_broken=yes
@@ -14015,13 +14352,13 @@ EOF
echo $ac_n "checking for timespec_t""... $ac_c" 1>&6
-echo "configure:14019: checking for timespec_t" >&5
+echo "configure:14356: 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 14025 "configure"
+#line 14362 "configure"
#include "confdefs.h"
#include <time.h>
@@ -14036,7 +14373,7 @@ int main() {
; return 0; }
EOF
-if { (eval echo configure:14040: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:14377: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
ace_cv_lib_posix_timespec_t=yes
@@ -14069,13 +14406,13 @@ EOF
echo $ac_n "checking for union semun""... $ac_c" 1>&6
-echo "configure:14073: checking for union semun" >&5
+echo "configure:14410: 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 14079 "configure"
+#line 14416 "configure"
#include "confdefs.h"
#ifndef ACE_LACKS_SYS_TYPES_H
@@ -14092,7 +14429,7 @@ semun us;
; return 0; }
EOF
-if { (eval echo configure:14096: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:14433: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
ace_cv_lib_posix_defines_union_semun=yes
@@ -14125,13 +14462,13 @@ EOF
echo $ac_n "checking for broken struct timespec members""... $ac_c" 1>&6
-echo "configure:14129: checking for broken struct timespec members" >&5
+echo "configure:14466: 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 14135 "configure"
+#line 14472 "configure"
#include "confdefs.h"
#include <time.h>
@@ -14148,7 +14485,7 @@ int main() {
; return 0; }
EOF
-if { (eval echo configure:14152: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:14489: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
ace_cv_lib_broken_timespec=yes
@@ -14180,13 +14517,13 @@ EOF
echo $ac_n "checking for limited struct rusage""... $ac_c" 1>&6
-echo "configure:14184: checking for limited struct rusage" >&5
+echo "configure:14521: 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 14190 "configure"
+#line 14527 "configure"
#include "confdefs.h"
#include <sys/resource.h>
@@ -14205,7 +14542,7 @@ int main() {
; return 0; }
EOF
-if { (eval echo configure:14209: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:14546: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
ace_cv_lib_limited_rusage=no
@@ -14238,13 +14575,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:14242: checking for si_addr member in struct siginfo_t" >&5
+echo "configure:14579: 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 14248 "configure"
+#line 14585 "configure"
#include "confdefs.h"
#ifndef ACE_LACKS_SIGINFO_H
@@ -14259,7 +14596,7 @@ int main() {
; return 0; }
EOF
-if { (eval echo configure:14263: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:14600: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
ace_cv_lib_posix_si_addr=yes
@@ -14292,13 +14629,13 @@ EOF
fi
echo $ac_n "checking for sin_len member in struct sockaddr_in""... $ac_c" 1>&6
-echo "configure:14296: checking for sin_len member in struct sockaddr_in" >&5
+echo "configure:14633: 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 14302 "configure"
+#line 14639 "configure"
#include "confdefs.h"
#ifndef ACE_LACKS_SYS_TYPES_H
@@ -14313,7 +14650,7 @@ int main() {
; return 0; }
EOF
-if { (eval echo configure:14317: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:14654: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
ace_cv_lib_has_sin_len=yes
@@ -14345,13 +14682,13 @@ EOF
echo $ac_n "checking for sys_siglist""... $ac_c" 1>&6
-echo "configure:14349: checking for sys_siglist" >&5
+echo "configure:14686: 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 14355 "configure"
+#line 14692 "configure"
#include "confdefs.h"
#ifndef ACE_LACKS_UNISTD_H
@@ -14368,7 +14705,7 @@ int main() {
; return 0; }
EOF
-if { (eval echo configure:14372: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:14709: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
ace_cv_lib_posix_sys_siglist=yes
@@ -14400,13 +14737,13 @@ EOF
echo $ac_n "checking for sys_errlist""... $ac_c" 1>&6
-echo "configure:14404: checking for sys_errlist" >&5
+echo "configure:14741: 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 14410 "configure"
+#line 14747 "configure"
#include "confdefs.h"
#include <stdio.h>
@@ -14421,7 +14758,7 @@ int main() {
; return 0; }
EOF
-if { (eval echo configure:14425: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:14762: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
ace_cv_lib_posix_sys_errlist=yes
@@ -14453,13 +14790,13 @@ EOF
echo $ac_n "checking for sys_nerr in headers""... $ac_c" 1>&6
-echo "configure:14457: checking for sys_nerr in headers" >&5
+echo "configure:14794: 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 14463 "configure"
+#line 14800 "configure"
#include "confdefs.h"
#include <stdio.h>
@@ -14474,7 +14811,7 @@ int main() {
; return 0; }
EOF
-if { (eval echo configure:14478: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:14815: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
ace_cv_lib_posix_sys_nerr=yes
@@ -14500,12 +14837,12 @@ fi
ace_just_a_place_holder=fixme
echo $ac_n "checking for sys_nerr""... $ac_c" 1>&6
-echo "configure:14504: checking for sys_nerr" >&5
+echo "configure:14841: 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 14509 "configure"
+#line 14846 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char sys_nerr(); below. */
@@ -14531,7 +14868,7 @@ sys_nerr();
; return 0; }
EOF
-if { (eval echo configure:14535: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:14872: \"$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
@@ -14579,13 +14916,13 @@ fi
echo $ac_n "checking if compiler accepts \"pragma once\" directive""... $ac_c" 1>&6
-echo "configure:14583: checking if compiler accepts \"pragma once\" directive" >&5
+echo "configure:14920: 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 14589 "configure"
+#line 14926 "configure"
#include "confdefs.h"
#pragma once
@@ -14596,7 +14933,7 @@ int main() {
; return 0; }
EOF
-if { (eval echo configure:14600: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:14937: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
ace_cv_has_pragma_once=yes
@@ -14637,20 +14974,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:14641: checking if \"-pipe\" compiler flag is supported" >&5
+echo "configure:14978: 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 14647 "configure"
+#line 14984 "configure"
#include "confdefs.h"
int main() {
int a = 0;
; return 0; }
EOF
-if { (eval echo configure:14654: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:14991: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
ace_cv_feature_gxx_has_pipe=yes
@@ -14693,14 +15030,14 @@ fi
if test "$cross_compiling" != yes; then
echo $ac_n "checking whether byte ordering is bigendian""... $ac_c" 1>&6
-echo "configure:14697: checking whether byte ordering is bigendian" >&5
+echo "configure:15034: 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 14704 "configure"
+#line 15041 "configure"
#include "confdefs.h"
#include <sys/types.h>
#include <sys/param.h>
@@ -14711,11 +15048,11 @@ int main() {
#endif
; return 0; }
EOF
-if { (eval echo configure:14715: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:15052: \"$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 14719 "configure"
+#line 15056 "configure"
#include "confdefs.h"
#include <sys/types.h>
#include <sys/param.h>
@@ -14726,7 +15063,7 @@ int main() {
#endif
; return 0; }
EOF
-if { (eval echo configure:14730: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:15067: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
ac_cv_c_bigendian=yes
else
@@ -14746,7 +15083,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 14750 "configure"
+#line 15087 "configure"
#include "confdefs.h"
#ifdef __cplusplus
extern "C" void exit(int);
@@ -14762,7 +15099,7 @@ main () {
exit (u.c[sizeof (long) - 1] == 1);
}
EOF
-if { (eval echo configure:14766: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
+if { (eval echo configure:15103: \"$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
@@ -14790,7 +15127,7 @@ fi
if test "$cross_compiling" != yes; then
echo $ac_n "checking size of short""... $ac_c" 1>&6
-echo "configure:14794: checking size of short" >&5
+echo "configure:15131: 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
@@ -14798,7 +15135,7 @@ else
ac_cv_sizeof_short=2
else
cat > conftest.$ac_ext <<EOF
-#line 14802 "configure"
+#line 15139 "configure"
#include "confdefs.h"
#ifdef __cplusplus
extern "C" void exit(int);
@@ -14812,7 +15149,7 @@ main()
exit(0);
}
EOF
-if { (eval echo configure:14816: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
+if { (eval echo configure:15153: \"$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
@@ -14838,7 +15175,7 @@ EOF
fi
echo $ac_n "checking size of int""... $ac_c" 1>&6
-echo "configure:14842: checking size of int" >&5
+echo "configure:15179: 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
@@ -14846,7 +15183,7 @@ else
ac_cv_sizeof_int=4
else
cat > conftest.$ac_ext <<EOF
-#line 14850 "configure"
+#line 15187 "configure"
#include "confdefs.h"
#ifdef __cplusplus
extern "C" void exit(int);
@@ -14860,7 +15197,7 @@ main()
exit(0);
}
EOF
-if { (eval echo configure:14864: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
+if { (eval echo configure:15201: \"$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
@@ -14886,7 +15223,7 @@ EOF
fi
echo $ac_n "checking size of long""... $ac_c" 1>&6
-echo "configure:14890: checking size of long" >&5
+echo "configure:15227: 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
@@ -14894,7 +15231,7 @@ else
ac_cv_sizeof_long=4
else
cat > conftest.$ac_ext <<EOF
-#line 14898 "configure"
+#line 15235 "configure"
#include "confdefs.h"
#ifdef __cplusplus
extern "C" void exit(int);
@@ -14908,7 +15245,7 @@ main()
exit(0);
}
EOF
-if { (eval echo configure:14912: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
+if { (eval echo configure:15249: \"$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
@@ -14934,7 +15271,7 @@ EOF
fi
echo $ac_n "checking size of long long""... $ac_c" 1>&6
-echo "configure:14938: checking size of long long" >&5
+echo "configure:15275: 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
@@ -14942,7 +15279,7 @@ else
ac_cv_sizeof_long_long=8
else
cat > conftest.$ac_ext <<EOF
-#line 14946 "configure"
+#line 15283 "configure"
#include "confdefs.h"
#ifdef __cplusplus
extern "C" void exit(int);
@@ -14956,7 +15293,7 @@ main()
exit(0);
}
EOF
-if { (eval echo configure:14960: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
+if { (eval echo configure:15297: \"$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
@@ -14987,7 +15324,7 @@ EOF
fi
echo $ac_n "checking size of void *""... $ac_c" 1>&6
-echo "configure:14991: checking size of void *" >&5
+echo "configure:15328: 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
@@ -14995,7 +15332,7 @@ else
ac_cv_sizeof_void_p=4
else
cat > conftest.$ac_ext <<EOF
-#line 14999 "configure"
+#line 15336 "configure"
#include "confdefs.h"
#ifdef __cplusplus
extern "C" void exit(int);
@@ -15009,7 +15346,7 @@ main()
exit(0);
}
EOF
-if { (eval echo configure:15013: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
+if { (eval echo configure:15350: \"$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
@@ -15035,7 +15372,7 @@ EOF
fi
echo $ac_n "checking size of float""... $ac_c" 1>&6
-echo "configure:15039: checking size of float" >&5
+echo "configure:15376: 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
@@ -15043,7 +15380,7 @@ else
ac_cv_sizeof_float=4
else
cat > conftest.$ac_ext <<EOF
-#line 15047 "configure"
+#line 15384 "configure"
#include "confdefs.h"
#ifdef __cplusplus
extern "C" void exit(int);
@@ -15057,7 +15394,7 @@ main()
exit(0);
}
EOF
-if { (eval echo configure:15061: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
+if { (eval echo configure:15398: \"$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
@@ -15088,7 +15425,7 @@ EOF
fi
echo $ac_n "checking size of double""... $ac_c" 1>&6
-echo "configure:15092: checking size of double" >&5
+echo "configure:15429: 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
@@ -15096,7 +15433,7 @@ else
ac_cv_sizeof_double=8
else
cat > conftest.$ac_ext <<EOF
-#line 15100 "configure"
+#line 15437 "configure"
#include "confdefs.h"
#ifdef __cplusplus
extern "C" void exit(int);
@@ -15110,7 +15447,7 @@ main()
exit(0);
}
EOF
-if { (eval echo configure:15114: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
+if { (eval echo configure:15451: \"$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
@@ -15141,7 +15478,7 @@ EOF
fi
echo $ac_n "checking size of long double""... $ac_c" 1>&6
-echo "configure:15145: checking size of long double" >&5
+echo "configure:15482: 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
@@ -15149,7 +15486,7 @@ else
ac_cv_sizeof_long_double=16
else
cat > conftest.$ac_ext <<EOF
-#line 15153 "configure"
+#line 15490 "configure"
#include "confdefs.h"
#ifdef __cplusplus
extern "C" void exit(int);
@@ -15163,7 +15500,7 @@ main()
exit(0);
}
EOF
-if { (eval echo configure:15167: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
+if { (eval echo configure:15504: \"$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
@@ -15201,7 +15538,7 @@ EOF
fi
echo $ac_n "checking size of signed char""... $ac_c" 1>&6
-echo "configure:15205: checking size of signed char" >&5
+echo "configure:15542: 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
@@ -15209,7 +15546,7 @@ else
ac_cv_sizeof_signed_char=1
else
cat > conftest.$ac_ext <<EOF
-#line 15213 "configure"
+#line 15550 "configure"
#include "confdefs.h"
#ifdef __cplusplus
extern "C" void exit(int);
@@ -15223,7 +15560,7 @@ main()
exit(0);
}
EOF
-if { (eval echo configure:15227: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
+if { (eval echo configure:15564: \"$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
@@ -15253,13 +15590,13 @@ fi
echo $ac_n "checking for istream operator>> for char types""... $ac_c" 1>&6
-echo "configure:15257: checking for istream operator>> for char types" >&5
+echo "configure:15594: 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 15263 "configure"
+#line 15600 "configure"
#include "confdefs.h"
#include <iostream.h>
@@ -15276,7 +15613,7 @@ cin >> b;
; return 0; }
EOF
-if { (eval echo configure:15280: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:15617: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
ace_cv_feature_char_right_shifts=yes
@@ -15310,13 +15647,13 @@ EOF
echo $ac_n "checking for istream operator>> for char * types""... $ac_c" 1>&6
-echo "configure:15314: checking for istream operator>> for char * types" >&5
+echo "configure:15651: 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 15320 "configure"
+#line 15657 "configure"
#include "confdefs.h"
#include <iostream.h>
@@ -15333,7 +15670,7 @@ cin >> b;
; return 0; }
EOF
-if { (eval echo configure:15337: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:15674: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
ace_cv_feature_char_ptr_right_shifts=yes
@@ -15366,13 +15703,13 @@ EOF
echo $ac_n "checking for working C++ explicit template destructors""... $ac_c" 1>&6
-echo "configure:15370: checking for working C++ explicit template destructors" >&5
+echo "configure:15707: 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 15376 "configure"
+#line 15713 "configure"
#include "confdefs.h"
#include <iostream.h>
@@ -15419,7 +15756,7 @@ int main() {
; return 0; }
EOF
-if { (eval echo configure:15423: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:15760: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
ace_cv_feature_working_explicit_des=yes
@@ -15451,13 +15788,13 @@ EOF
echo $ac_n "checking for working C++ conversions""... $ac_c" 1>&6
-echo "configure:15455: checking for working C++ conversions" >&5
+echo "configure:15792: 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 15461 "configure"
+#line 15798 "configure"
#include "confdefs.h"
template <class T>
@@ -15481,7 +15818,7 @@ int main() {
; return 0; }
EOF
-if { (eval echo configure:15485: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:15822: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
ace_cv_feature_cxx_working_conversions=yes
@@ -15514,13 +15851,13 @@ EOF
echo $ac_n "checking for C++ namespace support""... $ac_c" 1>&6
-echo "configure:15518: checking for C++ namespace support" >&5
+echo "configure:15855: 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 15524 "configure"
+#line 15861 "configure"
#include "confdefs.h"
namespace ACE
@@ -15534,7 +15871,7 @@ int main() {
; return 0; }
EOF
-if { (eval echo configure:15538: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:15875: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
ace_cv_feature_cxx_namespaces=yes
@@ -15567,13 +15904,13 @@ EOF
echo $ac_n "checking for C++ standard namespace""... $ac_c" 1>&6
-echo "configure:15571: checking for C++ standard namespace" >&5
+echo "configure:15908: 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 15577 "configure"
+#line 15914 "configure"
#include "confdefs.h"
#include <iostream.h>
@@ -15584,7 +15921,7 @@ int main() {
; return 0; }
EOF
-if { (eval echo configure:15588: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:15925: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
ace_cv_feature_posix_uses_std_namespace=yes
@@ -15616,13 +15953,13 @@ EOF
echo $ac_n "checking for C++ \"using\" keyword support""... $ac_c" 1>&6
-echo "configure:15620: checking for C++ \"using\" keyword support" >&5
+echo "configure:15957: 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 15626 "configure"
+#line 15963 "configure"
#include "confdefs.h"
#if defined (ACE_USES_STD_NAMESPACE_FOR_STDCPP_LIB)
@@ -15646,14 +15983,14 @@ int main() {
x++;
#else
# error Namespaces are not supported on this platform.
-Throw in some extraneous text since compilers are stupid enough
-to interpret "#error" as a warning. Go figure. :(
+Throw in some extraneous text since some compilers are stupid
+enough to interpret "#error" as a warning. Go figure. :(
This extraneous text should force an error.
#endif
; return 0; }
EOF
-if { (eval echo configure:15657: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:15994: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
ace_cv_feature_cxx_using_keyword=yes
@@ -15685,7 +16022,7 @@ EOF
echo $ac_n "checking for new style C++ include file support""... $ac_c" 1>&6
-echo "configure:15689: checking for new style C++ include file support" >&5
+echo "configure:16026: 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
@@ -15693,7 +16030,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 15697 "configure"
+#line 16034 "configure"
#include "confdefs.h"
#include <string>
@@ -15704,7 +16041,7 @@ int main() {
; return 0; }
EOF
-if { (eval echo configure:15708: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:16045: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
ace_cv_lib_posix_standard_includes=yes
else
@@ -15714,7 +16051,7 @@ fi
rm -f conftest*
else
cat > conftest.$ac_ext <<EOF
-#line 15718 "configure"
+#line 16055 "configure"
#include "confdefs.h"
#include <string>
@@ -15725,7 +16062,7 @@ int main() {
; return 0; }
EOF
-if { (eval echo configure:15729: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:16066: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
ace_cv_lib_posix_standard_includes=yes
else
@@ -15762,13 +16099,13 @@ if test "$ac_cv_header_new" = yes &&
echo $ac_n "checking for C++ auto_ptr class""... $ac_c" 1>&6
-echo "configure:15766: checking for C++ auto_ptr class" >&5
+echo "configure:16103: 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 15772 "configure"
+#line 16109 "configure"
#include "confdefs.h"
#include <memory>
@@ -15788,7 +16125,7 @@ int main() {
; return 0; }
EOF
-if { (eval echo configure:15792: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:16129: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
ace_cv_lib_auto_ptr_class=yes
@@ -15830,13 +16167,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:15834: checking for C++ auto_ptr reset method" >&5
+echo "configure:16171: 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 15840 "configure"
+#line 16177 "configure"
#include "confdefs.h"
#include <memory>
@@ -15858,7 +16195,7 @@ int main() {
; return 0; }
EOF
-if { (eval echo configure:15862: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:16199: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
ace_cv_lib_auto_ptr_reset=yes
@@ -15891,7 +16228,7 @@ EOF
fi
echo $ac_n "checking for ANSI C++ cast support""... $ac_c" 1>&6
-echo "configure:15895: checking for ANSI C++ cast support" >&5
+echo "configure:16232: 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
@@ -15914,7 +16251,7 @@ else
cat > conftest.$ac_ext <<EOF
-#line 15918 "configure"
+#line 16255 "configure"
#include "confdefs.h"
/* No headers */
int main() {
@@ -15939,7 +16276,7 @@ int main() {
; return 0; }
EOF
-if { (eval echo configure:15943: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:16280: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
ace_cv_lib_posix_standard_casts=yes
@@ -15956,7 +16293,7 @@ else
rm -rf conftest*
cat > conftest.$ac_ext <<EOF
-#line 15960 "configure"
+#line 16297 "configure"
#include "confdefs.h"
/* No headers */
int main() {
@@ -15977,7 +16314,7 @@ int main() {
; return 0; }
EOF
-if { (eval echo configure:15981: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:16318: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
ace_cv_lib_posix_standard_casts=yes
@@ -16030,13 +16367,13 @@ EOF
echo $ac_n "checking for explicit C++ constructor support""... $ac_c" 1>&6
-echo "configure:16034: checking for explicit C++ constructor support" >&5
+echo "configure:16371: 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 16040 "configure"
+#line 16377 "configure"
#include "confdefs.h"
class Foo
@@ -16053,7 +16390,7 @@ Foo bar = 'a'; // error: no implicit char->Foo conversion
; return 0; }
EOF
-if { (eval echo configure:16057: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:16394: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
ace_cv_feature_explicit_constructor=no
@@ -16064,7 +16401,7 @@ else
rm -rf conftest*
cat > conftest.$ac_ext <<EOF
-#line 16068 "configure"
+#line 16405 "configure"
#include "confdefs.h"
class Foo
@@ -16081,7 +16418,7 @@ Foo bar (5);
; return 0; }
EOF
-if { (eval echo configure:16085: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:16422: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
ace_cv_feature_explicit_constructor=yes
@@ -16116,13 +16453,13 @@ EOF
echo $ac_n "checking for C++ mutable keyword""... $ac_c" 1>&6
-echo "configure:16120: checking for C++ mutable keyword" >&5
+echo "configure:16457: 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 16126 "configure"
+#line 16463 "configure"
#include "confdefs.h"
class Foo
@@ -16141,7 +16478,7 @@ bar.val_ = 3; // mutable declaration should allow this to be modified
; return 0; }
EOF
-if { (eval echo configure:16145: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:16482: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
ace_cv_feature_cxx_mutable_keyword=yes
@@ -16173,13 +16510,13 @@ EOF
echo $ac_n "checking for C++ typename keyword""... $ac_c" 1>&6
-echo "configure:16177: checking for C++ typename keyword" >&5
+echo "configure:16514: 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 16183 "configure"
+#line 16520 "configure"
#include "confdefs.h"
class Bar
@@ -16215,7 +16552,7 @@ int main() {
; return 0; }
EOF
-if { (eval echo configure:16219: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:16556: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
ace_cv_feature_posix_typename_keyword=yes
@@ -16247,13 +16584,13 @@ EOF
echo $ac_n "checking if const char * can be rvalue in conditional operator""... $ac_c" 1>&6
-echo "configure:16251: checking if const char * can be rvalue in conditional operator" >&5
+echo "configure:16588: 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 16257 "configure"
+#line 16594 "configure"
#include "confdefs.h"
int main() {
@@ -16265,7 +16602,7 @@ int main() {
; return 0; }
EOF
-if { (eval echo configure:16269: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:16606: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
ace_cv_feature_conditional_str_cast=yes
@@ -16298,13 +16635,13 @@ EOF
echo $ac_n "checking for explicit template instantiation""... $ac_c" 1>&6
-echo "configure:16302: checking for explicit template instantiation" >&5
+echo "configure:16639: 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 16308 "configure"
+#line 16645 "configure"
#include "confdefs.h"
template <class T>
@@ -16324,7 +16661,7 @@ int main() {
; return 0; }
EOF
-if { (eval echo configure:16328: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:16665: \"$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
@@ -16355,13 +16692,13 @@ EOF
echo $ac_n "checking for pragma template instantiation""... $ac_c" 1>&6
-echo "configure:16359: checking for pragma template instantiation" >&5
+echo "configure:16696: 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 16365 "configure"
+#line 16702 "configure"
#include "confdefs.h"
template <class T>
@@ -16380,7 +16717,7 @@ int main() {
; return 0; }
EOF
-if { (eval echo configure:16384: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:16721: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
ace_cv_feature_pragma_template_instantiation=yes
@@ -16416,7 +16753,7 @@ EOF
echo $ac_n "checking if templates require source""... $ac_c" 1>&6
-echo "configure:16420: checking if templates require source" >&5
+echo "configure:16757: 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
@@ -16461,7 +16798,7 @@ EOF
ac_link='${CXX-g++} -o conftest${ac_exeext} conftestMain.$ac_ext 1>&5'
- if { (eval echo configure:16465: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+ if { (eval echo configure:16802: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
rm -rf conftest*
ac_link="$ace_save_ac_link"
@@ -16472,7 +16809,7 @@ EOF
#include "conftest.$ac_ext"
EOF
- if { (eval echo configure:16476: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+ if { (eval echo configure:16813: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
rm -rf conftest*
ac_link="$ace_save_ac_link"
@@ -16512,13 +16849,13 @@ EOF
echo $ac_n "checking for template specialization""... $ac_c" 1>&6
-echo "configure:16516: checking for template specialization" >&5
+echo "configure:16853: 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 16522 "configure"
+#line 16859 "configure"
#include "confdefs.h"
template <class T>
@@ -16544,7 +16881,7 @@ int main() {
; return 0; }
EOF
-if { (eval echo configure:16548: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:16885: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
ace_cv_feature_cxx_template_specialization=yes
@@ -16576,13 +16913,13 @@ EOF
echo $ac_n "checking for standard template specialization""... $ac_c" 1>&6
-echo "configure:16580: checking for standard template specialization" >&5
+echo "configure:16917: 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 16586 "configure"
+#line 16923 "configure"
#include "confdefs.h"
// Some compilers have a hard time with this test since the syntax is
@@ -16625,7 +16962,7 @@ Vector<void *> vpv;
; return 0; }
EOF
-if { (eval echo configure:16629: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:16966: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
ace_cv_feature_cxx_std_template_specialization=yes
@@ -16659,13 +16996,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:16663: checking if platform needs standard template method specialization" >&5
+echo "configure:17000: 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 16669 "configure"
+#line 17006 "configure"
#include "confdefs.h"
// Some compilers have a hard time with this test since the syntax is
@@ -16713,7 +17050,7 @@ int main() {
; return 0; }
EOF
-if { (eval echo configure:16717: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:17054: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
ace_cv_feature_cxx_std_template_method_specialization=no
@@ -16724,7 +17061,7 @@ else
rm -rf conftest*
cat > conftest.$ac_ext <<EOF
-#line 16728 "configure"
+#line 17065 "configure"
#include "confdefs.h"
// Some compilers have a hard time with this test since the syntax is
@@ -16773,7 +17110,7 @@ int main() {
; return 0; }
EOF
-if { (eval echo configure:16777: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:17114: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
ace_cv_feature_cxx_std_template_method_specialization=yes
@@ -16808,13 +17145,13 @@ EOF
fi
echo $ac_n "checking for template typedefs""... $ac_c" 1>&6
-echo "configure:16812: checking for template typedefs" >&5
+echo "configure:17149: 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 16818 "configure"
+#line 17155 "configure"
#include "confdefs.h"
#if defined (ACE_HAS_TYPENAME_KEYWORD)
@@ -16857,7 +17194,7 @@ int main() {
; return 0; }
EOF
-if { (eval echo configure:16861: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:17198: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
ace_cv_feature_posix_template_typedefs=yes
@@ -16889,13 +17226,13 @@ EOF
echo $ac_n "checking for static data member templates""... $ac_c" 1>&6
-echo "configure:16893: checking for static data member templates" >&5
+echo "configure:17230: 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 16899 "configure"
+#line 17236 "configure"
#include "confdefs.h"
template <class T>
@@ -16913,7 +17250,7 @@ int main() {
; return 0; }
EOF
-if { (eval echo configure:16917: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:17254: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
ace_cv_feature_posix_static_data_member_templates=yes
@@ -16946,13 +17283,13 @@ EOF
echo $ac_n "checking if definition is needed for hidden functions""... $ac_c" 1>&6
-echo "configure:16950: checking if definition is needed for hidden functions" >&5
+echo "configure:17287: 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 16956 "configure"
+#line 17293 "configure"
#include "confdefs.h"
class Foo
@@ -16972,7 +17309,7 @@ int main() {
; return 0; }
EOF
-if { (eval echo configure:16976: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:17313: \"$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
@@ -16983,7 +17320,7 @@ else
rm -rf conftest*
cat > conftest.$ac_ext <<EOF
-#line 16987 "configure"
+#line 17324 "configure"
#include "confdefs.h"
class Foo
@@ -17016,7 +17353,7 @@ int main() {
; return 0; }
EOF
-if { (eval echo configure:17020: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:17357: \"$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
@@ -17054,13 +17391,13 @@ EOF
if test "$ace_user_enable_exceptions" = yes; then
echo $ac_n "checking for C++ exceptions""... $ac_c" 1>&6
-echo "configure:17058: checking for C++ exceptions" >&5
+echo "configure:17395: 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 17064 "configure"
+#line 17401 "configure"
#include "confdefs.h"
int main() {
@@ -17078,7 +17415,7 @@ int main() {
; return 0; }
EOF
-if { (eval echo configure:17082: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:17419: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
ace_cv_feature_posix_exceptions=yes
@@ -17116,19 +17453,19 @@ fi
# 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:17120: checking for working alloca.h" >&5
+echo "configure:17457: 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 17125 "configure"
+#line 17462 "configure"
#include "confdefs.h"
#include <alloca.h>
int main() {
char *p = alloca(2 * sizeof(int));
; return 0; }
EOF
-if { (eval echo configure:17132: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:17469: \"$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
@@ -17149,12 +17486,12 @@ EOF
fi
echo $ac_n "checking for alloca""... $ac_c" 1>&6
-echo "configure:17153: checking for alloca" >&5
+echo "configure:17490: 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 17158 "configure"
+#line 17495 "configure"
#include "confdefs.h"
#ifdef __GNUC__
@@ -17182,7 +17519,7 @@ int main() {
char *p = (char *) alloca(1);
; return 0; }
EOF
-if { (eval echo configure:17186: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:17523: \"$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
@@ -17214,12 +17551,12 @@ EOF
echo $ac_n "checking whether alloca needs Cray hooks""... $ac_c" 1>&6
-echo "configure:17218: checking whether alloca needs Cray hooks" >&5
+echo "configure:17555: 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 17223 "configure"
+#line 17560 "configure"
#include "confdefs.h"
#if defined(CRAY) && ! defined(CRAY2)
webecray
@@ -17244,12 +17581,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:17248: checking for $ac_func" >&5
+echo "configure:17585: 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 17253 "configure"
+#line 17590 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char $ac_func(); below. */
@@ -17275,7 +17612,7 @@ $ac_func();
; return 0; }
EOF
-if { (eval echo configure:17279: \"$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*
eval "ac_cv_func_$ac_func=yes"
else
@@ -17302,7 +17639,7 @@ done
fi
echo $ac_n "checking stack direction for C alloca""... $ac_c" 1>&6
-echo "configure:17306: checking stack direction for C alloca" >&5
+echo "configure:17643: 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
@@ -17310,7 +17647,7 @@ else
ac_cv_c_stack_direction=0
else
cat > conftest.$ac_ext <<EOF
-#line 17314 "configure"
+#line 17651 "configure"
#include "confdefs.h"
#ifdef __cplusplus
extern "C" void exit(int);
@@ -17332,7 +17669,7 @@ main ()
exit (find_stack_direction() < 0);
}
EOF
-if { (eval echo configure:17336: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
+if { (eval echo configure:17673: \"$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
@@ -17368,7 +17705,7 @@ fi
echo $ac_n "checking whether closedir returns void""... $ac_c" 1>&6
-echo "configure:17372: checking whether closedir returns void" >&5
+echo "configure:17709: 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
@@ -17376,7 +17713,7 @@ else
ac_cv_func_closedir_void=yes
else
cat > conftest.$ac_ext <<EOF
-#line 17380 "configure"
+#line 17717 "configure"
#include "confdefs.h"
#ifdef __cplusplus
extern "C" void exit(int);
@@ -17385,7 +17722,7 @@ extern "C" void exit(int);
#include <$ac_header_dirent>
int closedir(); main() { exit(closedir(opendir(".")) != 0); }
EOF
-if { (eval echo configure:17389: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
+if { (eval echo configure:17726: \"$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
@@ -17409,12 +17746,12 @@ fi
echo $ac_n "checking for getpwnam""... $ac_c" 1>&6
-echo "configure:17413: checking for getpwnam" >&5
+echo "configure:17750: 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 17418 "configure"
+#line 17755 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char getpwnam(); below. */
@@ -17440,7 +17777,7 @@ getpwnam();
; return 0; }
EOF
-if { (eval echo configure:17444: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:17781: \"$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
@@ -17459,12 +17796,12 @@ else
echo "$ac_t""no" 1>&6
fi
echo $ac_n "checking for setpwent""... $ac_c" 1>&6
-echo "configure:17463: checking for setpwent" >&5
+echo "configure:17800: 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 17468 "configure"
+#line 17805 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char setpwent(); below. */
@@ -17490,7 +17827,7 @@ setpwent();
; return 0; }
EOF
-if { (eval echo configure:17494: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:17831: \"$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
@@ -17509,12 +17846,12 @@ else
echo "$ac_t""no" 1>&6
fi
echo $ac_n "checking for endpwent""... $ac_c" 1>&6
-echo "configure:17513: checking for endpwent" >&5
+echo "configure:17850: 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 17518 "configure"
+#line 17855 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char endpwent(); below. */
@@ -17540,7 +17877,7 @@ endpwent();
; return 0; }
EOF
-if { (eval echo configure:17544: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:17881: \"$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
@@ -17559,12 +17896,12 @@ else
echo "$ac_t""no" 1>&6
fi
echo $ac_n "checking for getpwent""... $ac_c" 1>&6
-echo "configure:17563: checking for getpwent" >&5
+echo "configure:17900: 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 17568 "configure"
+#line 17905 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char getpwent(); below. */
@@ -17590,7 +17927,7 @@ getpwent();
; return 0; }
EOF
-if { (eval echo configure:17594: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:17931: \"$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
@@ -17620,12 +17957,12 @@ EOF
fi
echo $ac_n "checking for strftime""... $ac_c" 1>&6
-echo "configure:17624: checking for strftime" >&5
+echo "configure:17961: 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 17629 "configure"
+#line 17966 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char strftime(); below. */
@@ -17651,7 +17988,7 @@ strftime();
; return 0; }
EOF
-if { (eval echo configure:17655: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:17992: \"$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
@@ -17673,7 +18010,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:17677: checking for strftime in -lintl" >&5
+echo "configure:18014: 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
@@ -17681,7 +18018,7 @@ else
ac_save_LIBS="$LIBS"
LIBS="-lintl $LIBS"
cat > conftest.$ac_ext <<EOF
-#line 17685 "configure"
+#line 18022 "configure"
#include "confdefs.h"
/* Override any gcc2 internal prototype to avoid an error. */
#ifdef __cplusplus
@@ -17695,7 +18032,7 @@ int main() {
strftime()
; return 0; }
EOF
-if { (eval echo configure:17699: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:18036: \"$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
@@ -17725,12 +18062,12 @@ fi
case "$target" in
*win32*)
echo $ac_n "checking for CancelIO""... $ac_c" 1>&6
-echo "configure:17729: checking for CancelIO" >&5
+echo "configure:18066: 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 17734 "configure"
+#line 18071 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char CancelIO(); below. */
@@ -17756,7 +18093,7 @@ CancelIO();
; return 0; }
EOF
-if { (eval echo configure:17760: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:18097: \"$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
@@ -17780,12 +18117,12 @@ fi
echo $ac_n "checking for SignalObjectAndWait""... $ac_c" 1>&6
-echo "configure:17784: checking for SignalObjectAndWait" >&5
+echo "configure:18121: 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 17789 "configure"
+#line 18126 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char SignalObjectAndWait(); below. */
@@ -17811,7 +18148,7 @@ SignalObjectAndWait();
; return 0; }
EOF
-if { (eval echo configure:17815: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:18152: \"$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
@@ -17835,12 +18172,12 @@ fi
echo $ac_n "checking for TryEnterCriticalSection""... $ac_c" 1>&6
-echo "configure:17839: checking for TryEnterCriticalSection" >&5
+echo "configure:18176: 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 17844 "configure"
+#line 18181 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char TryEnterCriticalSection(); below. */
@@ -17866,7 +18203,7 @@ TryEnterCriticalSection();
; return 0; }
EOF
-if { (eval echo configure:17870: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:18207: \"$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
@@ -17894,12 +18231,12 @@ fi
esac
echo $ac_n "checking for access""... $ac_c" 1>&6
-echo "configure:17898: checking for access" >&5
+echo "configure:18235: 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 17903 "configure"
+#line 18240 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char access(); below. */
@@ -17925,7 +18262,7 @@ access();
; return 0; }
EOF
-if { (eval echo configure:17929: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:18266: \"$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
@@ -17950,12 +18287,12 @@ fi
echo $ac_n "checking for bsearch""... $ac_c" 1>&6
-echo "configure:17954: checking for bsearch" >&5
+echo "configure:18291: 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 17959 "configure"
+#line 18296 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char bsearch(); below. */
@@ -17981,7 +18318,7 @@ bsearch();
; return 0; }
EOF
-if { (eval echo configure:17985: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:18322: \"$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
@@ -18006,12 +18343,12 @@ fi
echo $ac_n "checking for qsort""... $ac_c" 1>&6
-echo "configure:18010: checking for qsort" >&5
+echo "configure:18347: 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 18015 "configure"
+#line 18352 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char qsort(); below. */
@@ -18037,7 +18374,7 @@ qsort();
; return 0; }
EOF
-if { (eval echo configure:18041: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:18378: \"$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
@@ -18064,12 +18401,12 @@ fi
for ac_func in execv execvp execve
do
echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
-echo "configure:18068: checking for $ac_func" >&5
+echo "configure:18405: 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 18073 "configure"
+#line 18410 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char $ac_func(); below. */
@@ -18095,7 +18432,7 @@ $ac_func();
; return 0; }
EOF
-if { (eval echo configure:18099: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:18436: \"$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
@@ -18125,12 +18462,12 @@ done
echo $ac_n "checking for fcntl""... $ac_c" 1>&6
-echo "configure:18129: checking for fcntl" >&5
+echo "configure:18466: 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 18134 "configure"
+#line 18471 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char fcntl(); below. */
@@ -18156,7 +18493,7 @@ fcntl();
; return 0; }
EOF
-if { (eval echo configure:18160: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:18497: \"$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
@@ -18181,12 +18518,12 @@ fi
echo $ac_n "checking for fsync""... $ac_c" 1>&6
-echo "configure:18185: checking for fsync" >&5
+echo "configure:18522: 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 18190 "configure"
+#line 18527 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char fsync(); below. */
@@ -18212,7 +18549,7 @@ fsync();
; return 0; }
EOF
-if { (eval echo configure:18216: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:18553: \"$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
@@ -18237,12 +18574,12 @@ fi
echo $ac_n "checking for getmsg""... $ac_c" 1>&6
-echo "configure:18241: checking for getmsg" >&5
+echo "configure:18578: 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 18246 "configure"
+#line 18583 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char getmsg(); below. */
@@ -18268,7 +18605,7 @@ getmsg();
; return 0; }
EOF
-if { (eval echo configure:18272: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:18609: \"$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
@@ -18292,12 +18629,12 @@ fi
echo $ac_n "checking for gethostbyaddr""... $ac_c" 1>&6
-echo "configure:18296: checking for gethostbyaddr" >&5
+echo "configure:18633: 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 18301 "configure"
+#line 18638 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char gethostbyaddr(); below. */
@@ -18323,7 +18660,7 @@ gethostbyaddr();
; return 0; }
EOF
-if { (eval echo configure:18327: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:18664: \"$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
@@ -18343,12 +18680,12 @@ else
fi
echo $ac_n "checking for difftime""... $ac_c" 1>&6
-echo "configure:18347: checking for difftime" >&5
+echo "configure:18684: 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 18352 "configure"
+#line 18689 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char difftime(); below. */
@@ -18374,7 +18711,7 @@ difftime();
; return 0; }
EOF
-if { (eval echo configure:18378: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:18715: \"$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
@@ -18399,12 +18736,12 @@ fi
echo $ac_n "checking for llseek""... $ac_c" 1>&6
-echo "configure:18403: checking for llseek" >&5
+echo "configure:18740: 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 18408 "configure"
+#line 18745 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char llseek(); below. */
@@ -18430,7 +18767,7 @@ llseek();
; return 0; }
EOF
-if { (eval echo configure:18434: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:18771: \"$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
@@ -18454,12 +18791,12 @@ fi
echo $ac_n "checking for bind""... $ac_c" 1>&6
-echo "configure:18458: checking for bind" >&5
+echo "configure:18795: 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 18463 "configure"
+#line 18800 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char bind(); below. */
@@ -18485,7 +18822,7 @@ bind();
; return 0; }
EOF
-if { (eval echo configure:18489: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:18826: \"$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
@@ -18502,7 +18839,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:18506: checking if bind() will select the port if it is zero" >&5
+echo "configure:18843: 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
@@ -18513,7 +18850,7 @@ else
else
cat > conftest.$ac_ext <<EOF
-#line 18517 "configure"
+#line 18854 "configure"
#include "confdefs.h"
#ifdef __cplusplus
extern "C" void exit(int);
@@ -18543,7 +18880,7 @@ extern "C" void exit(int);
}
EOF
-if { (eval echo configure:18547: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
+if { (eval echo configure:18884: \"$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
@@ -18582,12 +18919,12 @@ fi
echo $ac_n "checking for poll""... $ac_c" 1>&6
-echo "configure:18586: checking for poll" >&5
+echo "configure:18923: 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 18591 "configure"
+#line 18928 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char poll(); below. */
@@ -18613,7 +18950,7 @@ poll();
; return 0; }
EOF
-if { (eval echo configure:18617: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:18954: \"$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
@@ -18630,7 +18967,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:18634: checking if poll is broken" >&5
+echo "configure:18971: 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
@@ -18641,7 +18978,7 @@ else
else
cat > conftest.$ac_ext <<EOF
-#line 18645 "configure"
+#line 18982 "configure"
#include "confdefs.h"
#ifdef __cplusplus
extern "C" void exit(int);
@@ -18680,7 +19017,7 @@ extern "C" void exit(int);
}
EOF
-if { (eval echo configure:18684: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
+if { (eval echo configure:19021: \"$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
@@ -18718,12 +19055,12 @@ fi
echo $ac_n "checking for gethrtime""... $ac_c" 1>&6
-echo "configure:18722: checking for gethrtime" >&5
+echo "configure:19059: 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 18727 "configure"
+#line 19064 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char gethrtime(); below. */
@@ -18749,7 +19086,7 @@ gethrtime();
; return 0; }
EOF
-if { (eval echo configure:18753: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:19090: \"$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
@@ -18768,13 +19105,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:18772: checking for hrtime_t in sys/time.h" >&5
+echo "configure:19109: 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 18778 "configure"
+#line 19115 "configure"
#include "confdefs.h"
#include <sys/time.h>
@@ -18785,7 +19122,7 @@ int main() {
; return 0; }
EOF
-if { (eval echo configure:18789: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:19126: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
ace_cv_type_hrtime_t=yes
@@ -18822,12 +19159,12 @@ fi
echo $ac_n "checking for pread""... $ac_c" 1>&6
-echo "configure:18826: checking for pread" >&5
+echo "configure:19163: 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 18831 "configure"
+#line 19168 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char pread(); below. */
@@ -18853,7 +19190,7 @@ pread();
; return 0; }
EOF
-if { (eval echo configure:18857: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:19194: \"$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
@@ -18868,12 +19205,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:18872: checking for pwrite" >&5
+echo "configure:19209: 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 18877 "configure"
+#line 19214 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char pwrite(); below. */
@@ -18899,7 +19236,7 @@ pwrite();
; return 0; }
EOF
-if { (eval echo configure:18903: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:19240: \"$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
@@ -18927,12 +19264,12 @@ fi
echo $ac_n "checking for readv""... $ac_c" 1>&6
-echo "configure:18931: checking for readv" >&5
+echo "configure:19268: 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 18936 "configure"
+#line 19273 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char readv(); below. */
@@ -18958,7 +19295,7 @@ readv();
; return 0; }
EOF
-if { (eval echo configure:18962: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:19299: \"$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
@@ -18982,12 +19319,12 @@ EOF
fi
echo $ac_n "checking for writev""... $ac_c" 1>&6
-echo "configure:18986: checking for writev" >&5
+echo "configure:19323: 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 18991 "configure"
+#line 19328 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char writev(); below. */
@@ -19013,7 +19350,7 @@ writev();
; return 0; }
EOF
-if { (eval echo configure:19017: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:19354: \"$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
@@ -19037,12 +19374,12 @@ EOF
fi
echo $ac_n "checking for set_t_errno""... $ac_c" 1>&6
-echo "configure:19041: checking for set_t_errno" >&5
+echo "configure:19378: 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 19046 "configure"
+#line 19383 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char set_t_errno(); below. */
@@ -19068,7 +19405,7 @@ set_t_errno();
; return 0; }
EOF
-if { (eval echo configure:19072: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:19409: \"$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
@@ -19091,12 +19428,12 @@ else
fi
echo $ac_n "checking for sigsuspend""... $ac_c" 1>&6
-echo "configure:19095: checking for sigsuspend" >&5
+echo "configure:19432: 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 19100 "configure"
+#line 19437 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char sigsuspend(); below. */
@@ -19122,7 +19459,7 @@ sigsuspend();
; return 0; }
EOF
-if { (eval echo configure:19126: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:19463: \"$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
@@ -19146,12 +19483,12 @@ fi
echo $ac_n "checking for sigtimedwait""... $ac_c" 1>&6
-echo "configure:19150: checking for sigtimedwait" >&5
+echo "configure:19487: 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 19155 "configure"
+#line 19492 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char sigtimedwait(); below. */
@@ -19177,7 +19514,7 @@ sigtimedwait();
; return 0; }
EOF
-if { (eval echo configure:19181: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:19518: \"$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
@@ -19201,12 +19538,12 @@ fi
echo $ac_n "checking for socketpair""... $ac_c" 1>&6
-echo "configure:19205: checking for socketpair" >&5
+echo "configure:19542: 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 19210 "configure"
+#line 19547 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char socketpair(); below. */
@@ -19232,7 +19569,7 @@ socketpair();
; return 0; }
EOF
-if { (eval echo configure:19236: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:19573: \"$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
@@ -19257,12 +19594,12 @@ fi
echo $ac_n "checking for strcasecmp""... $ac_c" 1>&6
-echo "configure:19261: checking for strcasecmp" >&5
+echo "configure:19598: 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 19266 "configure"
+#line 19603 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char strcasecmp(); below. */
@@ -19288,7 +19625,7 @@ strcasecmp();
; return 0; }
EOF
-if { (eval echo configure:19292: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:19629: \"$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
@@ -19313,12 +19650,12 @@ fi
echo $ac_n "checking for strdup""... $ac_c" 1>&6
-echo "configure:19317: checking for strdup" >&5
+echo "configure:19654: 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 19322 "configure"
+#line 19659 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char strdup(); below. */
@@ -19344,7 +19681,7 @@ strdup();
; return 0; }
EOF
-if { (eval echo configure:19348: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:19685: \"$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
@@ -19369,12 +19706,12 @@ fi
echo $ac_n "checking for strrchr""... $ac_c" 1>&6
-echo "configure:19373: checking for strrchr" >&5
+echo "configure:19710: 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 19378 "configure"
+#line 19715 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char strrchr(); below. */
@@ -19400,7 +19737,7 @@ strrchr();
; return 0; }
EOF
-if { (eval echo configure:19404: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:19741: \"$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
@@ -19425,12 +19762,12 @@ fi
echo $ac_n "checking for memchr""... $ac_c" 1>&6
-echo "configure:19429: checking for memchr" >&5
+echo "configure:19766: 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 19434 "configure"
+#line 19771 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char memchr(); below. */
@@ -19456,7 +19793,7 @@ memchr();
; return 0; }
EOF
-if { (eval echo configure:19460: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:19797: \"$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
@@ -19480,12 +19817,12 @@ fi
echo $ac_n "checking for syscall""... $ac_c" 1>&6
-echo "configure:19484: checking for syscall" >&5
+echo "configure:19821: 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 19489 "configure"
+#line 19826 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char syscall(); below. */
@@ -19511,7 +19848,7 @@ syscall();
; return 0; }
EOF
-if { (eval echo configure:19515: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:19852: \"$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
@@ -19536,12 +19873,12 @@ fi
echo $ac_n "checking for ualarm""... $ac_c" 1>&6
-echo "configure:19540: checking for ualarm" >&5
+echo "configure:19877: 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 19545 "configure"
+#line 19882 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char ualarm(); below. */
@@ -19567,7 +19904,7 @@ ualarm();
; return 0; }
EOF
-if { (eval echo configure:19571: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:19908: \"$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
@@ -19591,12 +19928,12 @@ fi
echo $ac_n "checking for alarm""... $ac_c" 1>&6
-echo "configure:19595: checking for alarm" >&5
+echo "configure:19932: 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 19600 "configure"
+#line 19937 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char alarm(); below. */
@@ -19622,7 +19959,7 @@ alarm();
; return 0; }
EOF
-if { (eval echo configure:19626: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:19963: \"$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
@@ -19641,12 +19978,12 @@ else
echo "$ac_t""no" 1>&6
fi
echo $ac_n "checking for signal""... $ac_c" 1>&6
-echo "configure:19645: checking for signal" >&5
+echo "configure:19982: 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 19650 "configure"
+#line 19987 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char signal(); below. */
@@ -19672,7 +20009,7 @@ signal();
; return 0; }
EOF
-if { (eval echo configure:19676: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:20013: \"$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
@@ -19700,12 +20037,12 @@ EOF
fi
echo $ac_n "checking for fork""... $ac_c" 1>&6
-echo "configure:19704: checking for fork" >&5
+echo "configure:20041: 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 19709 "configure"
+#line 20046 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char fork(); below. */
@@ -19731,7 +20068,7 @@ fork();
; return 0; }
EOF
-if { (eval echo configure:19735: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:20072: \"$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
@@ -19756,12 +20093,12 @@ fi
echo $ac_n "checking for getrlimit""... $ac_c" 1>&6
-echo "configure:19760: checking for getrlimit" >&5
+echo "configure:20097: 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 19765 "configure"
+#line 20102 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char getrlimit(); below. */
@@ -19787,7 +20124,7 @@ getrlimit();
; return 0; }
EOF
-if { (eval echo configure:19791: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:20128: \"$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
@@ -19803,12 +20140,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:19807: checking for setrlimit" >&5
+echo "configure:20144: 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 19812 "configure"
+#line 20149 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char setrlimit(); below. */
@@ -19834,7 +20171,7 @@ setrlimit();
; return 0; }
EOF
-if { (eval echo configure:19838: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:20175: \"$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
@@ -19870,12 +20207,12 @@ fi
echo $ac_n "checking for sysinfo""... $ac_c" 1>&6
-echo "configure:19874: checking for sysinfo" >&5
+echo "configure:20211: 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 19879 "configure"
+#line 20216 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char sysinfo(); below. */
@@ -19901,7 +20238,7 @@ sysinfo();
; return 0; }
EOF
-if { (eval echo configure:19905: \"$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_sysinfo=yes"
else
@@ -19929,12 +20266,12 @@ fi
echo $ac_n "checking for strerror""... $ac_c" 1>&6
-echo "configure:19933: checking for strerror" >&5
+echo "configure:20270: 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 19938 "configure"
+#line 20275 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char strerror(); below. */
@@ -19960,7 +20297,7 @@ strerror();
; return 0; }
EOF
-if { (eval echo configure:19964: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:20301: \"$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
@@ -19984,12 +20321,12 @@ fi
echo $ac_n "checking for lstat""... $ac_c" 1>&6
-echo "configure:19988: checking for lstat" >&5
+echo "configure:20325: 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 19993 "configure"
+#line 20330 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char lstat(); below. */
@@ -20015,7 +20352,7 @@ lstat();
; return 0; }
EOF
-if { (eval echo configure:20019: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:20356: \"$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
@@ -20040,12 +20377,12 @@ fi
echo $ac_n "checking for readlink""... $ac_c" 1>&6
-echo "configure:20044: checking for readlink" >&5
+echo "configure:20381: 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 20049 "configure"
+#line 20386 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char readlink(); below. */
@@ -20071,7 +20408,7 @@ readlink();
; return 0; }
EOF
-if { (eval echo configure:20075: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:20412: \"$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
@@ -20096,12 +20433,12 @@ fi
echo $ac_n "checking for rename""... $ac_c" 1>&6
-echo "configure:20100: checking for rename" >&5
+echo "configure:20437: 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 20105 "configure"
+#line 20442 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char rename(); below. */
@@ -20127,7 +20464,7 @@ rename();
; return 0; }
EOF
-if { (eval echo configure:20131: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:20468: \"$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
@@ -20152,12 +20489,12 @@ fi
echo $ac_n "checking for recvmsg""... $ac_c" 1>&6
-echo "configure:20156: checking for recvmsg" >&5
+echo "configure:20493: 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 20161 "configure"
+#line 20498 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char recvmsg(); below. */
@@ -20183,7 +20520,7 @@ recvmsg();
; return 0; }
EOF
-if { (eval echo configure:20187: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:20524: \"$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
@@ -20208,12 +20545,12 @@ fi
echo $ac_n "checking for sendmsg""... $ac_c" 1>&6
-echo "configure:20212: checking for sendmsg" >&5
+echo "configure:20549: 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 20217 "configure"
+#line 20554 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char sendmsg(); below. */
@@ -20239,7 +20576,7 @@ sendmsg();
; return 0; }
EOF
-if { (eval echo configure:20243: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:20580: \"$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
@@ -20265,12 +20602,12 @@ fi
if test "$ace_has_tli" = yes; then
echo $ac_n "checking for t_getname""... $ac_c" 1>&6
-echo "configure:20269: checking for t_getname" >&5
+echo "configure:20606: 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 20274 "configure"
+#line 20611 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char t_getname(); below. */
@@ -20296,7 +20633,7 @@ t_getname();
; return 0; }
EOF
-if { (eval echo configure:20300: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:20637: \"$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
@@ -20321,12 +20658,12 @@ fi
fi
echo $ac_n "checking for getrusage""... $ac_c" 1>&6
-echo "configure:20325: checking for getrusage" >&5
+echo "configure:20662: 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 20330 "configure"
+#line 20667 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char getrusage(); below. */
@@ -20352,7 +20689,7 @@ getrusage();
; return 0; }
EOF
-if { (eval echo configure:20356: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:20693: \"$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
@@ -20376,12 +20713,12 @@ fi
echo $ac_n "checking for getpgid""... $ac_c" 1>&6
-echo "configure:20380: checking for getpgid" >&5
+echo "configure:20717: 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 20385 "configure"
+#line 20722 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char getpgid(); below. */
@@ -20407,7 +20744,7 @@ getpgid();
; return 0; }
EOF
-if { (eval echo configure:20411: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:20748: \"$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
@@ -20432,12 +20769,12 @@ fi
echo $ac_n "checking for getppid""... $ac_c" 1>&6
-echo "configure:20436: checking for getppid" >&5
+echo "configure:20773: 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 20441 "configure"
+#line 20778 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char getppid(); below. */
@@ -20463,7 +20800,7 @@ getppid();
; return 0; }
EOF
-if { (eval echo configure:20467: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:20804: \"$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
@@ -20488,12 +20825,12 @@ fi
echo $ac_n "checking for getpagesize""... $ac_c" 1>&6
-echo "configure:20492: checking for getpagesize" >&5
+echo "configure:20829: 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 20497 "configure"
+#line 20834 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char getpagesize(); below. */
@@ -20519,7 +20856,7 @@ getpagesize();
; return 0; }
EOF
-if { (eval echo configure:20523: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:20860: \"$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
@@ -20547,12 +20884,12 @@ fi
echo $ac_n "checking for msync""... $ac_c" 1>&6
-echo "configure:20551: checking for msync" >&5
+echo "configure:20888: 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 20556 "configure"
+#line 20893 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char msync(); below. */
@@ -20578,7 +20915,7 @@ msync();
; return 0; }
EOF
-if { (eval echo configure:20582: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:20919: \"$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
@@ -20603,12 +20940,12 @@ fi
echo $ac_n "checking for mprotect""... $ac_c" 1>&6
-echo "configure:20607: checking for mprotect" >&5
+echo "configure:20944: 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 20612 "configure"
+#line 20949 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char mprotect(); below. */
@@ -20634,7 +20971,7 @@ mprotect();
; return 0; }
EOF
-if { (eval echo configure:20638: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:20975: \"$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
@@ -20659,12 +20996,12 @@ fi
echo $ac_n "checking for mkfifo""... $ac_c" 1>&6
-echo "configure:20663: checking for mkfifo" >&5
+echo "configure:21000: 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 20668 "configure"
+#line 21005 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char mkfifo(); below. */
@@ -20690,7 +21027,7 @@ mkfifo();
; return 0; }
EOF
-if { (eval echo configure:20694: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:21031: \"$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
@@ -20715,12 +21052,12 @@ fi
echo $ac_n "checking for mktemp""... $ac_c" 1>&6
-echo "configure:20719: checking for mktemp" >&5
+echo "configure:21056: 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 20724 "configure"
+#line 21061 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char mktemp(); below. */
@@ -20746,7 +21083,7 @@ mktemp();
; return 0; }
EOF
-if { (eval echo configure:20750: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:21087: \"$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
@@ -20771,12 +21108,12 @@ fi
echo $ac_n "checking for madvise""... $ac_c" 1>&6
-echo "configure:20775: checking for madvise" >&5
+echo "configure:21112: 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 20780 "configure"
+#line 21117 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char madvise(); below. */
@@ -20802,7 +21139,7 @@ madvise();
; return 0; }
EOF
-if { (eval echo configure:20806: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:21143: \"$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
@@ -20828,12 +21165,12 @@ fi
if test "$ac_cv_header_sys_priocntl_h" = yes; then
echo $ac_n "checking for priocntl""... $ac_c" 1>&6
-echo "configure:20832: checking for priocntl" >&5
+echo "configure:21169: 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 20837 "configure"
+#line 21174 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char priocntl(); below. */
@@ -20859,7 +21196,7 @@ priocntl();
; return 0; }
EOF
-if { (eval echo configure:20863: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:21200: \"$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
@@ -20885,13 +21222,13 @@ fi
if test "$ac_cv_func_priocntl" = no; then
echo $ac_n "checking for priocntl macro""... $ac_c" 1>&6
-echo "configure:20889: checking for priocntl macro" >&5
+echo "configure:21226: 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 20895 "configure"
+#line 21232 "configure"
#include "confdefs.h"
#include <sys/priocntl.h>
@@ -20932,12 +21269,12 @@ EOF
fi fi
echo $ac_n "checking for sbrk""... $ac_c" 1>&6
-echo "configure:20936: checking for sbrk" >&5
+echo "configure:21273: 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 20941 "configure"
+#line 21278 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char sbrk(); below. */
@@ -20963,7 +21300,7 @@ sbrk();
; return 0; }
EOF
-if { (eval echo configure:20967: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:21304: \"$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
@@ -20988,12 +21325,12 @@ fi
echo $ac_n "checking for msgctl""... $ac_c" 1>&6
-echo "configure:20992: checking for msgctl" >&5
+echo "configure:21329: 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 20997 "configure"
+#line 21334 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char msgctl(); below. */
@@ -21019,7 +21356,7 @@ msgctl();
; return 0; }
EOF
-if { (eval echo configure:21023: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:21360: \"$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
@@ -21040,12 +21377,12 @@ fi
echo $ac_n "checking for msgget""... $ac_c" 1>&6
-echo "configure:21044: checking for msgget" >&5
+echo "configure:21381: 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 21049 "configure"
+#line 21386 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char msgget(); below. */
@@ -21071,7 +21408,7 @@ msgget();
; return 0; }
EOF
-if { (eval echo configure:21075: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:21412: \"$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
@@ -21092,12 +21429,12 @@ fi
echo $ac_n "checking for msgrcv""... $ac_c" 1>&6
-echo "configure:21096: checking for msgrcv" >&5
+echo "configure:21433: 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 21101 "configure"
+#line 21438 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char msgrcv(); below. */
@@ -21123,7 +21460,7 @@ msgrcv();
; return 0; }
EOF
-if { (eval echo configure:21127: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:21464: \"$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
@@ -21144,12 +21481,12 @@ fi
echo $ac_n "checking for semctl""... $ac_c" 1>&6
-echo "configure:21148: checking for semctl" >&5
+echo "configure:21485: 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 21153 "configure"
+#line 21490 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char semctl(); below. */
@@ -21175,7 +21512,7 @@ semctl();
; return 0; }
EOF
-if { (eval echo configure:21179: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:21516: \"$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
@@ -21196,12 +21533,12 @@ fi
echo $ac_n "checking for semget""... $ac_c" 1>&6
-echo "configure:21200: checking for semget" >&5
+echo "configure:21537: 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 21205 "configure"
+#line 21542 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char semget(); below. */
@@ -21227,7 +21564,7 @@ semget();
; return 0; }
EOF
-if { (eval echo configure:21231: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:21568: \"$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
@@ -21248,12 +21585,12 @@ fi
echo $ac_n "checking for semop""... $ac_c" 1>&6
-echo "configure:21252: checking for semop" >&5
+echo "configure:21589: 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 21257 "configure"
+#line 21594 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char semop(); below. */
@@ -21279,7 +21616,7 @@ semop();
; return 0; }
EOF
-if { (eval echo configure:21283: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:21620: \"$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
@@ -21300,12 +21637,12 @@ fi
echo $ac_n "checking for shmat""... $ac_c" 1>&6
-echo "configure:21304: checking for shmat" >&5
+echo "configure:21641: 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 21309 "configure"
+#line 21646 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char shmat(); below. */
@@ -21331,7 +21668,7 @@ shmat();
; return 0; }
EOF
-if { (eval echo configure:21335: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:21672: \"$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
@@ -21352,12 +21689,12 @@ fi
echo $ac_n "checking for shmctl""... $ac_c" 1>&6
-echo "configure:21356: checking for shmctl" >&5
+echo "configure:21693: 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 21361 "configure"
+#line 21698 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char shmctl(); below. */
@@ -21383,7 +21720,7 @@ shmctl();
; return 0; }
EOF
-if { (eval echo configure:21387: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:21724: \"$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
@@ -21404,12 +21741,12 @@ fi
echo $ac_n "checking for shmdt""... $ac_c" 1>&6
-echo "configure:21408: checking for shmdt" >&5
+echo "configure:21745: 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 21413 "configure"
+#line 21750 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char shmdt(); below. */
@@ -21435,7 +21772,7 @@ shmdt();
; return 0; }
EOF
-if { (eval echo configure:21439: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:21776: \"$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
@@ -21456,12 +21793,12 @@ fi
echo $ac_n "checking for shmget""... $ac_c" 1>&6
-echo "configure:21460: checking for shmget" >&5
+echo "configure:21797: 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 21465 "configure"
+#line 21802 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char shmget(); below. */
@@ -21487,7 +21824,7 @@ shmget();
; return 0; }
EOF
-if { (eval echo configure:21491: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:21828: \"$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
@@ -21508,12 +21845,12 @@ fi
echo $ac_n "checking for read_real_time""... $ac_c" 1>&6
-echo "configure:21512: checking for read_real_time" >&5
+echo "configure:21849: 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 21517 "configure"
+#line 21854 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char read_real_time(); below. */
@@ -21539,7 +21876,7 @@ read_real_time();
; return 0; }
EOF
-if { (eval echo configure:21543: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:21880: \"$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
@@ -21563,12 +21900,12 @@ fi
echo $ac_n "checking for shm_open""... $ac_c" 1>&6
-echo "configure:21567: checking for shm_open" >&5
+echo "configure:21904: 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 21572 "configure"
+#line 21909 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char shm_open(); below. */
@@ -21594,7 +21931,7 @@ shm_open();
; return 0; }
EOF
-if { (eval echo configure:21598: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:21935: \"$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
@@ -21618,12 +21955,12 @@ fi
echo $ac_n "checking for tempnam""... $ac_c" 1>&6
-echo "configure:21622: checking for tempnam" >&5
+echo "configure:21959: 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 21627 "configure"
+#line 21964 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char tempnam(); below. */
@@ -21649,7 +21986,7 @@ tempnam();
; return 0; }
EOF
-if { (eval echo configure:21653: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:21990: \"$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
@@ -21674,12 +22011,12 @@ fi
echo $ac_n "checking for truncate""... $ac_c" 1>&6
-echo "configure:21678: checking for truncate" >&5
+echo "configure:22015: 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 21683 "configure"
+#line 22020 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char truncate(); below. */
@@ -21705,7 +22042,7 @@ truncate();
; return 0; }
EOF
-if { (eval echo configure:21709: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:22046: \"$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
@@ -21730,12 +22067,12 @@ fi
echo $ac_n "checking for recv_timedwait""... $ac_c" 1>&6
-echo "configure:21734: checking for recv_timedwait" >&5
+echo "configure:22071: 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 21739 "configure"
+#line 22076 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char recv_timedwait(); below. */
@@ -21761,7 +22098,7 @@ recv_timedwait();
; return 0; }
EOF
-if { (eval echo configure:21765: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:22102: \"$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
@@ -21785,12 +22122,12 @@ fi
echo $ac_n "checking for recvfrom_timedwait""... $ac_c" 1>&6
-echo "configure:21789: checking for recvfrom_timedwait" >&5
+echo "configure:22126: 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 21794 "configure"
+#line 22131 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char recvfrom_timedwait(); below. */
@@ -21816,7 +22153,7 @@ recvfrom_timedwait();
; return 0; }
EOF
-if { (eval echo configure:21820: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:22157: \"$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
@@ -21840,12 +22177,12 @@ fi
echo $ac_n "checking for recvmsg_timedwait""... $ac_c" 1>&6
-echo "configure:21844: checking for recvmsg_timedwait" >&5
+echo "configure:22181: 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 21849 "configure"
+#line 22186 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char recvmsg_timedwait(); below. */
@@ -21871,7 +22208,7 @@ recvmsg_timedwait();
; return 0; }
EOF
-if { (eval echo configure:21875: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:22212: \"$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
@@ -21895,12 +22232,12 @@ fi
echo $ac_n "checking for send_timedwait""... $ac_c" 1>&6
-echo "configure:21899: checking for send_timedwait" >&5
+echo "configure:22236: 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 21904 "configure"
+#line 22241 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char send_timedwait(); below. */
@@ -21926,7 +22263,7 @@ send_timedwait();
; return 0; }
EOF
-if { (eval echo configure:21930: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:22267: \"$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
@@ -21950,12 +22287,12 @@ fi
echo $ac_n "checking for sendto_timedwait""... $ac_c" 1>&6
-echo "configure:21954: checking for sendto_timedwait" >&5
+echo "configure:22291: 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 21959 "configure"
+#line 22296 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char sendto_timedwait(); below. */
@@ -21981,7 +22318,7 @@ sendto_timedwait();
; return 0; }
EOF
-if { (eval echo configure:21985: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:22322: \"$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
@@ -22005,12 +22342,12 @@ fi
echo $ac_n "checking for sendmsg_timedwait""... $ac_c" 1>&6
-echo "configure:22009: checking for sendmsg_timedwait" >&5
+echo "configure:22346: 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 22014 "configure"
+#line 22351 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char sendmsg_timedwait(); below. */
@@ -22036,7 +22373,7 @@ sendmsg_timedwait();
; return 0; }
EOF
-if { (eval echo configure:22040: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:22377: \"$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
@@ -22060,12 +22397,12 @@ fi
echo $ac_n "checking for read_timedwait""... $ac_c" 1>&6
-echo "configure:22064: checking for read_timedwait" >&5
+echo "configure:22401: 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 22069 "configure"
+#line 22406 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char read_timedwait(); below. */
@@ -22091,7 +22428,7 @@ read_timedwait();
; return 0; }
EOF
-if { (eval echo configure:22095: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:22432: \"$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
@@ -22115,12 +22452,12 @@ fi
echo $ac_n "checking for readv_timedwait""... $ac_c" 1>&6
-echo "configure:22119: checking for readv_timedwait" >&5
+echo "configure:22456: 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 22124 "configure"
+#line 22461 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char readv_timedwait(); below. */
@@ -22146,7 +22483,7 @@ readv_timedwait();
; return 0; }
EOF
-if { (eval echo configure:22150: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:22487: \"$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
@@ -22170,12 +22507,12 @@ fi
echo $ac_n "checking for write_timedwait""... $ac_c" 1>&6
-echo "configure:22174: checking for write_timedwait" >&5
+echo "configure:22511: 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 22179 "configure"
+#line 22516 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char write_timedwait(); below. */
@@ -22201,7 +22538,7 @@ write_timedwait();
; return 0; }
EOF
-if { (eval echo configure:22205: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:22542: \"$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
@@ -22225,12 +22562,12 @@ fi
echo $ac_n "checking for writev_timedwait""... $ac_c" 1>&6
-echo "configure:22229: checking for writev_timedwait" >&5
+echo "configure:22566: 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 22234 "configure"
+#line 22571 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char writev_timedwait(); below. */
@@ -22256,7 +22593,7 @@ writev_timedwait();
; return 0; }
EOF
-if { (eval echo configure:22260: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:22597: \"$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
@@ -22280,12 +22617,12 @@ fi
echo $ac_n "checking for sem_init""... $ac_c" 1>&6
-echo "configure:22284: checking for sem_init" >&5
+echo "configure:22621: 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 22289 "configure"
+#line 22626 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char sem_init(); below. */
@@ -22311,7 +22648,7 @@ sem_init();
; return 0; }
EOF
-if { (eval echo configure:22315: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:22652: \"$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
@@ -22330,12 +22667,12 @@ else
echo "$ac_t""no" 1>&6
fi
echo $ac_n "checking for sem_destroy""... $ac_c" 1>&6
-echo "configure:22334: checking for sem_destroy" >&5
+echo "configure:22671: 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 22339 "configure"
+#line 22676 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char sem_destroy(); below. */
@@ -22361,7 +22698,7 @@ sem_destroy();
; return 0; }
EOF
-if { (eval echo configure:22365: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:22702: \"$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
@@ -22380,12 +22717,12 @@ else
echo "$ac_t""no" 1>&6
fi
echo $ac_n "checking for sem_open""... $ac_c" 1>&6
-echo "configure:22384: checking for sem_open" >&5
+echo "configure:22721: 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 22389 "configure"
+#line 22726 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char sem_open(); below. */
@@ -22411,7 +22748,7 @@ sem_open();
; return 0; }
EOF
-if { (eval echo configure:22415: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:22752: \"$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
@@ -22430,12 +22767,12 @@ else
echo "$ac_t""no" 1>&6
fi
echo $ac_n "checking for sem_close""... $ac_c" 1>&6
-echo "configure:22434: checking for sem_close" >&5
+echo "configure:22771: checking for sem_close" >&5
if eval "test \"`echo '$''{'ac_cv_func_sem_close'+set}'`\" = set"; then
echo $ac_n "(cached) $ac_c" 1>&6
else
cat > conftest.$ac_ext <<EOF
-#line 22439 "configure"
+#line 22776 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char sem_close(); below. */
@@ -22461,7 +22798,7 @@ sem_close();
; return 0; }
EOF
-if { (eval echo configure:22465: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:22802: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
rm -rf conftest*
eval "ac_cv_func_sem_close=yes"
else
@@ -22503,12 +22840,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:22507: checking for pthread_sigmask" >&5
+echo "configure:22844: 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 22512 "configure"
+#line 22849 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char pthread_sigmask(); below. */
@@ -22534,7 +22871,7 @@ pthread_sigmask();
; return 0; }
EOF
-if { (eval echo configure:22538: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:22875: \"$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
@@ -22559,12 +22896,12 @@ fi
echo $ac_n "checking for pthread_key_create""... $ac_c" 1>&6
-echo "configure:22563: checking for pthread_key_create" >&5
+echo "configure:22900: 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 22568 "configure"
+#line 22905 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char pthread_key_create(); below. */
@@ -22590,7 +22927,7 @@ pthread_key_create();
; return 0; }
EOF
-if { (eval echo configure:22594: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:22931: \"$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
@@ -22618,12 +22955,12 @@ fi
echo $ac_n "checking for pthread_condattr_setkind_np""... $ac_c" 1>&6
-echo "configure:22622: checking for pthread_condattr_setkind_np" >&5
+echo "configure:22959: 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 22627 "configure"
+#line 22964 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char pthread_condattr_setkind_np(); below. */
@@ -22649,7 +22986,7 @@ pthread_condattr_setkind_np();
; return 0; }
EOF
-if { (eval echo configure:22653: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:22990: \"$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
@@ -22673,12 +23010,12 @@ fi
echo $ac_n "checking for pthread_mutexattr_setkind_np""... $ac_c" 1>&6
-echo "configure:22677: checking for pthread_mutexattr_setkind_np" >&5
+echo "configure:23014: 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 22682 "configure"
+#line 23019 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char pthread_mutexattr_setkind_np(); below. */
@@ -22704,7 +23041,7 @@ pthread_mutexattr_setkind_np();
; return 0; }
EOF
-if { (eval echo configure:22708: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:23045: \"$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
@@ -22728,12 +23065,12 @@ fi
echo $ac_n "checking for pthread_condattr_setpshared""... $ac_c" 1>&6
-echo "configure:22732: checking for pthread_condattr_setpshared" >&5
+echo "configure:23069: 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 22737 "configure"
+#line 23074 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char pthread_condattr_setpshared(); below. */
@@ -22759,7 +23096,7 @@ pthread_condattr_setpshared();
; return 0; }
EOF
-if { (eval echo configure:22763: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:23100: \"$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
@@ -22784,12 +23121,12 @@ fi
echo $ac_n "checking for pthread_attr_setstackaddr""... $ac_c" 1>&6
-echo "configure:22788: checking for pthread_attr_setstackaddr" >&5
+echo "configure:23125: 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 22793 "configure"
+#line 23130 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char pthread_attr_setstackaddr(); below. */
@@ -22815,7 +23152,7 @@ pthread_attr_setstackaddr();
; return 0; }
EOF
-if { (eval echo configure:22819: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:23156: \"$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
@@ -22843,14 +23180,14 @@ fi
cat > conftest.$ac_ext <<EOF
-#line 22847 "configure"
+#line 23184 "configure"
#include "confdefs.h"
#include <pthread.h>
EOF
ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
-{ (eval echo configure:22854: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
+{ (eval echo configure:23191: \"$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*
@@ -22886,19 +23223,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:22890: checking for real pthread_attr_setstacksize from pthread.h" >&5
+echo "configure:23227: 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:22897: checking for $ace_real_function" >&5
+echo "configure:23234: 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 22902 "configure"
+#line 23239 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char $ace_real_function(); below. */
@@ -22924,7 +23261,7 @@ $ace_real_function();
; return 0; }
EOF
-if { (eval echo configure:22928: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:23265: \"$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
@@ -22953,14 +23290,14 @@ fi
cat > conftest.$ac_ext <<EOF
-#line 22957 "configure"
+#line 23294 "configure"
#include "confdefs.h"
#include <pthread.h>
EOF
ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
-{ (eval echo configure:22964: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
+{ (eval echo configure:23301: \"$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*
@@ -22996,19 +23333,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:23000: checking for real pthread_cancel from pthread.h" >&5
+echo "configure:23337: 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:23007: checking for $ace_real_function" >&5
+echo "configure:23344: 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 23012 "configure"
+#line 23349 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char $ace_real_function(); below. */
@@ -23034,7 +23371,7 @@ $ace_real_function();
; return 0; }
EOF
-if { (eval echo configure:23038: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:23375: \"$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
@@ -23060,12 +23397,12 @@ fi
echo $ac_n "checking for pthread_yield""... $ac_c" 1>&6
-echo "configure:23064: checking for pthread_yield" >&5
+echo "configure:23401: 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 23069 "configure"
+#line 23406 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char pthread_yield(); below. */
@@ -23091,7 +23428,7 @@ pthread_yield();
; return 0; }
EOF
-if { (eval echo configure:23095: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:23432: \"$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
@@ -23116,12 +23453,12 @@ fi
echo $ac_n "checking for pthread_thr_sigsetmask""... $ac_c" 1>&6
-echo "configure:23120: checking for pthread_thr_sigsetmask" >&5
+echo "configure:23457: 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 23125 "configure"
+#line 23462 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char pthread_thr_sigsetmask(); below. */
@@ -23147,7 +23484,7 @@ pthread_thr_sigsetmask();
; return 0; }
EOF
-if { (eval echo configure:23151: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:23488: \"$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
@@ -23172,12 +23509,12 @@ fi
echo $ac_n "checking for pthread_attr_setdetachstate""... $ac_c" 1>&6
-echo "configure:23176: checking for pthread_attr_setdetachstate" >&5
+echo "configure:23513: 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 23181 "configure"
+#line 23518 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char pthread_attr_setdetachstate(); below. */
@@ -23203,7 +23540,7 @@ pthread_attr_setdetachstate();
; return 0; }
EOF
-if { (eval echo configure:23207: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:23544: \"$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
@@ -23228,12 +23565,12 @@ fi
echo $ac_n "checking for pthread_attr_setsched""... $ac_c" 1>&6
-echo "configure:23232: checking for pthread_attr_setsched" >&5
+echo "configure:23569: 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 23237 "configure"
+#line 23574 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char pthread_attr_setsched(); below. */
@@ -23259,7 +23596,7 @@ pthread_attr_setsched();
; return 0; }
EOF
-if { (eval echo configure:23263: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:23600: \"$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
@@ -23277,12 +23614,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:23281: checking for pthread_attr_setschedpolicy" >&5
+echo "configure:23618: 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 23286 "configure"
+#line 23623 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char pthread_attr_setschedpolicy(); below. */
@@ -23308,7 +23645,7 @@ pthread_attr_setschedpolicy();
; return 0; }
EOF
-if { (eval echo configure:23312: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:23649: \"$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
@@ -23335,12 +23672,12 @@ fi
echo $ac_n "checking for pthread_attr_setscope""... $ac_c" 1>&6
-echo "configure:23339: checking for pthread_attr_setscope" >&5
+echo "configure:23676: 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 23344 "configure"
+#line 23681 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char pthread_attr_setscope(); below. */
@@ -23366,7 +23703,7 @@ pthread_attr_setscope();
; return 0; }
EOF
-if { (eval echo configure:23370: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:23707: \"$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
@@ -23391,12 +23728,12 @@ fi
echo $ac_n "checking for pthread_mutexattr_setpshared""... $ac_c" 1>&6
-echo "configure:23395: checking for pthread_mutexattr_setpshared" >&5
+echo "configure:23732: 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 23400 "configure"
+#line 23737 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char pthread_mutexattr_setpshared(); below. */
@@ -23422,7 +23759,7 @@ pthread_mutexattr_setpshared();
; return 0; }
EOF
-if { (eval echo configure:23426: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:23763: \"$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
@@ -23447,12 +23784,12 @@ fi
echo $ac_n "checking for pthread_mutexattr_create""... $ac_c" 1>&6
-echo "configure:23451: checking for pthread_mutexattr_create" >&5
+echo "configure:23788: 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 23456 "configure"
+#line 23793 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char pthread_mutexattr_create(); below. */
@@ -23478,7 +23815,7 @@ pthread_mutexattr_create();
; return 0; }
EOF
-if { (eval echo configure:23482: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:23819: \"$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
@@ -23497,12 +23834,12 @@ else
echo "$ac_t""no" 1>&6
fi
echo $ac_n "checking for pthread_mutexattr_delete""... $ac_c" 1>&6
-echo "configure:23501: checking for pthread_mutexattr_delete" >&5
+echo "configure:23838: 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 23506 "configure"
+#line 23843 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char pthread_mutexattr_delete(); below. */
@@ -23528,7 +23865,7 @@ pthread_mutexattr_delete();
; return 0; }
EOF
-if { (eval echo configure:23532: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:23869: \"$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
@@ -23547,12 +23884,12 @@ else
echo "$ac_t""no" 1>&6
fi
echo $ac_n "checking for pthread_condattr_delete""... $ac_c" 1>&6
-echo "configure:23551: checking for pthread_condattr_delete" >&5
+echo "configure:23888: 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 23556 "configure"
+#line 23893 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char pthread_condattr_delete(); below. */
@@ -23578,7 +23915,7 @@ pthread_condattr_delete();
; return 0; }
EOF
-if { (eval echo configure:23582: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:23919: \"$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
@@ -23597,12 +23934,12 @@ else
echo "$ac_t""no" 1>&6
fi
echo $ac_n "checking for pthread_condattr_create""... $ac_c" 1>&6
-echo "configure:23601: checking for pthread_condattr_create" >&5
+echo "configure:23938: 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 23606 "configure"
+#line 23943 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char pthread_condattr_create(); below. */
@@ -23628,7 +23965,7 @@ pthread_condattr_create();
; return 0; }
EOF
-if { (eval echo configure:23632: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:23969: \"$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
@@ -23647,12 +23984,12 @@ else
echo "$ac_t""no" 1>&6
fi
echo $ac_n "checking for pthread_setprio""... $ac_c" 1>&6
-echo "configure:23651: checking for pthread_setprio" >&5
+echo "configure:23988: 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 23656 "configure"
+#line 23993 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char pthread_setprio(); below. */
@@ -23678,7 +24015,7 @@ pthread_setprio();
; return 0; }
EOF
-if { (eval echo configure:23682: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:24019: \"$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
@@ -23697,12 +24034,12 @@ else
echo "$ac_t""no" 1>&6
fi
echo $ac_n "checking for pthread_getprio""... $ac_c" 1>&6
-echo "configure:23701: checking for pthread_getprio" >&5
+echo "configure:24038: 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 23706 "configure"
+#line 24043 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char pthread_getprio(); below. */
@@ -23728,7 +24065,7 @@ pthread_getprio();
; return 0; }
EOF
-if { (eval echo configure:23732: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:24069: \"$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
@@ -23747,12 +24084,12 @@ else
echo "$ac_t""no" 1>&6
fi
echo $ac_n "checking for pthread_setcancel""... $ac_c" 1>&6
-echo "configure:23751: checking for pthread_setcancel" >&5
+echo "configure:24088: 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 23756 "configure"
+#line 24093 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char pthread_setcancel(); below. */
@@ -23778,7 +24115,7 @@ pthread_setcancel();
; return 0; }
EOF
-if { (eval echo configure:23782: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:24119: \"$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
@@ -23797,12 +24134,12 @@ else
echo "$ac_t""no" 1>&6
fi
echo $ac_n "checking for pthread_setasynccancel""... $ac_c" 1>&6
-echo "configure:23801: checking for pthread_setasynccancel" >&5
+echo "configure:24138: 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 23806 "configure"
+#line 24143 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char pthread_setasynccancel(); below. */
@@ -23828,7 +24165,7 @@ pthread_setasynccancel();
; return 0; }
EOF
-if { (eval echo configure:23832: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:24169: \"$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
@@ -23847,12 +24184,12 @@ else
echo "$ac_t""no" 1>&6
fi
echo $ac_n "checking for pthread_kill""... $ac_c" 1>&6
-echo "configure:23851: checking for pthread_kill" >&5
+echo "configure:24188: 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 23856 "configure"
+#line 24193 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char pthread_kill(); below. */
@@ -23878,7 +24215,7 @@ pthread_kill();
; return 0; }
EOF
-if { (eval echo configure:23882: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:24219: \"$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
@@ -23897,12 +24234,12 @@ else
echo "$ac_t""no" 1>&6
fi
echo $ac_n "checking for pthread_attr_setprio""... $ac_c" 1>&6
-echo "configure:23901: checking for pthread_attr_setprio" >&5
+echo "configure:24238: 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 23906 "configure"
+#line 24243 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char pthread_attr_setprio(); below. */
@@ -23928,7 +24265,7 @@ pthread_attr_setprio();
; return 0; }
EOF
-if { (eval echo configure:23932: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:24269: \"$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
@@ -23947,12 +24284,12 @@ else
echo "$ac_t""no" 1>&6
fi
echo $ac_n "checking for pthread_attr_getprio""... $ac_c" 1>&6
-echo "configure:23951: checking for pthread_attr_getprio" >&5
+echo "configure:24288: 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 23956 "configure"
+#line 24293 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char pthread_attr_getprio(); below. */
@@ -23978,7 +24315,7 @@ pthread_attr_getprio();
; return 0; }
EOF
-if { (eval echo configure:23982: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:24319: \"$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
@@ -23997,12 +24334,12 @@ else
echo "$ac_t""no" 1>&6
fi
echo $ac_n "checking for pthread_setintr""... $ac_c" 1>&6
-echo "configure:24001: checking for pthread_setintr" >&5
+echo "configure:24338: 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 24006 "configure"
+#line 24343 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char pthread_setintr(); below. */
@@ -24028,7 +24365,7 @@ pthread_setintr();
; return 0; }
EOF
-if { (eval echo configure:24032: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:24369: \"$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
@@ -24047,12 +24384,12 @@ else
echo "$ac_t""no" 1>&6
fi
echo $ac_n "checking for pthread_setintrtype""... $ac_c" 1>&6
-echo "configure:24051: checking for pthread_setintrtype" >&5
+echo "configure:24388: 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 24056 "configure"
+#line 24393 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char pthread_setintrtype(); below. */
@@ -24078,7 +24415,7 @@ pthread_setintrtype();
; return 0; }
EOF
-if { (eval echo configure:24082: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:24419: \"$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
@@ -24097,12 +24434,12 @@ else
echo "$ac_t""no" 1>&6
fi
echo $ac_n "checking for pthread_mutexattr_init""... $ac_c" 1>&6
-echo "configure:24101: checking for pthread_mutexattr_init" >&5
+echo "configure:24438: 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 24106 "configure"
+#line 24443 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char pthread_mutexattr_init(); below. */
@@ -24128,7 +24465,7 @@ pthread_mutexattr_init();
; return 0; }
EOF
-if { (eval echo configure:24132: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:24469: \"$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
@@ -24147,12 +24484,12 @@ else
echo "$ac_t""no" 1>&6
fi
echo $ac_n "checking for pthread_mutexattr_destroy""... $ac_c" 1>&6
-echo "configure:24151: checking for pthread_mutexattr_destroy" >&5
+echo "configure:24488: 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 24156 "configure"
+#line 24493 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char pthread_mutexattr_destroy(); below. */
@@ -24178,7 +24515,7 @@ pthread_mutexattr_destroy();
; return 0; }
EOF
-if { (eval echo configure:24182: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:24519: \"$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
@@ -24197,12 +24534,12 @@ else
echo "$ac_t""no" 1>&6
fi
echo $ac_n "checking for pthread_condattr_init""... $ac_c" 1>&6
-echo "configure:24201: checking for pthread_condattr_init" >&5
+echo "configure:24538: 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 24206 "configure"
+#line 24543 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char pthread_condattr_init(); below. */
@@ -24228,7 +24565,7 @@ pthread_condattr_init();
; return 0; }
EOF
-if { (eval echo configure:24232: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:24569: \"$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
@@ -24247,12 +24584,12 @@ else
echo "$ac_t""no" 1>&6
fi
echo $ac_n "checking for pthread_condattr_destroy""... $ac_c" 1>&6
-echo "configure:24251: checking for pthread_condattr_destroy" >&5
+echo "configure:24588: 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 24256 "configure"
+#line 24593 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char pthread_condattr_destroy(); below. */
@@ -24278,7 +24615,7 @@ pthread_condattr_destroy();
; return 0; }
EOF
-if { (eval echo configure:24282: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:24619: \"$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
@@ -24297,12 +24634,12 @@ else
echo "$ac_t""no" 1>&6
fi
echo $ac_n "checking for pthread_setschedparam""... $ac_c" 1>&6
-echo "configure:24301: checking for pthread_setschedparam" >&5
+echo "configure:24638: 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 24306 "configure"
+#line 24643 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char pthread_setschedparam(); below. */
@@ -24328,7 +24665,7 @@ pthread_setschedparam();
; return 0; }
EOF
-if { (eval echo configure:24332: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:24669: \"$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
@@ -24347,12 +24684,12 @@ else
echo "$ac_t""no" 1>&6
fi
echo $ac_n "checking for pthread_getschedparam""... $ac_c" 1>&6
-echo "configure:24351: checking for pthread_getschedparam" >&5
+echo "configure:24688: 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 24356 "configure"
+#line 24693 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char pthread_getschedparam(); below. */
@@ -24378,7 +24715,7 @@ pthread_getschedparam();
; return 0; }
EOF
-if { (eval echo configure:24382: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:24719: \"$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
@@ -24397,12 +24734,12 @@ else
echo "$ac_t""no" 1>&6
fi
echo $ac_n "checking for pthread_setcancelstate""... $ac_c" 1>&6
-echo "configure:24401: checking for pthread_setcancelstate" >&5
+echo "configure:24738: 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 24406 "configure"
+#line 24743 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char pthread_setcancelstate(); below. */
@@ -24428,7 +24765,7 @@ pthread_setcancelstate();
; return 0; }
EOF
-if { (eval echo configure:24432: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:24769: \"$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
@@ -24447,12 +24784,12 @@ else
echo "$ac_t""no" 1>&6
fi
echo $ac_n "checking for pthread_setcanceltype""... $ac_c" 1>&6
-echo "configure:24451: checking for pthread_setcanceltype" >&5
+echo "configure:24788: 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 24456 "configure"
+#line 24793 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char pthread_setcanceltype(); below. */
@@ -24478,7 +24815,7 @@ pthread_setcanceltype();
; return 0; }
EOF
-if { (eval echo configure:24482: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:24819: \"$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
@@ -24501,14 +24838,14 @@ fi
cat > conftest.$ac_ext <<EOF
-#line 24505 "configure"
+#line 24842 "configure"
#include "confdefs.h"
#include <pthread.h>
EOF
ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
-{ (eval echo configure:24512: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
+{ (eval echo configure:24849: \"$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*
@@ -24544,19 +24881,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:24548: checking for real pthread_self from pthread.h" >&5
+echo "configure:24885: 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:24555: checking for $ace_real_function" >&5
+echo "configure:24892: 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 24560 "configure"
+#line 24897 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char $ace_real_function(); below. */
@@ -24582,7 +24919,7 @@ $ace_real_function();
; return 0; }
EOF
-if { (eval echo configure:24586: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:24923: \"$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
@@ -24600,12 +24937,12 @@ if eval "test \"`echo '$ac_cv_func_'$ace_real_function`\" = yes"; then
else
echo "$ac_t""no" 1>&6
echo $ac_n "checking for thread_self""... $ac_c" 1>&6
-echo "configure:24604: checking for thread_self" >&5
+echo "configure:24941: 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 24609 "configure"
+#line 24946 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char thread_self(); below. */
@@ -24631,7 +24968,7 @@ thread_self();
; return 0; }
EOF
-if { (eval echo configure:24635: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:24972: \"$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
@@ -24661,25 +24998,27 @@ fi
- echo $ac_n "checking for PTHREAD_PROCESS_* values in pthread.h""... $ac_c" 1>&6
-echo "configure:24666: checking for PTHREAD_PROCESS_* values in pthread.h" >&5
+ echo $ac_n "checking for PTHREAD_PROCESS_* enumeration in pthread.h""... $ac_c" 1>&6
+echo "configure:25003: 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 24672 "configure"
+#line 25009 "configure"
#include "confdefs.h"
#include <pthread.h>
int main() {
+/* Undefine PTHREAD_PROCESS_SHARED in case some platforms #define it */
+#undef PTHREAD_PROCESS_SHARED
int foo = PTHREAD_PROCESS_SHARED;
; return 0; }
EOF
-if { (eval echo configure:24683: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:25022: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
ace_cv_lib_pthread_process_enum=yes
@@ -24712,14 +25051,14 @@ EOF
echo $ac_n "checking for minimum thread priority""... $ac_c" 1>&6
-echo "configure:24716: checking for minimum thread priority" >&5
+echo "configure:25055: 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 24723 "configure"
+#line 25062 "configure"
#include "confdefs.h"
#include <pthread.h>
EOF
@@ -24731,7 +25070,7 @@ fi
rm -f conftest*
cat > conftest.$ac_ext <<EOF
-#line 24735 "configure"
+#line 25074 "configure"
#include "confdefs.h"
#include <pthread.h>
EOF
@@ -24752,7 +25091,7 @@ EOF
echo $ac_n "checking for maximum thread priority""... $ac_c" 1>&6
-echo "configure:24756: checking for maximum thread priority" >&5
+echo "configure:25095: 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
@@ -24769,7 +25108,7 @@ else
*)
esac
cat > conftest.$ac_ext <<EOF
-#line 24773 "configure"
+#line 25112 "configure"
#include "confdefs.h"
#include <pthread.h>
EOF
@@ -24781,7 +25120,7 @@ fi
rm -f conftest*
cat > conftest.$ac_ext <<EOF
-#line 24785 "configure"
+#line 25124 "configure"
#include "confdefs.h"
#include <pthread.h>
EOF
@@ -24804,12 +25143,12 @@ EOF
fi
if test "$ace_has_sthreads" = yes; then
echo $ac_n "checking for thr_keycreate""... $ac_c" 1>&6
-echo "configure:24808: checking for thr_keycreate" >&5
+echo "configure:25147: 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 24813 "configure"
+#line 25152 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char thr_keycreate(); below. */
@@ -24835,7 +25174,7 @@ thr_keycreate();
; return 0; }
EOF
-if { (eval echo configure:24839: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:25178: \"$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
@@ -24863,12 +25202,12 @@ fi
echo $ac_n "checking for thr_yield""... $ac_c" 1>&6
-echo "configure:24867: checking for thr_yield" >&5
+echo "configure:25206: 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 24872 "configure"
+#line 25211 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char thr_yield(); below. */
@@ -24894,7 +25233,7 @@ thr_yield();
; return 0; }
EOF
-if { (eval echo configure:24898: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:25237: \"$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
@@ -24918,12 +25257,12 @@ fi
echo $ac_n "checking for thr_keydelete""... $ac_c" 1>&6
-echo "configure:24922: checking for thr_keydelete" >&5
+echo "configure:25261: 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 24927 "configure"
+#line 25266 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char thr_keydelete(); below. */
@@ -24949,7 +25288,7 @@ thr_keydelete();
; return 0; }
EOF
-if { (eval echo configure:24953: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:25292: \"$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
@@ -24973,12 +25312,12 @@ fi
echo $ac_n "checking for thr_min_stack""... $ac_c" 1>&6
-echo "configure:24977: checking for thr_min_stack" >&5
+echo "configure:25316: 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 24982 "configure"
+#line 25321 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char thr_min_stack(); below. */
@@ -25004,7 +25343,7 @@ thr_min_stack();
; return 0; }
EOF
-if { (eval echo configure:25008: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:25347: \"$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
@@ -25023,12 +25362,12 @@ else
echo "$ac_t""no" 1>&6
echo $ac_n "checking for thr_minstack""... $ac_c" 1>&6
-echo "configure:25027: checking for thr_minstack" >&5
+echo "configure:25366: 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 25032 "configure"
+#line 25371 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char thr_minstack(); below. */
@@ -25054,7 +25393,7 @@ thr_minstack();
; return 0; }
EOF
-if { (eval echo configure:25058: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:25397: \"$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
@@ -25083,12 +25422,12 @@ fi
fi
fi
echo $ac_n "checking for sigwait""... $ac_c" 1>&6
-echo "configure:25087: checking for sigwait" >&5
+echo "configure:25426: 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 25092 "configure"
+#line 25431 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char sigwait(); below. */
@@ -25114,7 +25453,7 @@ sigwait();
; return 0; }
EOF
-if { (eval echo configure:25118: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:25457: \"$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
@@ -25140,12 +25479,12 @@ fi
if test "$ace_user_enable_reentrant_funcs" = yes; then
echo $ac_n "checking for rand_r""... $ac_c" 1>&6
-echo "configure:25144: checking for rand_r" >&5
+echo "configure:25483: 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 25149 "configure"
+#line 25488 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char rand_r(); below. */
@@ -25171,7 +25510,7 @@ rand_r();
; return 0; }
EOF
-if { (eval echo configure:25175: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:25514: \"$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
@@ -25192,12 +25531,12 @@ fi
echo $ac_n "checking for strtok_r""... $ac_c" 1>&6
-echo "configure:25196: checking for strtok_r" >&5
+echo "configure:25535: 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 25201 "configure"
+#line 25540 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char strtok_r(); below. */
@@ -25223,7 +25562,7 @@ strtok_r();
; return 0; }
EOF
-if { (eval echo configure:25227: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:25566: \"$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
@@ -25244,12 +25583,12 @@ fi
echo $ac_n "checking for getpwnam_r""... $ac_c" 1>&6
-echo "configure:25248: checking for getpwnam_r" >&5
+echo "configure:25587: 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 25253 "configure"
+#line 25592 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char getpwnam_r(); below. */
@@ -25275,7 +25614,7 @@ getpwnam_r();
; return 0; }
EOF
-if { (eval echo configure:25279: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:25618: \"$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
@@ -25300,12 +25639,12 @@ fi
echo $ac_n "checking for ctime_r""... $ac_c" 1>&6
-echo "configure:25304: checking for ctime_r" >&5
+echo "configure:25643: 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 25309 "configure"
+#line 25648 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char ctime_r(); below. */
@@ -25331,7 +25670,7 @@ ctime_r();
; return 0; }
EOF
-if { (eval echo configure:25335: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:25674: \"$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
@@ -25352,12 +25691,12 @@ fi
echo $ac_n "checking for localtime_r""... $ac_c" 1>&6
-echo "configure:25356: checking for localtime_r" >&5
+echo "configure:25695: 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 25361 "configure"
+#line 25700 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char localtime_r(); below. */
@@ -25383,7 +25722,7 @@ localtime_r();
; return 0; }
EOF
-if { (eval echo configure:25387: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:25726: \"$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
@@ -25404,12 +25743,12 @@ fi
echo $ac_n "checking for gmtime_r""... $ac_c" 1>&6
-echo "configure:25408: checking for gmtime_r" >&5
+echo "configure:25747: 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 25413 "configure"
+#line 25752 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char gmtime_r(); below. */
@@ -25435,7 +25774,7 @@ gmtime_r();
; return 0; }
EOF
-if { (eval echo configure:25439: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:25778: \"$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
@@ -25456,12 +25795,12 @@ fi
echo $ac_n "checking for asctime_r""... $ac_c" 1>&6
-echo "configure:25460: checking for asctime_r" >&5
+echo "configure:25799: 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 25465 "configure"
+#line 25804 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char asctime_r(); below. */
@@ -25487,7 +25826,7 @@ asctime_r();
; return 0; }
EOF
-if { (eval echo configure:25491: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:25830: \"$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
@@ -25508,12 +25847,12 @@ fi
echo $ac_n "checking for getprotobyname_r""... $ac_c" 1>&6
-echo "configure:25512: checking for getprotobyname_r" >&5
+echo "configure:25851: 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 25517 "configure"
+#line 25856 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char getprotobyname_r(); below. */
@@ -25539,7 +25878,7 @@ getprotobyname_r();
; return 0; }
EOF
-if { (eval echo configure:25543: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:25882: \"$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
@@ -25560,12 +25899,12 @@ fi
echo $ac_n "checking for getprotobynumber_r""... $ac_c" 1>&6
-echo "configure:25564: checking for getprotobynumber_r" >&5
+echo "configure:25903: 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 25569 "configure"
+#line 25908 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char getprotobynumber_r(); below. */
@@ -25591,7 +25930,7 @@ getprotobynumber_r();
; return 0; }
EOF
-if { (eval echo configure:25595: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:25934: \"$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
@@ -25612,12 +25951,12 @@ fi
echo $ac_n "checking for gethostbyaddr_r""... $ac_c" 1>&6
-echo "configure:25616: checking for gethostbyaddr_r" >&5
+echo "configure:25955: 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 25621 "configure"
+#line 25960 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char gethostbyaddr_r(); below. */
@@ -25643,7 +25982,7 @@ gethostbyaddr_r();
; 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:25986: \"$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
@@ -25664,12 +26003,12 @@ fi
echo $ac_n "checking for gethostbyname_r""... $ac_c" 1>&6
-echo "configure:25668: checking for gethostbyname_r" >&5
+echo "configure:26007: 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 25673 "configure"
+#line 26012 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char gethostbyname_r(); below. */
@@ -25695,7 +26034,7 @@ gethostbyname_r();
; return 0; }
EOF
-if { (eval echo configure:25699: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:26038: \"$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
@@ -25716,12 +26055,12 @@ fi
echo $ac_n "checking for getservbyname_r""... $ac_c" 1>&6
-echo "configure:25720: checking for getservbyname_r" >&5
+echo "configure:26059: 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 25725 "configure"
+#line 26064 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char getservbyname_r(); below. */
@@ -25747,7 +26086,7 @@ getservbyname_r();
; return 0; }
EOF
-if { (eval echo configure:25751: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:26090: \"$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
@@ -25768,12 +26107,12 @@ fi
fi
echo $ac_n "checking for readdir_r""... $ac_c" 1>&6
-echo "configure:25772: checking for readdir_r" >&5
+echo "configure:26111: 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 25777 "configure"
+#line 26116 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char readdir_r(); below. */
@@ -25799,7 +26138,7 @@ readdir_r();
; return 0; }
EOF
-if { (eval echo configure:25803: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:26142: \"$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
@@ -25824,12 +26163,12 @@ fi
echo $ac_n "checking for seekdir""... $ac_c" 1>&6
-echo "configure:25828: checking for seekdir" >&5
+echo "configure:26167: 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 25833 "configure"
+#line 26172 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char seekdir(); below. */
@@ -25855,7 +26194,7 @@ seekdir();
; return 0; }
EOF
-if { (eval echo configure:25859: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:26198: \"$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
@@ -25880,12 +26219,12 @@ fi
echo $ac_n "checking for telldir""... $ac_c" 1>&6
-echo "configure:25884: checking for telldir" >&5
+echo "configure:26223: 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 25889 "configure"
+#line 26228 "configure"
#include "confdefs.h"
/* System header to define __stub macros and hopefully few prototypes,
which can conflict with char telldir(); below. */
@@ -25911,7 +26250,7 @@ telldir();
; return 0; }
EOF
-if { (eval echo configure:25915: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then
+if { (eval echo configure:26254: \"$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
@@ -25957,13 +26296,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:25961: checking if dlopen takes a char *" >&5
+echo "configure:26300: 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 25967 "configure"
+#line 26306 "configure"
#include "confdefs.h"
#include <dlfcn.h>
@@ -25976,7 +26315,7 @@ int main() {
; return 0; }
EOF
-if { (eval echo configure:25980: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:26319: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
ace_cv_lib_charptr_dl=no
@@ -25987,7 +26326,7 @@ else
rm -rf conftest*
cat > conftest.$ac_ext <<EOF
-#line 25991 "configure"
+#line 26330 "configure"
#include "confdefs.h"
#include <dlfcn.h>
@@ -26000,7 +26339,7 @@ int main() {
; return 0; }
EOF
-if { (eval echo configure:26004: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:26343: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
ace_cv_lib_charptr_dl=yes
@@ -26056,13 +26395,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:26060: checking \"getby\" functions take a non-const char *" >&5
+echo "configure:26399: 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 26066 "configure"
+#line 26405 "configure"
#include "confdefs.h"
#include <sys/socket.h>
@@ -26078,7 +26417,7 @@ int main() {
; return 0; }
EOF
-if { (eval echo configure:26082: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:26421: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
ace_cv_lib_nonconst_getby=yes
@@ -26114,7 +26453,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:26118: checking if new throws bad_alloc exception on failure" >&5
+echo "configure:26457: 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
@@ -26125,7 +26464,7 @@ else
else
cat > conftest.$ac_ext <<EOF
-#line 26129 "configure"
+#line 26468 "configure"
#include "confdefs.h"
#ifdef __cplusplus
extern "C" void exit(int);
@@ -26143,7 +26482,7 @@ extern "C" void exit(int);
# include <exception.h>
#endif
- int main() {
+ int main(int, char *[]) {
while (1) {
try {
char *a = new char[1024*1024];
@@ -26162,7 +26501,7 @@ extern "C" void exit(int);
}
EOF
-if { (eval echo configure:26166: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
+if { (eval echo configure:26505: \"$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
@@ -26197,7 +26536,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:26201: checking if new throws xalloc exception on failure" >&5
+echo "configure:26540: 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
@@ -26208,7 +26547,7 @@ else
else
cat > conftest.$ac_ext <<EOF
-#line 26212 "configure"
+#line 26551 "configure"
#include "confdefs.h"
#ifdef __cplusplus
extern "C" void exit(int);
@@ -26226,7 +26565,7 @@ extern "C" void exit(int);
# include <exception.h>
#endif
- int main() {
+ int main(int, char *[]) {
while (1) {
try {
char *a = new char[1024*1024];
@@ -26245,7 +26584,7 @@ extern "C" void exit(int);
}
EOF
-if { (eval echo configure:26249: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
+if { (eval echo configure:26588: \"$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
@@ -26298,13 +26637,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:26302: checking if putmsg takes a const struct strbuf*" >&5
+echo "configure:26641: 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 26308 "configure"
+#line 26647 "configure"
#include "confdefs.h"
#include <stropts.h>
@@ -26320,7 +26659,7 @@ int main() {
; return 0; }
EOF
-if { (eval echo configure:26324: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:26663: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
ace_cv_lib_const_strbufptr=yes
@@ -26373,13 +26712,13 @@ EOF
echo $ac_n "checking if select takes int instead of fd_set""... $ac_c" 1>&6
-echo "configure:26377: checking if select takes int instead of fd_set" >&5
+echo "configure:26716: 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 26383 "configure"
+#line 26722 "configure"
#include "confdefs.h"
#ifndef ACE_LACKS_SYS_TYPES_H
@@ -26406,7 +26745,7 @@ int main() {
; return 0; }
EOF
-if { (eval echo configure:26410: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:26749: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
ace_cv_lib_select_takes_int=no
@@ -26417,7 +26756,7 @@ else
rm -rf conftest*
cat > conftest.$ac_ext <<EOF
-#line 26421 "configure"
+#line 26760 "configure"
#include "confdefs.h"
#ifndef ACE_LACKS_SYS_TYPES_H
@@ -26444,7 +26783,7 @@ int main() {
; return 0; }
EOF
-if { (eval echo configure:26448: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:26787: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
ace_cv_lib_select_takes_int=yes
@@ -26482,14 +26821,14 @@ EOF
echo $ac_n "checking if setrlimit() takes an enum as 1st argument (a)""... $ac_c" 1>&6
-echo "configure:26486: checking if setrlimit() takes an enum as 1st argument (a)" >&5
+echo "configure:26825: checking if setrlimit() takes an enum as 1st argument (a)" >&5
if eval "test \"`echo '$''{'ace_cv_lib_posix_setrlimit_enum_1_a'+set}'`\" = set"; then
echo $ac_n "(cached) $ac_c" 1>&6
else
ace_cv_lib_posix_setrlimit_enum_1_a=no
cat > conftest.$ac_ext <<EOF
-#line 26493 "configure"
+#line 26832 "configure"
#include "confdefs.h"
#include <sys/resource.h>
int main() {
@@ -26498,7 +26837,7 @@ enum __rlimit_resource rsrc;
setrlimit(rsrc, rlp);
; return 0; }
EOF
-if { (eval echo configure:26502: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:26841: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
ace_cv_lib_posix_setrlimit_enum_1_a=yes
else
@@ -26512,14 +26851,14 @@ fi
echo "$ac_t""$ace_cv_lib_posix_setrlimit_enum_1_a" 1>&6
echo $ac_n "checking if setrlimit() takes an enum as 1st argument (b)""... $ac_c" 1>&6
-echo "configure:26516: checking if setrlimit() takes an enum as 1st argument (b)" >&5
+echo "configure:26855: checking if setrlimit() takes an enum as 1st argument (b)" >&5
if eval "test \"`echo '$''{'ace_cv_lib_posix_setrlimit_enum_1_b'+set}'`\" = set"; then
echo $ac_n "(cached) $ac_c" 1>&6
else
ace_cv_lib_posix_setrlimit_enum_1_b=no
cat > conftest.$ac_ext <<EOF
-#line 26523 "configure"
+#line 26862 "configure"
#include "confdefs.h"
#include <sys/resource.h>
int main() {
@@ -26528,7 +26867,7 @@ enum __rlimit_resource rsrc;
setrlimit(rsrc, rlp);
; return 0; }
EOF
-if { (eval echo configure:26532: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:26871: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
ace_cv_lib_posix_setrlimit_enum_1_b=yes
else
@@ -26568,13 +26907,13 @@ fi
echo $ac_n "checking if setrlimit() takes a const pointer as 2nd argument (a)""... $ac_c" 1>&6
-echo "configure:26572: checking if setrlimit() takes a const pointer as 2nd argument (a)" >&5
+echo "configure:26911: checking if setrlimit() takes a const pointer as 2nd argument (a)" >&5
if eval "test \"`echo '$''{'ace_cv_lib_posix_setrlimit_const_2_a'+set}'`\" = set"; then
echo $ac_n "(cached) $ac_c" 1>&6
else
cat > conftest.$ac_ext <<EOF
-#line 26578 "configure"
+#line 26917 "configure"
#include "confdefs.h"
#include <sys/resource.h>
@@ -26587,7 +26926,7 @@ int main() {
; return 0; }
EOF
-if { (eval echo configure:26591: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:26930: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
ace_cv_lib_posix_setrlimit_const_2_a=yes
@@ -26607,14 +26946,14 @@ fi
echo "$ac_t""$ace_cv_lib_posix_setrlimit_const_2_a" 1>&6
echo $ac_n "checking if setrlimit() takes a const pointer as 2nd argument (b)""... $ac_c" 1>&6
-echo "configure:26611: checking if setrlimit() takes a const pointer as 2nd argument (b)" >&5
+echo "configure:26950: checking if setrlimit() takes a const pointer as 2nd argument (b)" >&5
if eval "test \"`echo '$''{'ace_cv_lib_posix_setrlimit_const_2_b'+set}'`\" = set"; then
echo $ac_n "(cached) $ac_c" 1>&6
else
ace_cv_lib_posix_setrlimit_const_2_b=no
cat > conftest.$ac_ext <<EOF
-#line 26618 "configure"
+#line 26957 "configure"
#include "confdefs.h"
#include <sys/resource.h>
int main() {
@@ -26623,7 +26962,7 @@ enum __rlimit_resource rsrc;
setrlimit(rsrc, rlp);
; return 0; }
EOF
-if { (eval echo configure:26627: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:26966: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
ace_cv_lib_posix_setrlimit_const_2_b=yes
else
@@ -26650,13 +26989,13 @@ fi
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:26654: checking if getrusage() takes an enum as 1st argument" >&5
+echo "configure:26993: checking if getrusage() takes an enum as 1st argument" >&5
if eval "test \"`echo '$''{'ace_cv_lib_posix_getrusage_enum_1'+set}'`\" = set"; then
echo $ac_n "(cached) $ac_c" 1>&6
else
cat > conftest.$ac_ext <<EOF
-#line 26660 "configure"
+#line 26999 "configure"
#include "confdefs.h"
#include <sys/resource.h>
@@ -26669,7 +27008,7 @@ int main() {
; return 0; }
EOF
-if { (eval echo configure:26673: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:27012: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
ace_cv_lib_posix_getrusage_enum_1=yes
@@ -26719,13 +27058,13 @@ fi
echo $ac_n "checking if select takes a const fifth argument""... $ac_c" 1>&6
-echo "configure:26723: checking if select takes a const fifth argument" >&5
+echo "configure:27062: 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 26729 "configure"
+#line 27068 "configure"
#include "confdefs.h"
#ifndef ACE_LACKS_SYS_TYPES_H
@@ -26750,7 +27089,7 @@ int main() {
; return 0; }
EOF
-if { (eval echo configure:26754: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:27093: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
ace_cv_lib_posix_select_const_5=yes
@@ -26805,13 +27144,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:26809: checking if sendmsg omits the const from the second argument" >&5
+echo "configure:27148: 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 26815 "configure"
+#line 27154 "configure"
#include "confdefs.h"
#ifndef ACE_LACKS_SYS_TYPES_H
@@ -26831,7 +27170,7 @@ int main() {
; return 0; }
EOF
-if { (eval echo configure:26835: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:27174: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
ace_cv_lib_broken_sendmsg=no
@@ -26885,13 +27224,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:26889: checking if writev omits the const from the iovec argument" >&5
+echo "configure:27228: 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 26895 "configure"
+#line 27234 "configure"
#include "confdefs.h"
#ifdef ACE_HAS_UNISTD_H
@@ -26912,7 +27251,7 @@ int main() {
; return 0; }
EOF
-if { (eval echo configure:26916: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:27255: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
ace_cv_lib_broken_writev=no
@@ -26965,13 +27304,13 @@ EOF
echo $ac_n "checking if socket size is denoted by size_t""... $ac_c" 1>&6
-echo "configure:26969: checking if socket size is denoted by size_t" >&5
+echo "configure:27308: 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 26975 "configure"
+#line 27314 "configure"
#include "confdefs.h"
#ifndef ACE_LACKS_SYS_TYPES_H
@@ -26988,7 +27327,7 @@ int main() {
; return 0; }
EOF
-if { (eval echo configure:26992: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:27331: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
ace_cv_lib_posix_socket_len_size_t=no
@@ -26999,7 +27338,7 @@ else
rm -rf conftest*
cat > conftest.$ac_ext <<EOF
-#line 27003 "configure"
+#line 27342 "configure"
#include "confdefs.h"
#ifndef ACE_LACKS_SYS_TYPES_H
@@ -27016,7 +27355,7 @@ int main() {
; return 0; }
EOF
-if { (eval echo configure:27020: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:27359: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
ace_cv_lib_posix_socket_len_size_t=yes
@@ -27071,13 +27410,13 @@ EOF
echo $ac_n "checking for (struct sockaddr *) msg_name field""... $ac_c" 1>&6
-echo "configure:27075: checking for (struct sockaddr *) msg_name field" >&5
+echo "configure:27414: 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 27081 "configure"
+#line 27420 "configure"
#include "confdefs.h"
#ifndef ACE_LACKS_SYS_TYPES_H
@@ -27094,7 +27433,7 @@ int main() {
; return 0; }
EOF
-if { (eval echo configure:27098: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:27437: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
ace_cv_lib_sockaddr_msg_name=yes
@@ -27147,13 +27486,13 @@ EOF
echo $ac_n "checking if setsockopt() takes a char* fourth argument""... $ac_c" 1>&6
-echo "configure:27151: checking if setsockopt() takes a char* fourth argument" >&5
+echo "configure:27490: 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 27157 "configure"
+#line 27496 "configure"
#include "confdefs.h"
#ifndef ACE_LACKS_SYS_TYPES_H
@@ -27176,7 +27515,7 @@ int main() {
; return 0; }
EOF
-if { (eval echo configure:27180: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:27519: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
ace_cv_lib_posix_setsockopt_charp_4=yes
@@ -27228,13 +27567,13 @@ EOF
echo $ac_n "checking if setsockopt() takes a void* fourth argument""... $ac_c" 1>&6
-echo "configure:27232: checking if setsockopt() takes a void* fourth argument" >&5
+echo "configure:27571: 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 27238 "configure"
+#line 27577 "configure"
#include "confdefs.h"
#ifndef ACE_LACKS_SYS_TYPES_H
@@ -27257,7 +27596,7 @@ int main() {
; return 0; }
EOF
-if { (eval echo configure:27261: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:27600: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
ace_cv_lib_posix_setsockopt_voidp_4=yes
@@ -27309,13 +27648,13 @@ EOF
echo $ac_n "checking if mmap() takes a void* first argument""... $ac_c" 1>&6
-echo "configure:27313: checking if mmap() takes a void* first argument" >&5
+echo "configure:27652: 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 27319 "configure"
+#line 27658 "configure"
#include "confdefs.h"
#ifndef ACE_LACKS_SYS_TYPES_H
@@ -27341,7 +27680,7 @@ int main() {
; return 0; }
EOF
-if { (eval echo configure:27345: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:27684: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
ace_cv_lib_posix_voidptr_mmap=yes
@@ -27377,13 +27716,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:27381: checking if msync accepts a third "sync" argument" >&5
+echo "configure:27720: 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 27387 "configure"
+#line 27726 "configure"
#include "confdefs.h"
#include <sys/mman.h>
@@ -27407,7 +27746,7 @@ int main() {
; return 0; }
EOF
-if { (eval echo configure:27411: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:27750: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
ace_cv_lib_broken_msync=no
@@ -27418,7 +27757,7 @@ else
rm -rf conftest*
cat > conftest.$ac_ext <<EOF
-#line 27422 "configure"
+#line 27761 "configure"
#include "confdefs.h"
#include <sys/mman.h>
@@ -27441,7 +27780,7 @@ int main() {
; return 0; }
EOF
-if { (eval echo configure:27445: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:27784: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
ace_cv_lib_broken_msync=yes
@@ -27476,13 +27815,13 @@ EOF
fi
echo $ac_n "checking for iostream method ipfx()""... $ac_c" 1>&6
-echo "configure:27480: checking for iostream method ipfx()" >&5
+echo "configure:27819: 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 27486 "configure"
+#line 27825 "configure"
#include "confdefs.h"
#include <iostream.h>
@@ -27493,7 +27832,7 @@ int main() {
; return 0; }
EOF
-if { (eval echo configure:27497: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:27836: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
ace_cv_feature_has_iostream_ipfx=yes
@@ -27526,13 +27865,13 @@ EOF
echo $ac_n "checking for line-buffered streambufs""... $ac_c" 1>&6
-echo "configure:27530: checking for line-buffered streambufs" >&5
+echo "configure:27869: 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 27536 "configure"
+#line 27875 "configure"
#include "confdefs.h"
#include <iostream.h>
@@ -27543,7 +27882,7 @@ int main() {
; return 0; }
EOF
-if { (eval echo configure:27547: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:27886: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
ace_cv_feature_has_linebuffered_streambuf=yes
@@ -27576,13 +27915,13 @@ EOF
echo $ac_n "checking for unbuffered streambufs""... $ac_c" 1>&6
-echo "configure:27580: checking for unbuffered streambufs" >&5
+echo "configure:27919: 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 27586 "configure"
+#line 27925 "configure"
#include "confdefs.h"
#include <iostream.h>
@@ -27593,7 +27932,7 @@ int main() {
; return 0; }
EOF
-if { (eval echo configure:27597: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:27936: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
ace_cv_feature_has_unbuffered_streambuf=yes
@@ -27625,13 +27964,13 @@ EOF
echo $ac_n "checking if signal takes a void (*)(int) as second argument""... $ac_c" 1>&6
-echo "configure:27629: checking if signal takes a void (*)(int) as second argument" >&5
+echo "configure:27968: 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 27635 "configure"
+#line 27974 "configure"
#include "confdefs.h"
#include <signal.h>
@@ -27647,7 +27986,7 @@ int main() {
; return 0; }
EOF
-if { (eval echo configure:27651: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:27990: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
ace_cv_lib_signal_vi1_2=yes
@@ -27667,13 +28006,13 @@ fi
echo "$ac_t""$ace_cv_lib_signal_vi1_2" 1>&6
echo $ac_n "checking if signal takes a void (*)(void) as second argument""... $ac_c" 1>&6
-echo "configure:27671: checking if signal takes a void (*)(void) as second argument" >&5
+echo "configure:28010: 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 27677 "configure"
+#line 28016 "configure"
#include "confdefs.h"
#include <signal.h>
@@ -27687,7 +28026,7 @@ int main() {
; return 0; }
EOF
-if { (eval echo configure:27691: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:28030: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
ace_cv_lib_signal_vv1_2=yes
@@ -27707,13 +28046,13 @@ fi
echo "$ac_t""$ace_cv_lib_signal_vv1_2" 1>&6
echo $ac_n "checking if signal takes a void (*)(int, ...) as second argument""... $ac_c" 1>&6
-echo "configure:27711: checking if signal takes a void (*)(int, ...) as second argument" >&5
+echo "configure:28050: 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 27717 "configure"
+#line 28056 "configure"
#include "confdefs.h"
#include <signal.h>
@@ -27727,7 +28066,7 @@ int main() {
; return 0; }
EOF
-if { (eval echo configure:27731: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:28070: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
ace_cv_lib_signal_vi1a2_2=yes
@@ -27747,13 +28086,13 @@ fi
echo "$ac_t""$ace_cv_lib_signal_vi1a2_2" 1>&6
echo $ac_n "checking if signal takes a void (*)(...) as second argument""... $ac_c" 1>&6
-echo "configure:27751: checking if signal takes a void (*)(...) as second argument" >&5
+echo "configure:28090: 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 27757 "configure"
+#line 28096 "configure"
#include "confdefs.h"
#include <signal.h>
@@ -27767,7 +28106,7 @@ int main() {
; return 0; }
EOF
-if { (eval echo configure:27771: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:28110: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
ace_cv_lib_signal_va1_2=yes
@@ -27787,13 +28126,13 @@ fi
echo "$ac_t""$ace_cv_lib_signal_va1_2" 1>&6
echo $ac_n "checking if signal returns a void (*)(int)""... $ac_c" 1>&6
-echo "configure:27791: checking if signal returns a void (*)(int)" >&5
+echo "configure:28130: 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 27797 "configure"
+#line 28136 "configure"
#include "confdefs.h"
#include <signal.h>
@@ -27808,7 +28147,7 @@ int main() {
; return 0; }
EOF
-if { (eval echo configure:27812: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:28151: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
ace_cv_lib_signal_vi1_ret=yes
@@ -27828,13 +28167,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:27832: checking if signal returns a void (*)(void)" >&5
+echo "configure:28171: 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 27838 "configure"
+#line 28177 "configure"
#include "confdefs.h"
#include <signal.h>
@@ -27849,7 +28188,7 @@ int main() {
; return 0; }
EOF
-if { (eval echo configure:27853: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:28192: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
ace_cv_lib_signal_vv1_ret=yes
@@ -27869,13 +28208,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:27873: checking if signal returns a void (*)(int, ...)" >&5
+echo "configure:28212: 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 27879 "configure"
+#line 28218 "configure"
#include "confdefs.h"
#include <signal.h>
@@ -27887,7 +28226,7 @@ int main() {
; return 0; }
EOF
-if { (eval echo configure:27891: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:28230: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
ace_cv_lib_signal_vi1a2_ret=yes
@@ -27907,13 +28246,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:27911: checking if signal returns a void (*)(...)" >&5
+echo "configure:28250: 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 27917 "configure"
+#line 28256 "configure"
#include "confdefs.h"
#include <signal.h>
@@ -27925,7 +28264,7 @@ int main() {
; return 0; }
EOF
-if { (eval echo configure:27929: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:28268: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
ace_cv_lib_signal_va1_ret=yes
@@ -27946,13 +28285,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:27950: checking if struct sigaction takes a void (*)(int) handler" >&5
+echo "configure:28289: 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 27956 "configure"
+#line 28295 "configure"
#include "confdefs.h"
#include <signal.h>
@@ -27968,7 +28307,7 @@ int main() {
; return 0; }
EOF
-if { (eval echo configure:27972: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:28311: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
ace_cv_lib_struct_sigaction_vi1_handler=yes
@@ -27988,13 +28327,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:27992: checking if struct sigaction takes a void (*)(void) handler" >&5
+echo "configure:28331: 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 27998 "configure"
+#line 28337 "configure"
#include "confdefs.h"
#include <signal.h>
@@ -28010,7 +28349,7 @@ int main() {
; return 0; }
EOF
-if { (eval echo configure:28014: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:28353: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
ace_cv_lib_struct_sigaction_vv1_handler=yes
@@ -28030,13 +28369,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:28034: checking if struct sigaction takes a void (*)(int, ...) handler" >&5
+echo "configure:28373: 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 28040 "configure"
+#line 28379 "configure"
#include "confdefs.h"
#include <signal.h>
@@ -28052,7 +28391,7 @@ int main() {
; return 0; }
EOF
-if { (eval echo configure:28056: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:28395: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
ace_cv_lib_struct_sigaction_vi1a2_handler=yes
@@ -28072,13 +28411,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:28076: checking if struct sigaction takes a void (*)(...) handler" >&5
+echo "configure:28415: 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 28082 "configure"
+#line 28421 "configure"
#include "confdefs.h"
#include <signal.h>
@@ -28094,7 +28433,7 @@ int main() {
; return 0; }
EOF
-if { (eval echo configure:28098: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:28437: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
ace_cv_lib_struct_sigaction_va1_handler=yes
@@ -28132,13 +28471,13 @@ fi
echo $ac_n "checking if msgsnd() takes a struct msgbuf* second argument""... $ac_c" 1>&6
-echo "configure:28136: checking if msgsnd() takes a struct msgbuf* second argument" >&5
+echo "configure:28475: 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 28142 "configure"
+#line 28481 "configure"
#include "confdefs.h"
#ifndef ACE_LACKS_SYS_TYPES_H
@@ -28159,7 +28498,7 @@ int main() {
; return 0; }
EOF
-if { (eval echo configure:28163: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:28502: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
ace_cv_lib_posix_msgsnd_msgbufp_2=yes
@@ -28186,13 +28525,13 @@ fi
echo $ac_n "checking if msgsnd() takes a const void* second argument""... $ac_c" 1>&6
-echo "configure:28190: checking if msgsnd() takes a const void* second argument" >&5
+echo "configure:28529: 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 28196 "configure"
+#line 28535 "configure"
#include "confdefs.h"
#ifndef ACE_LACKS_SYS_TYPES_H
@@ -28213,7 +28552,7 @@ int main() {
; return 0; }
EOF
-if { (eval echo configure:28217: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:28556: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
ace_cv_lib_posix_msgsnd_cvoidp_2=yes
@@ -28272,13 +28611,13 @@ EOF
echo $ac_n "checking if msgrcv() takes a void* second argument""... $ac_c" 1>&6
-echo "configure:28276: checking if msgrcv() takes a void* second argument" >&5
+echo "configure:28615: 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 28282 "configure"
+#line 28621 "configure"
#include "confdefs.h"
#ifndef ACE_LACKS_SYS_TYPES_H
@@ -28300,7 +28639,7 @@ int main() {
; return 0; }
EOF
-if { (eval echo configure:28304: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:28643: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
ace_cv_lib_posix_msgrcv_voidp_2=yes
@@ -28340,13 +28679,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:28344: checking if shmat() takes a void* second argument" >&5
+echo "configure:28683: 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 28350 "configure"
+#line 28689 "configure"
#include "confdefs.h"
#ifndef ACE_LACKS_SYS_TYPES_H
@@ -28363,7 +28702,7 @@ int shmid;
; return 0; }
EOF
-if { (eval echo configure:28367: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:28706: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
ace_cv_lib_posix_shmat_voidp_2=yes
@@ -28403,13 +28742,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:28407: checking if sigaction() takes a const* second argument" >&5
+echo "configure:28746: 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 28413 "configure"
+#line 28752 "configure"
#include "confdefs.h"
#include <signal.h>
@@ -28423,7 +28762,7 @@ int main() {
; return 0; }
EOF
-if { (eval echo configure:28427: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:28766: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
ace_cv_lib_posix_sigaction_constp_2=yes
@@ -28447,13 +28786,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:28451: checking if wait() takes a (union wait *) rather than int *" >&5
+echo "configure:28790: 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 28457 "configure"
+#line 28796 "configure"
#include "confdefs.h"
#include <sys/wait.h>
@@ -28466,7 +28805,7 @@ int main() {
; return 0; }
EOF
-if { (eval echo configure:28470: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:28809: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
ace_cv_lib_wait_takes_union_wait_ptr=no
@@ -28477,7 +28816,7 @@ else
rm -rf conftest*
cat > conftest.$ac_ext <<EOF
-#line 28481 "configure"
+#line 28820 "configure"
#include "confdefs.h"
#include <sys/wait.h>
@@ -28490,7 +28829,7 @@ int main() {
; return 0; }
EOF
-if { (eval echo configure:28494: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:28833: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
ace_cv_lib_wait_takes_union_wait_ptr=yes
@@ -28543,13 +28882,13 @@ EOF
echo $ac_n "checking if gettimeofday() takes a void * second argument""... $ac_c" 1>&6
-echo "configure:28547: checking if gettimeofday() takes a void * second argument" >&5
+echo "configure:28886: 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 28553 "configure"
+#line 28892 "configure"
#include "confdefs.h"
#include <sys/time.h>
@@ -28566,7 +28905,7 @@ int main() {
; return 0; }
EOF
-if { (eval echo configure:28570: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:28909: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
ace_cv_lib_voidptr_gettimeofday=yes
@@ -28607,13 +28946,13 @@ if test "$ace_cv_lib_voidptr_gettimeofday" = no; then
echo $ac_n "checking if gettimeofday() takes a timzeone * second argument""... $ac_c" 1>&6
-echo "configure:28611: checking if gettimeofday() takes a timzeone * second argument" >&5
+echo "configure:28950: checking if gettimeofday() takes a timzeone * 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 28617 "configure"
+#line 28956 "configure"
#include "confdefs.h"
#include <sys/time.h>
@@ -28630,7 +28969,7 @@ int main() {
; return 0; }
EOF
-if { (eval echo configure:28634: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:28973: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
ace_cv_lib_timezone_gettimeofday=yes
@@ -28656,13 +28995,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:28660: checking for gettimeofday() protoype" >&5
+echo "configure:28999: 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 28666 "configure"
+#line 29005 "configure"
#include "confdefs.h"
#include <time.h>
@@ -28728,13 +29067,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:28732: checking if ctime_r() takes two arguments" >&5
+echo "configure:29071: 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 28738 "configure"
+#line 29077 "configure"
#include "confdefs.h"
#ifndef _REENTRANT
@@ -28755,7 +29094,7 @@ int main() {
; return 0; }
EOF
-if { (eval echo configure:28759: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:29098: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
ace_cv_lib_posix_ctime_r_2_params=yes
@@ -28791,13 +29130,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:28795: checking if struct msghdr has a msg_accrights member" >&5
+echo "configure:29134: 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 28801 "configure"
+#line 29140 "configure"
#include "confdefs.h"
#ifndef ACE_LACKS_SYS_TYPES_H
@@ -28812,7 +29151,7 @@ int main() {
; return 0; }
EOF
-if { (eval echo configure:28816: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:29155: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
ace_cv_lib_posix_struct_msghdr_has_msg_accrights=yes
@@ -28841,13 +29180,13 @@ fi
echo $ac_n "checking if struct msghdr has a msg_accrights_len member""... $ac_c" 1>&6
-echo "configure:28845: checking if struct msghdr has a msg_accrights_len member" >&5
+echo "configure:29184: checking if struct msghdr has a msg_accrights_len member" >&5
if eval "test \"`echo '$''{'ace_cv_lib_posix_struct_msghdr_has_msg_accrights_len'+set}'`\" = set"; then
echo $ac_n "(cached) $ac_c" 1>&6
else
cat > conftest.$ac_ext <<EOF
-#line 28851 "configure"
+#line 29190 "configure"
#include "confdefs.h"
#ifndef ACE_LACKS_SYS_TYPES_H
@@ -28862,7 +29201,7 @@ int main() {
; return 0; }
EOF
-if { (eval echo configure:28866: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:29205: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
ace_cv_lib_posix_struct_msghdr_has_msg_accrights_len=yes
@@ -28897,13 +29236,13 @@ EOF
echo $ac_n "checking for 4.4 BSD style struct msghdr""... $ac_c" 1>&6
-echo "configure:28901: checking for 4.4 BSD style struct msghdr" >&5
+echo "configure:29240: 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 28907 "configure"
+#line 29246 "configure"
#include "confdefs.h"
#include <sys/socket.h>
EOF
@@ -28946,13 +29285,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:28950: checking if CMSG_DATA is defined" >&5
+echo "configure:29289: 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 28956 "configure"
+#line 29295 "configure"
#include "confdefs.h"
#ifndef ACE_LACKS_SYS_TYPES_H
@@ -28977,7 +29316,7 @@ else
ace_cv_lib_cmsg_data=no
cat > conftest.$ac_ext <<EOF
-#line 28981 "configure"
+#line 29320 "configure"
#include "confdefs.h"
#ifndef ACE_LACKS_SYS_TYPES_H
@@ -28996,7 +29335,7 @@ int main() {
; return 0; }
EOF
-if { (eval echo configure:29000: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:29339: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
@@ -29006,7 +29345,7 @@ else
rm -rf conftest*
cat > conftest.$ac_ext <<EOF
-#line 29010 "configure"
+#line 29349 "configure"
#include "confdefs.h"
#ifndef ACE_LACKS_SYS_TYPES_H
@@ -29025,7 +29364,7 @@ int main() {
; return 0; }
EOF
-if { (eval echo configure:29029: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:29368: \"$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; }
@@ -29036,7 +29375,7 @@ else
rm -rf conftest*
cat > conftest.$ac_ext <<EOF
-#line 29040 "configure"
+#line 29379 "configure"
#include "confdefs.h"
#ifndef ACE_LACKS_SYS_TYPES_H
@@ -29051,7 +29390,7 @@ int main() {
; return 0; }
EOF
-if { (eval echo configure:29055: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:29394: \"$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
@@ -29110,7 +29449,7 @@ fi
if test "$cross_compiling" != yes; then
echo $ac_n "checking for restartable system calls""... $ac_c" 1>&6
-echo "configure:29114: checking for restartable system calls" >&5
+echo "configure:29453: checking for restartable system calls" >&5
if eval "test \"`echo '$''{'ac_cv_sys_restartable_syscalls'+set}'`\" = set"; then
echo $ac_n "(cached) $ac_c" 1>&6
else
@@ -29118,7 +29457,7 @@ else
{ echo "configure: error: can not run test program while cross compiling" 1>&2; exit 1; }
else
cat > conftest.$ac_ext <<EOF
-#line 29122 "configure"
+#line 29461 "configure"
#include "confdefs.h"
#ifdef __cplusplus
extern "C" void exit(int);
@@ -29139,7 +29478,7 @@ main () {
}
EOF
-if { (eval echo configure:29143: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
+if { (eval echo configure:29482: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
then
ac_cv_sys_restartable_syscalls=yes
else
@@ -29171,13 +29510,13 @@ fi
echo $ac_n "checking for ctime() macro""... $ac_c" 1>&6
-echo "configure:29175: checking for ctime() macro" >&5
+echo "configure:29514: 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 29181 "configure"
+#line 29520 "configure"
#include "confdefs.h"
#include <time.h>
@@ -29223,13 +29562,13 @@ EOF
echo $ac_n "checking for reentrant function macros""... $ac_c" 1>&6
-echo "configure:29227: checking for reentrant function macros" >&5
+echo "configure:29566: 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 29233 "configure"
+#line 29572 "configure"
#include "confdefs.h"
#ifndef _REENTRANT
@@ -29286,13 +29625,13 @@ EOF
echo $ac_n "checking for sig{empty fill add del}set macros""... $ac_c" 1>&6
-echo "configure:29290: checking for sig{empty fill add del}set macros" >&5
+echo "configure:29629: 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 29296 "configure"
+#line 29635 "configure"
#include "confdefs.h"
#ifndef ACE_LACKS_SYS_TYPES_H
@@ -29341,13 +29680,13 @@ EOF
echo $ac_n "checking for open() mode masks""... $ac_c" 1>&6
-echo "configure:29345: checking for open() mode masks" >&5
+echo "configure:29684: 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 29351 "configure"
+#line 29690 "configure"
#include "confdefs.h"
#ifndef ACE_LACKS_SYS_TYPES_H
@@ -29408,13 +29747,13 @@ EOF
echo $ac_n "checking for POSIX O_NONBLOCK semantics""... $ac_c" 1>&6
-echo "configure:29412: checking for POSIX O_NONBLOCK semantics" >&5
+echo "configure:29751: 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 29418 "configure"
+#line 29757 "configure"
#include "confdefs.h"
#ifndef ACE_LACKS_SYS_TYPES_H
@@ -29460,13 +29799,13 @@ EOF
echo $ac_n "checking for MAP_FAILED constant""... $ac_c" 1>&6
-echo "configure:29464: checking for MAP_FAILED constant" >&5
+echo "configure:29803: 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 29470 "configure"
+#line 29809 "configure"
#include "confdefs.h"
#include <sys/mman.h>
@@ -29496,13 +29835,13 @@ fi
echo $ac_n "checking if MAP_FAILED is a long constant""... $ac_c" 1>&6
-echo "configure:29500: checking if MAP_FAILED is a long constant" >&5
+echo "configure:29839: 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 29506 "configure"
+#line 29845 "configure"
#include "confdefs.h"
#include <sys/mman.h>
@@ -29538,13 +29877,13 @@ EOF
echo $ac_n "checking if MAP_FAILED is not cast to void *""... $ac_c" 1>&6
-echo "configure:29542: checking if MAP_FAILED is not cast to void *" >&5
+echo "configure:29881: 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 29548 "configure"
+#line 29887 "configure"
#include "confdefs.h"
#include <sys/mman.h>
@@ -29555,7 +29894,7 @@ int main() {
; return 0; }
EOF
-if { (eval echo configure:29559: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:29898: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
ace_cv_have_broken_map_failed=no
@@ -29566,7 +29905,7 @@ else
rm -rf conftest*
cat > conftest.$ac_ext <<EOF
-#line 29570 "configure"
+#line 29909 "configure"
#include "confdefs.h"
#include <sys/mman.h>
@@ -29577,7 +29916,7 @@ int main() {
; return 0; }
EOF
-if { (eval echo configure:29581: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:29920: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
ace_cv_have_broken_map_failed=yes
@@ -29622,13 +29961,13 @@ EOF
echo $ac_n "checking for TCP_NODELAY support""... $ac_c" 1>&6
-echo "configure:29626: checking for TCP_NODELAY support" >&5
+echo "configure:29965: 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 29632 "configure"
+#line 29971 "configure"
#include "confdefs.h"
#ifndef ACE_LACKS_SYS_TYPES_H
@@ -29674,13 +30013,13 @@ EOF
echo $ac_n "checking for SO_SNDBUF/SO_RCVBUF socket options""... $ac_c" 1>&6
-echo "configure:29678: checking for SO_SNDBUF/SO_RCVBUF socket options" >&5
+echo "configure:30017: 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 29684 "configure"
+#line 30023 "configure"
#include "confdefs.h"
#ifndef ACE_LACKS_SYS_TYPES_H
@@ -29729,7 +30068,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:29733: checking for automatic init/fini calls" >&5
+echo "configure:30072: 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
@@ -29761,7 +30100,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:29765: checking for recursive thread exit semantics" >&5
+echo "configure:30104: 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
@@ -29787,13 +30126,13 @@ fi
echo $ac_n "checking for UNIX domain sockets""... $ac_c" 1>&6
-echo "configure:29791: checking for UNIX domain sockets" >&5
+echo "configure:30130: 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 29797 "configure"
+#line 30136 "configure"
#include "confdefs.h"
#include <sys/un.h>
@@ -29804,7 +30143,7 @@ int main() {
; return 0; }
EOF
-if { (eval echo configure:29808: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:30147: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
ace_cv_feature_unix_sockets=yes
@@ -29837,7 +30176,7 @@ EOF
echo $ac_n "checking for ACE_Handle_Set optimized for select()""... $ac_c" 1>&6
-echo "configure:29841: checking for ACE_Handle_Set optimized for select()" >&5
+echo "configure:30180: 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
@@ -29867,13 +30206,13 @@ EOF
echo $ac_n "checking for IP multicast support""... $ac_c" 1>&6
-echo "configure:29871: checking for IP multicast support" >&5
+echo "configure:30210: 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 29877 "configure"
+#line 30216 "configure"
#include "confdefs.h"
#ifndef ACE_LACKS_SYS_TYPES_H
@@ -29887,7 +30226,7 @@ int main() {
; return 0; }
EOF
-if { (eval echo configure:29891: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:30230: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
ace_cv_feature_ip_multicast=yes
@@ -29898,7 +30237,7 @@ else
rm -rf conftest*
cat > conftest.$ac_ext <<EOF
-#line 29902 "configure"
+#line 30241 "configure"
#include "confdefs.h"
#ifndef ACE_LACKS_SYS_TYPES_H
@@ -29912,7 +30251,7 @@ int main() {
; return 0; }
EOF
-if { (eval echo configure:29916: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:30255: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
ace_cv_feature_ip_multicast=yes
@@ -29947,7 +30286,7 @@ EOF
echo $ac_n "checking if running on an Alpha""... $ac_c" 1>&6
-echo "configure:29951: checking if running on an Alpha" >&5
+echo "configure:30290: 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
@@ -29986,7 +30325,7 @@ EOF
echo $ac_n "checking if running on a Power PC""... $ac_c" 1>&6
-echo "configure:29990: checking if running on a Power PC" >&5
+echo "configure:30329: 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
@@ -30027,7 +30366,7 @@ EOF
echo $ac_n "checking if running on a Pentium(tm) processor""... $ac_c" 1>&6
-echo "configure:30031: checking if running on a Pentium(tm) processor" >&5
+echo "configure:30370: 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
@@ -30068,105 +30407,6 @@ else
fi
- ace_pre_warning_CXXFLAGS="$CXXFLAGS"
-
- if test -n "$GXX"; then
- CXXFLAGS="$CXXFLAGS -Werror"
- else
- case $target in
- *solaris*)
- if test "$CXX" = CC; then
- CXXFLAGS="$CXXFLAGS -xwe"
- fi
- ;;
- *) ;;
- esac
- fi
-
-
-
- echo $ac_n "checking if _GNU_SOURCE is needed""... $ac_c" 1>&6
-echo "configure:30090: checking if _GNU_SOURCE is needed" >&5
- if eval "test \"`echo '$''{'ace_cv_feature_gnu_source'+set}'`\" = set"; then
- echo $ac_n "(cached) $ac_c" 1>&6
-else
-
- cat > conftest.$ac_ext <<EOF
-#line 30096 "configure"
-#include "confdefs.h"
-
-#ifndef ACE_LACKS_UNISTD_H
-# include <unistd.h>
-#endif
-
-int main() {
-
- int id = getpgid(0);
-
-; return 0; }
-EOF
-if { (eval echo configure:30109: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
- rm -rf conftest*
-
- ace_cv_feature_gnu_source=no
-
-else
- echo "configure: failed program was:" >&5
- cat conftest.$ac_ext >&5
- rm -rf conftest*
-
- cat > conftest.$ac_ext <<EOF
-#line 30120 "configure"
-#include "confdefs.h"
-
-#define _GNU_SOURCE
-/* #define _GNU_SOURCE_EXTENDED */
-#ifndef ACE_LACKS_UNISTD_H
-# include <unistd.h>
-#endif
-
-int main() {
-
- int id = getpgid(0);
-
-; return 0; }
-EOF
-if { (eval echo configure:30135: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
- rm -rf conftest*
-
- ace_cv_feature_gnu_source=yes
-
-else
- echo "configure: failed program was:" >&5
- cat conftest.$ac_ext >&5
- rm -rf conftest*
-
- ace_cv_feature_gnu_source=no
-
-fi
-rm -f conftest*
-
-fi
-rm -f conftest*
-
-fi
-
- echo "$ac_t""$ace_cv_feature_gnu_source" 1>&6
- if test "$ace_cv_feature_gnu_source" != no; then
- ace_just_a_place_holder=fixme
-cat >> confdefs.h <<\EOF
-#define _GNU_SOURCE 1
-EOF
-
- else
- ace_just_a_place_holder=fixme
-
- fi
-
-
-
- CXXFLAGS="$ace_pre_warning_CXXFLAGS"
-
@@ -30242,7 +30482,7 @@ EOF
fi
echo $ac_n "checking which POSIX thread library was found""... $ac_c" 1>&6
-echo "configure:30246: checking which POSIX thread library was found" >&5
+echo "configure:30486: checking which POSIX thread library was found" >&5
ace_has_pthreads=no
@@ -30310,7 +30550,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:30314: checking if a UNIX International thread library was found" >&5
+echo "configure:30554: checking if a UNIX International thread library was found" >&5
if test "$ace_has_sthreads" = yes; then
echo "$ac_t""yes" 1>&6
else
@@ -30341,10 +30581,7 @@ EOF
#define ACE_MT_SAFE 1
EOF
- cat >> confdefs.h <<\EOF
-#define _REENTRANT 1
-EOF
-
+ ACE_CXXFLAGS="$ACE_CXXFLAGS -D_REENTRANT"
if test "$ace_has_pthreads" = yes &&
test "$ace_has_sthreads" != yes; then
cat >> confdefs.h <<\EOF
@@ -30364,13 +30601,13 @@ EOF
echo $ac_n "checking for pthread_join null status pointer support""... $ac_c" 1>&6
-echo "configure:30368: checking for pthread_join null status pointer support" >&5
+echo "configure:30605: 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 30374 "configure"
+#line 30611 "configure"
#include "confdefs.h"
#if defined (ACE_HAS_PTHREADS) && defined (ACE_HAS_PTHREADS_DRAFT4)
@@ -30389,7 +30626,7 @@ if (eval "$ac_cpp conftest.$ac_ext") 2>&5 |
else
cat > conftest.$ac_ext <<EOF
-#line 30393 "configure"
+#line 30630 "configure"
#include "confdefs.h"
#ifdef __cplusplus
extern "C" void exit(int);
@@ -30429,7 +30666,7 @@ main (int argc, char *argv[])
fail then we've got other problems! */
if (pthread_attr_create (&attr) != 0) return 0 /*1*/;
- if (pthread_create (&id, attr, &nothing, 0) != 0) return 0 /*2*/;
+ if (pthread_create (&id, attr, nothing, 0) != 0) return 0 /*2*/;
if (pthread_attr_delete (&attr) != 0) return /*3*/;
/* ----- */
@@ -30452,7 +30689,7 @@ main (int argc, char *argv[])
}
EOF
-if { (eval echo configure:30456: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
+if { (eval echo configure:30693: \"$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
@@ -30496,13 +30733,13 @@ EOF
echo $ac_n "checking if SCHED_OTHER is only scheduling policy""... $ac_c" 1>&6
-echo "configure:30500: checking if SCHED_OTHER is only scheduling policy" >&5
+echo "configure:30737: 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 30506 "configure"
+#line 30743 "configure"
#include "confdefs.h"
#ifdef ACE_HAS_PTHREADS
@@ -30537,7 +30774,7 @@ else
else
cat > conftest.$ac_ext <<EOF
-#line 30541 "configure"
+#line 30778 "configure"
#include "confdefs.h"
#ifdef __cplusplus
extern "C" void exit(int);
@@ -30595,7 +30832,7 @@ int main ()
}
EOF
-if { (eval echo configure:30599: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null
+if { (eval echo configure:30836: \"$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
@@ -30824,7 +31061,7 @@ EOF
EOF
cat > conftest.$ac_ext <<EOF
-#line 30828 "configure"
+#line 31065 "configure"
#include "confdefs.h"
#ifdef __LP64__
@@ -30972,7 +31209,7 @@ EOF
;;
*osf3.2*)
cat > conftest.$ac_ext <<EOF
-#line 30976 "configure"
+#line 31213 "configure"
#include "confdefs.h"
#if defined(__DECCXX)
@@ -30995,7 +31232,7 @@ rm -f conftest*
;;
*osf4.0*)
cat > conftest.$ac_ext <<EOF
-#line 30999 "configure"
+#line 31236 "configure"
#include "confdefs.h"
#if defined(__DECCXX)
@@ -31016,7 +31253,7 @@ fi
rm -f conftest*
cat > conftest.$ac_ext <<EOF
-#line 31020 "configure"
+#line 31257 "configure"
#include "confdefs.h"
/* Include unistd.h to define _POSIX_C_SOURCE. */
@@ -31068,7 +31305,7 @@ EOF
EOF
cat > conftest.$ac_ext <<EOF
-#line 31072 "configure"
+#line 31309 "configure"
#include "confdefs.h"
#if defined (ACE_HAS_TSS_EMULATION)
@@ -31234,7 +31471,7 @@ EOF
EOF
cat > conftest.$ac_ext <<EOF
-#line 31238 "configure"
+#line 31475 "configure"
#include "confdefs.h"
#if defined (ACE_HAS_TSS_EMULATION)
@@ -31313,7 +31550,7 @@ LDFLAGS="$ACE_LDFLAGS $LDFLAGS"
echo $ac_n "checking for ACE iostream support""... $ac_c" 1>&6
-echo "configure:31317: checking for ACE iostream support" >&5
+echo "configure:31554: 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
@@ -31334,7 +31571,7 @@ else
CFLAGS="$CFLAGS -I. -I${srcdir}"
cat > conftest.$ac_ext <<EOF
-#line 31338 "configure"
+#line 31575 "configure"
#include "confdefs.h"
#if defined(ACE_UINT64_TYPEDEF)
typedef ACE_UINT64_TYPEDEF ACE_UINT64;
@@ -31347,7 +31584,7 @@ int a=0; a += 1;
; return 0; }
EOF
-if { (eval echo configure:31351: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:31588: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
ace_cv_feature_ace_iostream=yes
@@ -31391,7 +31628,7 @@ EOF
echo $ac_n "checking if ACE needs minimum iostream header inclusion""... $ac_c" 1>&6
-echo "configure:31395: checking if ACE needs minimum iostream header inclusion" >&5
+echo "configure:31632: 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
@@ -31412,7 +31649,7 @@ else
CFLAGS="$CFLAGS -I. -I${srcdir}"
cat > conftest.$ac_ext <<EOF
-#line 31416 "configure"
+#line 31653 "configure"
#include "confdefs.h"
#if defined(ACE_UINT64_TYPEDEF)
typedef ACE_UINT64_TYPEDEF ACE_UINT64;
@@ -31425,7 +31662,7 @@ int a=0; a += 1;
; return 0; }
EOF
-if { (eval echo configure:31429: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:31666: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
ace_cv_lib_minimum_iostream=no
@@ -31441,7 +31678,7 @@ else
CFLAGS="$CFLAGS -I. -I${srcdir}"
cat > conftest.$ac_ext <<EOF
-#line 31445 "configure"
+#line 31682 "configure"
#include "confdefs.h"
#if defined(ACE_UINT64_TYPEDEF)
typedef ACE_UINT64_TYPEDEF ACE_UINT64;
@@ -31455,7 +31692,7 @@ int a=0; a += 1;
; return 0; }
EOF
-if { (eval echo configure:31459: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:31696: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
ace_cv_lib_minimum_iostream=yes
@@ -31506,7 +31743,7 @@ EOF
echo $ac_n "checking for ACE_addr::sap_any support""... $ac_c" 1>&6
-echo "configure:31510: checking for ACE_addr::sap_any support" >&5
+echo "configure:31747: 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
@@ -31527,7 +31764,7 @@ else
CFLAGS="$CFLAGS -I. -I${srcdir}"
cat > conftest.$ac_ext <<EOF
-#line 31531 "configure"
+#line 31768 "configure"
#include "confdefs.h"
#if defined(ACE_UINT64_TYPEDEF)
typedef ACE_UINT64_TYPEDEF ACE_UINT64;
@@ -31540,7 +31777,7 @@ int a=0; a += 1;
; return 0; }
EOF
-if { (eval echo configure:31544: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:31781: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
ace_cv_lib_sap_any_support=yes
@@ -31556,7 +31793,7 @@ else
CFLAGS="$CFLAGS -I. -I${srcdir}"
cat > conftest.$ac_ext <<EOF
-#line 31560 "configure"
+#line 31797 "configure"
#include "confdefs.h"
#if defined(ACE_UINT64_TYPEDEF)
typedef ACE_UINT64_TYPEDEF ACE_UINT64;
@@ -31570,7 +31807,7 @@ int a=0; a += 1;
; return 0; }
EOF
-if { (eval echo configure:31574: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:31811: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
ace_cv_lib_sap_any_support=no
@@ -31622,7 +31859,7 @@ EOF
echo $ac_n "checking if ACE needs conversion to pass ACE_TTY_IO to DEV_Connector""... $ac_c" 1>&6
-echo "configure:31626: checking if ACE needs conversion to pass ACE_TTY_IO to DEV_Connector" >&5
+echo "configure:31863: 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
@@ -31643,7 +31880,7 @@ else
CFLAGS="$CFLAGS -I. -I${srcdir}"
cat > conftest.$ac_ext <<EOF
-#line 31647 "configure"
+#line 31884 "configure"
#include "confdefs.h"
#if defined(ACE_UINT64_TYPEDEF)
typedef ACE_UINT64_TYPEDEF ACE_UINT64;
@@ -31656,7 +31893,7 @@ int a=0; a += 1;
; return 0; }
EOF
-if { (eval echo configure:31660: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:31897: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
ace_cv_lib_need_dev_io_conv=no
@@ -31672,7 +31909,7 @@ else
CFLAGS="$CFLAGS -I. -I${srcdir}"
cat > conftest.$ac_ext <<EOF
-#line 31676 "configure"
+#line 31913 "configure"
#include "confdefs.h"
#if defined(ACE_UINT64_TYPEDEF)
typedef ACE_UINT64_TYPEDEF ACE_UINT64;
@@ -31686,7 +31923,7 @@ int a=0; a += 1;
; return 0; }
EOF
-if { (eval echo configure:31690: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
+if { (eval echo configure:31927: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
rm -rf conftest*
ace_cv_lib_need_dev_io_conv=yes
@@ -31873,6 +32110,7 @@ trap 'rm -fr `echo "
apps/gperf/Makefile
apps/gperf/src/Makefile
man/Makefile
+ man/html/Makefile
man/man3/Makefile
netsvcs/Makefile
netsvcs/clients/Makefile
@@ -32066,6 +32304,7 @@ CONFIG_FILES=\${CONFIG_FILES-"Makefile
apps/gperf/Makefile
apps/gperf/src/Makefile
man/Makefile
+ man/html/Makefile
man/man3/Makefile
netsvcs/Makefile
netsvcs/clients/Makefile
@@ -32257,7 +32496,6 @@ EOF
cat >> $CONFIG_STATUS <<\EOF
test -z "$CONFIG_HEADERS" || echo timestamp > ace/stamp-h
- chmod 755 ace-config #TAO/tao-config
echo ""
echo "Configuration of ACE is now complete."
echo ""
diff --git a/configure.in b/configure.in
index 30e23b2711c..6eecb9ac4de 100644
--- a/configure.in
+++ b/configure.in
@@ -1,7 +1,7 @@
dnl
dnl $Id$
-AC_REVISION($Revision 0.65 $)dnl
+AC_REVISION($Revision 0.66 $)dnl
dnl
dnl An autoconf script to automatically configure ACE.
@@ -184,7 +184,7 @@ dnl
dnl SECTION 2: Configure script command line options
dnl
-dnl Added maintainer mode option to the option list
+dnl Add maintainer mode option to the option list.
AM_MAINTAINER_MODE
dnl Determine which subsets to build
@@ -914,7 +914,7 @@ ACE_SEARCH_LIBS(dlopen, dl svld, ace_has_svr4_dynamic_linking=yes, dnl
])
dnl Check if the socket library is available
-ACE_SEARCH_LIBS(socket, socket,,)dnl
+ACE_SEARCH_LIBS(socket, socket,,,-lnsl)dnl
dnl Check for gethostbyname in -lnsl since some platforms (e.g. Solaris)
dnl put it there.
@@ -922,7 +922,7 @@ ACE_SEARCH_LIBS(gethostbyname, nsl, , )dnl
dnl Check for getservbyname in -lxnet since some platforms (e.g. Solaris)
dnl may put it there.
-ACE_SEARCH_LIBS(getservbyname, xnet, , AC_DEFINE(ACE_LACKS_GETSERVBYNAME))dnl
+ACE_SEARCH_LIBS(getservbyname, socket xnet, , AC_DEFINE(ACE_LACKS_GETSERVBYNAME), -lnsl)dnl
dnl Check for compile() regex function in -lgen. Solaris, for example,
@@ -952,14 +952,14 @@ dnl Some platforms, such as Solaris, may define sched_yield() there.
dnl Later we run AC_CHECK_FUNC(sched_yield), which is redundant in this case
dnl but is needed if sched_yield() is defined in one of the other libraries
dnl we check for.
-ACE_SEARCH_LIBS(sched_yield, posix4, ace_has_sched_yield=yes,)dnl
+ACE_SEARCH_LIBS(sched_yield, rt posix4, ace_has_sched_yield=yes,)dnl
dnl Check for asynchronous IO calls
ACE_CHECK_ASYNCH_IO
dnl Additional `-lposix4' library check since it may not be added by the
dnl above checks on some platforms that may need it
-ACE_SEARCH_LIBS(clock_gettime, posix4, AC_DEFINE(ACE_HAS_CLOCK_GETTIME),)dnl
+ACE_SEARCH_LIBS(clock_gettime, rt posix4, AC_DEFINE(ACE_HAS_CLOCK_GETTIME),)dnl
dnl Setup Libtool
dnl
@@ -1670,17 +1670,159 @@ ACE_CACHE_CHECK(if dlfcn.h is protected by extern \"C\",
])
], , AC_DEFINE(ACE_HAS_DLFCN_H_BROKEN_EXTERN_C))
+dnl Check if _XOPEN_SOURCE and _XOPEN_SOURCE_EXTENDED macros are
+dnl needed to make the getpgid() prototype visible.
+ACE_CACHE_CHECK(if XOPEN defines are needed for getpgid prototype,
+ ace_cv_lib_getpgid_needs_xopen,
+ [
+ save_CPPFLAGS="$CPPFLAGS"
+ ace_no_xopen="-U_XOPEN_SOURCE -U_XOPEN_SOURCE_EXTENDED"
+ CPPFLAGS="$CPPFLAGS $ace_no_xopen"
+ AC_EGREP_HEADER([[^_]+getpgid], unistd.h,
+ [
+ ace_cv_lib_getpgid_needs_xopen=no
+ ],
+ [
+ ace_xopen="-D_XOPEN_SOURCE -D_XOPEN_SOURCE_EXTENDED"
+ CPPFLAGS="$save_CPPFLAGS $ace_xopen"
+ AC_EGREP_HEADER([[^_]+getpgid], unistd.h,
+ [
+ ace_cv_lib_getpgid_needs_xopen=yes
+ ],
+ [
+ # We're hosed if we get here!
+ ace_cv_lib_getpgid_needs_xopen=no
+ ])
+ ])
+ dnl Reset the compiler flags
+ CPPFLAGS="$save_CPPFLAGS"
+ ], AC_DEFINE(ACE_LACKS_GETPGID_PROTOTYPE),)
+
+dnl Check if _POSIX_SOURCE macro is needed to make the strtok_r()
+dnl prototype visible.
+ACE_CACHE_CHECK(if POSIX define is needed for strtok_r prototype,
+ ace_cv_lib_strtok_r_needs_posix,
+ [
+ save_CPPFLAGS="$CPPFLAGS"
+ ace_no_posix="-U_POSIX_SOURCE"
+ CPPFLAGS="$CPPFLAGS $ace_no_posix"
+ AC_EGREP_HEADER([[^_]+strtok_r], string.h,
+ [
+ ace_cv_lib_strtok_r_needs_posix=no
+ ],
+ [
+ ace_posix="-D_POSIX_SOURCE"
+ CPPFLAGS="$save_CPPFLAGS $ace_posix"
+ AC_EGREP_HEADER([[^_]+strtok_r], string.h,
+ [
+ ace_cv_lib_strtok_r_needs_posix=yes
+ ],
+ [
+ # We're hosed if we get here!
+ ace_cv_lib_strtok_r_needs_posix=no
+ ])
+ ])
+ dnl Reset the compiler flags
+ CPPFLAGS="$save_CPPFLAGS"
+ ], AC_DEFINE(ACE_LACKS_STRTOK_R_PROTOTYPE),)
+
+dnl Check if _XOPEN_SOURCE macro is needed to make the strptime()
+dnl prototype visible.
+ACE_CACHE_CHECK(if XOPEN define is needed for strptime prototype,
+ ace_cv_lib_strptime_needs_xopen,
+ [
+ save_CPPFLAGS="$CPPFLAGS"
+ ace_no_xopen="-U_XOPEN_SOURCE"
+ CPPFLAGS="$CPPFLAGS $ace_no_xopen"
+ AC_EGREP_HEADER([[^_]+strptime], time.h,
+ [
+ ace_cv_lib_strptime_needs_xopen=no
+ ],
+ [
+ ace_xopen="-D_XOPEN_SOURCE"
+ CPPFLAGS="$save_CPPFLAGS $ace_xopen"
+ AC_EGREP_HEADER([[^_]+strptime], time.h,
+ [
+ ace_cv_lib_strptime_needs_xopen=yes
+ ],
+ [
+ # We're hosed if we get here!
+ ace_cv_lib_strptime_needs_xopen=no
+ ])
+ ])
+ dnl Reset the compiler flags
+ CPPFLAGS="$save_CPPFLAGS"
+ ], AC_DEFINE(ACE_LACKS_STRPTIME_PROTOTYPE),)
+
+dnl Check if _LARGEFILE64_SOURCE macro is needed to make the lseek64()
+dnl prototype visible.
+ACE_CACHE_CHECK(if LARGEFILE64 define is needed for lseek64 prototype,
+ ace_cv_lib_lseek64_needs_largefile64,
+ [
+ save_CPPFLAGS="$CPPFLAGS"
+ ace_no_largefile64="-U_LARGEFILE64_SOURCE"
+ CPPFLAGS="$CPPFLAGS $ace_no_largefile64"
+ AC_EGREP_HEADER([[^_]+lseek64], unistd.h,
+ [
+ ace_cv_lib_lseek64_needs_largefile64=no
+ ],
+ [
+ ace_largefile64="-D_LARGEFILE64_SOURCE"
+ CPPFLAGS="$save_CPPFLAGS $ace_largefile64"
+ AC_EGREP_HEADER([[^_]+lseek64], unistd.h,
+ [
+ ace_cv_lib_lseek64_needs_largefile64=yes
+ ],
+ [
+ # We're hosed if we get here!
+ ace_cv_lib_lseek64_needs_largefile64=no
+ ])
+ ])
+ dnl Reset the compiler flags
+ CPPFLAGS="$save_CPPFLAGS"
+ ], AC_DEFINE(ACE_LACKS_LSEEK64_PROTOTYPE),)
+
+dnl Check if _XOPEN_SOURCE=500 macro is needed to make the pread() and
+dnl pwrite() prototypes visible.
+ACE_CACHE_CHECK(if XOPEN define is needed for pread prototype,
+ ace_cv_lib_pread_needs_xopen,
+ [
+ save_CPPFLAGS="$CPPFLAGS"
+ ace_no_xopen="-U_XOPEN_SOURCE"
+ CPPFLAGS="$CPPFLAGS $ace_no_xopen"
+ AC_EGREP_HEADER([[^_]+pread], unistd.h,
+ [
+ ace_cv_lib_pread_needs_xopen=no
+ ],
+ [
+ ace_xopen="-D_XOPEN_SOURCE=500"
+ CPPFLAGS="$save_CPPFLAGS $ace_xopen"
+ AC_EGREP_HEADER([[^_]+pread], unistd.h,
+ [
+ ace_cv_lib_pread_needs_xopen=yes
+ ],
+ [
+ # We're hosed if we get here!
+ ace_cv_lib_pread_needs_xopen=no
+ ])
+ ])
+ dnl Reset the compiler flags
+ CPPFLAGS="$save_CPPFLAGS"
+ ], AC_DEFINE(ACE_LACKS_PREAD_PROTOTYPE),)
+
dnl
dnl SECTION 6: Checks for typedefs
dnl
-dnl Standard typedef checks (All of them may not be needed
+dnl Standard typedef checks (All of them may not be needed)
AC_TYPE_UID_T
AC_TYPE_MODE_T
AC_TYPE_OFF_T
AC_TYPE_PID_T
AC_TYPE_SIZE_T
+dnl AC_CHECK_TYPE (off64_t, long long)
+
dnl Specific typedef checks
dnl TODO: Check whether these typedefs can be defined somewhere else.
ACE_CHECK_TYPE(idtype_t, signal.h, AC_DEFINE(ACE_HAS_IDTYPE_T),)
@@ -2477,8 +2619,8 @@ ACE_CACHE_CHECK(for C++ \"using\" keyword support,
x++;
#else
# error Namespaces are not supported on this platform.
-Throw in some extraneous text since compilers are stupid enough
-to interpret "#error" as a warning. Go figure. :(
+Throw in some extraneous text since some compilers are stupid
+enough to interpret "#error" as a warning. Go figure. :(
This extraneous text should force an error.
#endif
],
@@ -3916,8 +4058,8 @@ dnl Check if platform has thread_self() rather than pthread_self()
])
dnl Check if pthread.h declares an enum with PTHREAD_PROCESS_PRIVATE and
-dnl PTHREAD_PROCESS_SHARED values
- ACE_CACHE_CHECK(for PTHREAD_PROCESS_* values in pthread.h,
+dnl PTHREAD_PROCESS_SHARED valuesACE_CACHE_CHECK(for ctime() macro,
+ ACE_CACHE_CHECK(for PTHREAD_PROCESS_* enumeration in pthread.h,
ace_cv_lib_pthread_process_enum,
[
AC_TRY_COMPILE(
@@ -3925,6 +4067,8 @@ dnl PTHREAD_PROCESS_SHARED values
#include <pthread.h>
],
[
+/* Undefine PTHREAD_PROCESS_SHARED in case some platforms #define it */
+#undef PTHREAD_PROCESS_SHARED
int foo = PTHREAD_PROCESS_SHARED;
],
[
@@ -4139,7 +4283,7 @@ if test "$ace_user_enable_exceptions" = yes; then
# include <exception.h>
#endif
- int main() {
+ int main(int, char *[]) {
while (1) {
try {
char *a = new char[1024*1024];
@@ -4186,7 +4330,7 @@ if test "$ace_user_enable_exceptions" = yes; then
# include <exception.h>
#endif
- int main() {
+ int main(int, char *[]) {
while (1) {
try {
char *a = new char[1024*1024];
@@ -6042,48 +6186,6 @@ dnl gethrtime.cpp to the source list
],)
AM_CONDITIONAL(ACE_ON_PENTIUM, test X$ace_cv_feature_pentium = Xyes)
-dnl We need to convert warnings to errors here since GNU C++ just gives
-dnl a warning about an implicit declaration of getpgid.
-ACE_CONVERT_WARNINGS_TO_ERRORS( dnl
-[
-dnl getpgid() requires _GNU_SOURCE to be defined in some platforms.
-dnl First check to see if getgpid calls fail without _GNU_SOURCE defines
-ACE_CACHE_CHECK(if _GNU_SOURCE is needed,
- ace_cv_feature_gnu_source,[
- AC_TRY_COMPILE(
- [
-#ifndef ACE_LACKS_UNISTD_H
-# include <unistd.h>
-#endif
- ],
- [
- int id = getpgid(0);
- ],
- [
- ace_cv_feature_gnu_source=no
- ],
- [
-dnl Now check to make sure that these defines actually fix getpgid
- AC_TRY_COMPILE(
- [
-#define _GNU_SOURCE
-/* #define _GNU_SOURCE_EXTENDED */
-#ifndef ACE_LACKS_UNISTD_H
-# include <unistd.h>
-#endif
- ],
- [
- int id = getpgid(0);
- ],
- [
- ace_cv_feature_gnu_source=yes
- ],
- [
- ace_cv_feature_gnu_source=no
- ])
- ])
- ], AC_DEFINE(_GNU_SOURCE),)
-]) dnl ACE_CONVERT_WARNINGS_TO_ERRORS
dnl
dnl SECTION 14: checks for aggregated features
@@ -6282,7 +6384,7 @@ dnl reentrant functions! However, we don't want to define them if
dnl the UNIX International threads library was detected.
AC_DEFINE(ACE_HAS_THREADS)
AC_DEFINE(ACE_MT_SAFE)
- AC_DEFINE(_REENTRANT)
+ ACE_CXXFLAGS="$ACE_CXXFLAGS -D_REENTRANT"
if test "$ace_has_pthreads" = yes &&
test "$ace_has_sthreads" != yes; then
AC_DEFINE(_POSIX_THREADS)
@@ -6342,7 +6444,7 @@ main (int argc, char *argv[])
fail then we've got other problems! */
if (pthread_attr_create (&attr) != 0) return 0 /*1*/;
- if (pthread_create (&id, attr, &nothing, 0) != 0) return 0 /*2*/;
+ if (pthread_create (&id, attr, nothing, 0) != 0) return 0 /*2*/;
if (pthread_attr_delete (&attr) != 0) return /*3*/;
/* ----- */
@@ -6811,6 +6913,7 @@ AC_OUTPUT([
apps/gperf/Makefile
apps/gperf/src/Makefile
man/Makefile
+ man/html/Makefile
man/man3/Makefile
netsvcs/Makefile
netsvcs/clients/Makefile
@@ -6842,7 +6945,6 @@ dnl TAO/tao/Makefile
dnl TAO/tao-config
],
[
- chmod 755 ace-config #TAO/tao-config
echo ""
echo "Configuration of ACE is now complete."
echo ""
diff --git a/man/Makefile.am b/man/Makefile.am
new file mode 100644
index 00000000000..4e50750ba10
--- /dev/null
+++ b/man/Makefile.am
@@ -0,0 +1,23 @@
+##----------------------------------------------------------------------------
+## $Id$
+##
+## Makefile.am for the ACE documentation directory
+##----------------------------------------------------------------------------
+
+##
+## Process this file with automake to create Makefile.in
+##
+
+## The number in AUTOMAKE_OPTIONS is the minimum required version automake
+## needed to process this file.
+AUTOMAKE_OPTIONS = 1.4
+
+## Build man3 before html directory!
+SUBDIRS = man3 html
+
+EXTRA_DIST = acewindex.html
+
+## FIXME!
+acewindex.html:
+ touch $@
+## $(top_srcdir)/bin/html-windex < windex > acewindex.html
diff --git a/man/html/Makefile.am b/man/html/Makefile.am
new file mode 100644
index 00000000000..5db99050486
--- /dev/null
+++ b/man/html/Makefile.am
@@ -0,0 +1,32 @@
+##----------------------------------------------------------------------------
+## $Id$
+##
+## Makefile.am for the ACE `html' man page directory
+##----------------------------------------------------------------------------
+
+##
+## Process this file with automake to create Makefile.in
+##
+
+## The number in AUTOMAKE_OPTIONS is the minimum required version automake
+## needed to process this file.
+AUTOMAKE_OPTIONS = 1.4
+
+htmldir = $(pkgdatadir)/html
+html_DATA := \
+ $(shell (for p in $(top_builddir)/man/man3/*.3; \
+ do basename $$p | sed -e 's/\.3$$/\.html/'; done))
+
+DISTCLEANFILES = $(html_DATA)
+
+EXTRA_DIST = $(html_DATA)
+
+## Only add rule to create ACE.html since it more efficient to make
+## man2html create all of the html man pages in one shot.
+$(html_DATA):
+ @ACE_ROOT=$(top_srcdir) $(top_srcdir)/bin/man2html \
+ $(top_builddir)/man/man3/`echo $@ | sed -e 's/\.html$$/\.3/'` \
+ > /dev/null
+
+all-local:
+ echo ACE HTML man pages have been built. \ No newline at end of file
diff --git a/man/man3/Makefile.am b/man/man3/Makefile.am
new file mode 100644
index 00000000000..b8ae49f4d2c
--- /dev/null
+++ b/man/man3/Makefile.am
@@ -0,0 +1,25 @@
+##----------------------------------------------------------------------------
+## $Id$
+##
+## Makefile.am for the ACE `man3' man page directory
+##----------------------------------------------------------------------------
+
+##
+## Process this file with automake to create Makefile.in
+##
+
+## The number in AUTOMAKE_OPTIONS is the minimum required version automake
+## needed to process this file.
+AUTOMAKE_OPTIONS = 1.4
+
+## Exclude non-ACE man pages
+## The distribution must be first be bootstrapped by running
+## `bin/bootstrap' from the top-level source directory before the
+## following will work.
+man_MANS := $(shell echo ACE*.3)
+
+MAINTAINERCLEANFILES = $(man_MANS)
+
+EXTRA_DIST = $(man_MANS)
+
+