diff options
author | Ossama Othman <ossama-othman@users.noreply.github.com> | 1999-12-24 19:09:16 +0000 |
---|---|---|
committer | Ossama Othman <ossama-othman@users.noreply.github.com> | 1999-12-24 19:09:16 +0000 |
commit | ccc47dbe57173d7fe3636eca65c903cdace76985 (patch) | |
tree | 4ebbc0970d716e2564ee315aeb84c7652b4de7f5 | |
parent | 7d4b4b8a8e0243d8f24b706d792976c4ca62c370 (diff) | |
download | ATCD-ccc47dbe57173d7fe3636eca65c903cdace76985.tar.gz |
ChangeLogTag:Fri Dec 24 13:06:59 1999 Ossama Othman <othman@cs.wustl.edu>
-rw-r--r-- | NEWS | 2 | ||||
-rw-r--r-- | THANKS | 1 | ||||
-rw-r--r-- | acconfig.h | 5 | ||||
-rw-r--r-- | ace/OS.h | 16 | ||||
-rw-r--r-- | ace/config.h.in | 7 | ||||
-rwxr-xr-x | configure | 2789 | ||||
-rw-r--r-- | configure.in | 189 | ||||
-rw-r--r-- | ltcf-cxx.sh | 120 |
8 files changed, 1800 insertions, 1329 deletions
@@ -1,4 +1,4 @@ -This is ACE version 5.0.9, released Sat Nov 27 15:01:44 1999. +This is ACE version 5.0.10, released Tue Dec 21 11:31:18 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 @@ -859,6 +859,7 @@ Jonathan Luellen <jluellen@scires.com> Andrew Psaltis <apsaltis@mho.net> Erik Jones <ej@pcslink.com> Ted Burghart <burghart@quoininc.com> +Mike Winter <Mike.Winter@Schwab.com> I would particularly like to thank Paul Stephenson, who worked with me at Ericsson. Paul devised the recursive Makefile scheme that diff --git a/acconfig.h b/acconfig.h index abc8a6ee069..7803bb6ae3c 100644 --- a/acconfig.h +++ b/acconfig.h @@ -218,11 +218,6 @@ #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, @@ -3928,6 +3928,10 @@ extern int t_errno; # endif /* ACE_HAS_ALLOCA_H */ # if defined (ACE_HAS_TIUSER_H) || defined (ACE_HAS_XTI) || defined (ACE_HAS_FORE_ATM_XTI) +# if defined (ACE_HAS_BROKEN_XTI_MACROS) +# undef TCP_NODELAY +# undef TCP_MAXSEG +# endif /* ACE_HAS_BROKEN_XTI_MACROS */ # if defined (ACE_HAS_TIUSER_H_BROKEN_EXTERN_C) extern "C" { # endif /* ACE_HAS_TIUSER_H_BROKEN_EXTERN_C */ @@ -3939,19 +3943,13 @@ extern "C" { # include /**/ <fore_xti/ans.h> # elif defined (ACE_HAS_TIUSER_H) # include /**/ <tiuser.h> -# else -# if defined (ACE_HAS_BROKEN_XTI_MACROS) -# undef TCP_NODELAY -# undef TCP_MAXSEG -# endif /* ACE_HAS_BROKEN_XTI_MACROS */ -# if defined ACE_HAS_SYS_XTI_H +# elif defined (ACE_HAS_SYS_XTI_H) # define class ace_xti_class # include /**/ <sys/xti.h> # undef class -# else +# else # include /**/ <xti.h> -# endif /* ACE_HAS_SYS_XTI_H */ -# endif /* ACE_HAS_TIUSER_H */ +# endif /* ACE_HAS_FORE_ATM_XTI */ # if defined (ACE_HAS_TIUSER_H_BROKEN_EXTERN_C) } # endif /* ACE_HAS_TIUSER_H_BROKEN_EXTERN_C */ diff --git a/ace/config.h.in b/ace/config.h.in index 1e8996f06dc..6a3a83e3a07 100644 --- a/ace/config.h.in +++ b/ace/config.h.in @@ -403,6 +403,10 @@ setrlimit() prototype. */ #undef ACE_HAS_BROKEN_SETRLIMIT +/* Compiler/platform has the wrong prototype for t_error(), i.e., + t_error(char *) rather than t_error(const char *). */ +#undef ACE_HAS_BROKEN_T_ERROR + /* platform define struct timespec members as ts_sec and ts_nsec instead of tv_sec and tv_nsec. This is highly non-portable. Currently only FreeBSD 2.1.x uses it. */ @@ -412,6 +416,9 @@ writev() prototype. */ #undef ACE_HAS_BROKEN_WRITEV +/* OS header files have some problems with XTI (HP/UX 11). */ +#undef ACE_HAS_BROKEN_XTI_MACROS + /* Platform has <bstring.h> (which contains bzero() prototype) */ #undef ACE_HAS_BSTRING diff --git a/configure b/configure index e9ebea5dc69..6a4ad47d106 100755 --- a/configure +++ b/configure @@ -10825,16 +10825,78 @@ else fi +if test "$ac_cv_header_xti_h" = yes || + test "$ac_cv_header_sys_xti_h" = yes || + test "$ac_cv_header_tiuser_h" = yes; then + + echo $ac_n "checking if TCP macros are defined in XTI headers""... $ac_c" 1>&6 +echo "configure:10834: checking if TCP macros are defined in XTI headers" >&5 + if eval "test \"`echo '$''{'ace_cv_lib_has_broken_xti_macros'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 +else + + cat > conftest.$ac_ext <<EOF +#line 10840 "configure" +#include "confdefs.h" + +#if defined (ACE_HAS_TIUSER_H) || defined (ACE_HAS_XTI) +# if defined (ACE_HAS_TIUSER_H) +# include /**/ <tiuser.h> +# elif defined (ACE_HAS_SYS_XTI_H) +# include /**/ <sys/xti.h> +# else +# include /**/ <xti.h> +# endif /* ACE_HAS_SYS_XTI_H */ +#endif /* ACE_HAS_TIUSER_H || ACE_HAS_XTI */ + +#if defined (TCP_NODELAY) || defined (TCP_MAXSEG) +ACE_BROKEN_XTI_MACROS +#endif /* TCP_NODELAY || TCPMAXSEG */ + +EOF +if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | + egrep "ACE_BROKEN_XTI_MACROS" >/dev/null 2>&1; then + rm -rf conftest* + + ace_cv_lib_has_broken_xti_macros=yes + +else + rm -rf conftest* + + ace_cv_lib_has_broken_xti_macros=no + +fi +rm -f conftest* + + +fi + + echo "$ac_t""$ace_cv_lib_has_broken_xti_macros" 1>&6 + if test "$ace_cv_lib_has_broken_xti_macros" != no; then + ace_just_a_place_holder=fixme + + cat >> confdefs.h <<\EOF +#define ACE_HAS_BROKEN_XTI_MACROS 1 +EOF + + + else + ace_just_a_place_holder=fixme + + fi + +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:10832: checking if tiuser.h is protected by extern \"C\"" >&5 +echo "configure:10894: 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 10838 "configure" +#line 10900 "configure" #include "confdefs.h" #include <tiuser.h> EOF @@ -10871,17 +10933,17 @@ EOF fi ac_safe=`echo "xliuser.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for xliuser.h""... $ac_c" 1>&6 -echo "configure:10875: checking for xliuser.h" >&5 +echo "configure:10937: 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 10880 "configure" +#line 10942 "configure" #include "confdefs.h" #include <xliuser.h> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:10885: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:10947: \"$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* @@ -10917,13 +10979,13 @@ fi if test "$ace_has_tli" = yes; then echo $ac_n "checking for TLI prototypes""... $ac_c" 1>&6 -echo "configure:10921: checking for TLI prototypes" >&5 +echo "configure:10983: 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 10927 "configure" +#line 10989 "configure" #include "confdefs.h" #if defined (ACE_HAS_TIMOD_H) @@ -10935,20 +10997,18 @@ else #endif #if defined (ACE_HAS_TIUSER_H) || defined (ACE_HAS_XTI) +# if defined (ACE_HAS_BROKEN_XTI_MACROS) +# undef TCP_NODELAY +# undef TCP_MAXSEG +# endif /* ACE_HAS_BROKEN_XTI_MACROS */ # if defined (ACE_HAS_TIUSER_H) # include /**/ <tiuser.h> +# elif defined (ACE_HAS_SYS_XTI_H) +# define class ace_xti_class +# include /**/ <sys/xti.h> +# undef class # else -# if defined (ACE_HAS_BROKEN_XTI_MACROS) -# undef TCP_NODELAY -# undef TCP_MAXSEG -# endif /* ACE_HAS_BROKEN_XTI_MACROS */ -# if defined ACE_HAS_SYS_XTI_H -# define class ace_xti_class -# include /**/ <sys/xti.h> -# undef class -# else -# include /**/ <xti.h> -# endif /* ACE_HAS_SYS_XTI_H */ +# include /**/ <xti.h> # endif /* ACE_HAS_TIUSER_H */ #endif /* ACE_HAS_TIUSER_H || ACE_HAS_XTI */ @@ -10989,13 +11049,13 @@ EOF echo $ac_n "checking for t_errno in TLI headers""... $ac_c" 1>&6 -echo "configure:10993: checking for t_errno in TLI headers" >&5 +echo "configure:11053: 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 10999 "configure" +#line 11059 "configure" #include "confdefs.h" #if defined (ACE_HAS_TIMOD_H) @@ -11007,30 +11067,24 @@ else #endif #if defined (ACE_HAS_TIUSER_H) || defined (ACE_HAS_XTI) +# if defined (ACE_HAS_BROKEN_XTI_MACROS) +# undef TCP_NODELAY +# undef TCP_MAXSEG +# endif /* ACE_HAS_BROKEN_XTI_MACROS */ # if defined (ACE_HAS_TIUSER_H) # include /**/ <tiuser.h> +# elif defined (ACE_HAS_SYS_XTI_H) +# define class ace_xti_class +# include /**/ <sys/xti.h> +# undef class # else -# if defined (ACE_HAS_BROKEN_XTI_MACROS) -# undef TCP_NODELAY -# undef TCP_MAXSEG -# endif /* ACE_HAS_BROKEN_XTI_MACROS */ -# if defined ACE_HAS_SYS_XTI_H -# define class ace_xti_class -# include /**/ <sys/xti.h> -# undef class -# else -# include /**/ <xti.h> -# endif /* ACE_HAS_SYS_XTI_H */ +# include /**/ <xti.h> # endif /* ACE_HAS_TIUSER_H */ #endif /* ACE_HAS_TIUSER_H || ACE_HAS_XTI */ #if defined (ACE_HAS_XLI) # include <xliuser.h> #endif - -#ifndef _THREAD_SAFE -# define _THREAD_SAFE -#endif EOF if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | @@ -11064,20 +11118,99 @@ EOF fi + + echo $ac_n "checking if t_error incorrectly accepts char *""... $ac_c" 1>&6 +echo "configure:11124: checking if t_error incorrectly accepts char *" >&5 + if eval "test \"`echo '$''{'ace_cv_lib_has_broken_t_error'+set}'`\" = set"; then + echo $ac_n "(cached) $ac_c" 1>&6 +else + + cat > conftest.$ac_ext <<EOF +#line 11130 "configure" +#include "confdefs.h" + +#if defined (ACE_HAS_TIMOD_H) +# include <sys/timod.h> +#endif + +#if defined (ACE_HAS_OSF_TIMOD_H) +# include <tli/timod.h> +#endif + +#if defined (ACE_HAS_TIUSER_H) || defined (ACE_HAS_XTI) +# if defined (ACE_HAS_BROKEN_XTI_MACROS) +# undef TCP_NODELAY +# undef TCP_MAXSEG +# endif /* ACE_HAS_BROKEN_XTI_MACROS */ +# if defined (ACE_HAS_TIUSER_H) +# include /**/ <tiuser.h> +# elif defined (ACE_HAS_SYS_XTI_H) +# define class ace_xti_class +# include /**/ <sys/xti.h> +# undef class +# else +# include /**/ <xti.h> +# endif /* ACE_HAS_TIUSER_H */ +#endif /* ACE_HAS_TIUSER_H || ACE_HAS_XTI */ + +#if defined (ACE_HAS_XLI) +# include <xliuser.h> +#endif + +int main() { + + const char *ace_errmsg = "FOO"; + t_error (errmsg); + +; return 0; } +EOF +if { (eval echo configure:11168: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then + rm -rf conftest* + + ace_cv_lib_has_broken_t_error=no + +else + echo "configure: failed program was:" >&5 + cat conftest.$ac_ext >&5 + rm -rf conftest* + + ace_cv_lib_has_broken_t_error=yes + +fi +rm -f conftest* + +fi + + echo "$ac_t""$ace_cv_lib_has_broken_t_error" 1>&6 + if test "$ace_cv_lib_has_broken_t_error" != no; then + ace_just_a_place_holder=fixme +: + else + ace_just_a_place_holder=fixme + + cat >> confdefs.h <<\EOF +#define ACE_HAS_BROKEN_T_ERROR 1 +EOF + + + + fi + + 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:11071: checking for sys/time.h" >&5 +echo "configure:11204: 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 11076 "configure" +#line 11209 "configure" #include "confdefs.h" #include <sys/time.h> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:11081: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:11214: \"$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* @@ -11095,7 +11228,7 @@ if eval "test \"`echo '$ac_cv_header_'$ac_safe`\" = yes"; then echo "$ac_t""yes" 1>&6 cat > conftest.$ac_ext <<EOF -#line 11099 "configure" +#line 11232 "configure" #include "confdefs.h" #include <time.h> EOF @@ -11121,17 +11254,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:11125: checking for sys/mman.h" >&5 +echo "configure:11258: 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 11130 "configure" +#line 11263 "configure" #include "confdefs.h" #include <sys/mman.h> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:11135: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:11268: \"$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* @@ -11149,7 +11282,7 @@ if eval "test \"`echo '$ac_cv_header_'$ac_safe`\" = yes"; then echo "$ac_t""yes" 1>&6 cat > conftest.$ac_ext <<EOF -#line 11153 "configure" +#line 11286 "configure" #include "confdefs.h" #include <sys/mman.h> EOF @@ -11181,17 +11314,17 @@ fi ac_safe=`echo "bstring.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for bstring.h""... $ac_c" 1>&6 -echo "configure:11185: checking for bstring.h" >&5 +echo "configure:11318: 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 11190 "configure" +#line 11323 "configure" #include "confdefs.h" #include <bstring.h> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:11195: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:11328: \"$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* @@ -11209,7 +11342,7 @@ if eval "test \"`echo '$ac_cv_header_'$ac_safe`\" = yes"; then echo "$ac_t""yes" 1>&6 cat > conftest.$ac_ext <<EOF -#line 11213 "configure" +#line 11346 "configure" #include "confdefs.h" #include <bstring.h> EOF @@ -11233,17 +11366,17 @@ fi ac_safe=`echo "strings.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for strings.h""... $ac_c" 1>&6 -echo "configure:11237: checking for strings.h" >&5 +echo "configure:11370: 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 11242 "configure" +#line 11375 "configure" #include "confdefs.h" #include <strings.h> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:11247: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:11380: \"$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* @@ -11261,7 +11394,7 @@ if eval "test \"`echo '$ac_cv_header_'$ac_safe`\" = yes"; then echo "$ac_t""yes" 1>&6 cat > conftest.$ac_ext <<EOF -#line 11265 "configure" +#line 11398 "configure" #include "confdefs.h" #include <strings.h> EOF @@ -11285,17 +11418,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:11289: checking for sys/syscall.h" >&5 +echo "configure:11422: 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 11294 "configure" +#line 11427 "configure" #include "confdefs.h" #include <sys/syscall.h> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:11299: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:11432: \"$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* @@ -11322,17 +11455,17 @@ fi ac_safe=`echo "poll.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for poll.h""... $ac_c" 1>&6 -echo "configure:11326: checking for poll.h" >&5 +echo "configure:11459: 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 11331 "configure" +#line 11464 "configure" #include "confdefs.h" #include <poll.h> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:11336: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:11469: \"$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* @@ -11361,17 +11494,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:11365: checking for $ac_hdr" >&5 +echo "configure:11498: 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 11370 "configure" +#line 11503 "configure" #include "confdefs.h" #include <$ac_hdr> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:11375: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:11508: \"$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* @@ -11399,17 +11532,17 @@ done ac_safe=`echo "regexpr.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for regexpr.h""... $ac_c" 1>&6 -echo "configure:11403: checking for regexpr.h" >&5 +echo "configure:11536: 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 11408 "configure" +#line 11541 "configure" #include "confdefs.h" #include <regexpr.h> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:11413: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:11546: \"$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* @@ -11436,17 +11569,17 @@ fi ac_safe=`echo "stropts.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for stropts.h""... $ac_c" 1>&6 -echo "configure:11440: checking for stropts.h" >&5 +echo "configure:11573: 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 11445 "configure" +#line 11578 "configure" #include "confdefs.h" #include <stropts.h> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:11450: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:11583: \"$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* @@ -11473,17 +11606,17 @@ fi ac_safe=`echo "siginfo.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for siginfo.h""... $ac_c" 1>&6 -echo "configure:11477: checking for siginfo.h" >&5 +echo "configure:11610: 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 11482 "configure" +#line 11615 "configure" #include "confdefs.h" #include <siginfo.h> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:11487: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:11620: \"$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* @@ -11511,17 +11644,17 @@ fi ac_safe=`echo "unistd.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for unistd.h""... $ac_c" 1>&6 -echo "configure:11515: checking for unistd.h" >&5 +echo "configure:11648: 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 11520 "configure" +#line 11653 "configure" #include "confdefs.h" #include <unistd.h> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:11525: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:11658: \"$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* @@ -11549,17 +11682,17 @@ fi ac_safe=`echo "utime.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for utime.h""... $ac_c" 1>&6 -echo "configure:11553: checking for utime.h" >&5 +echo "configure:11686: 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 11558 "configure" +#line 11691 "configure" #include "confdefs.h" #include <utime.h> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:11563: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:11696: \"$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* @@ -11587,17 +11720,17 @@ fi ac_safe=`echo "libc.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for libc.h""... $ac_c" 1>&6 -echo "configure:11591: checking for libc.h" >&5 +echo "configure:11724: 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 11596 "configure" +#line 11729 "configure" #include "confdefs.h" #include <libc.h> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:11601: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:11734: \"$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* @@ -11624,17 +11757,17 @@ fi ac_safe=`echo "osfcn.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for osfcn.h""... $ac_c" 1>&6 -echo "configure:11628: checking for osfcn.h" >&5 +echo "configure:11761: 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 11633 "configure" +#line 11766 "configure" #include "confdefs.h" #include <osfcn.h> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:11638: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:11771: \"$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* @@ -11661,17 +11794,17 @@ fi ac_safe=`echo "new" | sed 'y%./+-%__p_%'` echo $ac_n "checking for new""... $ac_c" 1>&6 -echo "configure:11665: checking for new" >&5 +echo "configure:11798: 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 11670 "configure" +#line 11803 "configure" #include "confdefs.h" #include <new> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:11675: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:11808: \"$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* @@ -11696,17 +11829,17 @@ else ac_safe=`echo "new.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for new.h""... $ac_c" 1>&6 -echo "configure:11700: checking for new.h" >&5 +echo "configure:11833: 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 11705 "configure" +#line 11838 "configure" #include "confdefs.h" #include <new.h> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:11710: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:11843: \"$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* @@ -11736,17 +11869,17 @@ fi ac_safe=`echo "stdexcept" | sed 'y%./+-%__p_%'` echo $ac_n "checking for stdexcept""... $ac_c" 1>&6 -echo "configure:11740: checking for stdexcept" >&5 +echo "configure:11873: 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 11745 "configure" +#line 11878 "configure" #include "confdefs.h" #include <stdexcept> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:11750: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:11883: \"$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* @@ -11771,17 +11904,17 @@ else ac_safe=`echo "exception.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for exception.h""... $ac_c" 1>&6 -echo "configure:11775: checking for exception.h" >&5 +echo "configure:11908: 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 11780 "configure" +#line 11913 "configure" #include "confdefs.h" #include <exception.h> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:11785: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:11918: \"$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* @@ -11811,17 +11944,17 @@ fi ac_safe=`echo "iomanip" | sed 'y%./+-%__p_%'` echo $ac_n "checking for iomanip""... $ac_c" 1>&6 -echo "configure:11815: checking for iomanip" >&5 +echo "configure:11948: 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 11820 "configure" +#line 11953 "configure" #include "confdefs.h" #include <iomanip> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:11825: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:11958: \"$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* @@ -11848,17 +11981,17 @@ fi ac_safe=`echo "cstring" | sed 'y%./+-%__p_%'` echo $ac_n "checking for cstring""... $ac_c" 1>&6 -echo "configure:11852: checking for cstring" >&5 +echo "configure:11985: 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 11857 "configure" +#line 11990 "configure" #include "confdefs.h" #include <cstring> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:11862: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:11995: \"$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* @@ -11885,17 +12018,17 @@ fi ac_safe=`echo "memory" | sed 'y%./+-%__p_%'` echo $ac_n "checking for memory""... $ac_c" 1>&6 -echo "configure:11889: checking for memory" >&5 +echo "configure:12022: 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 11894 "configure" +#line 12027 "configure" #include "confdefs.h" #include <memory> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:11899: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:12032: \"$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* @@ -11918,17 +12051,17 @@ fi ac_safe=`echo "map" | sed 'y%./+-%__p_%'` echo $ac_n "checking for map""... $ac_c" 1>&6 -echo "configure:11922: checking for map" >&5 +echo "configure:12055: 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 11927 "configure" +#line 12060 "configure" #include "confdefs.h" #include <map> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:11932: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:12065: \"$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* @@ -11947,17 +12080,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:11951: checking for net/if.h" >&5 +echo "configure:12084: 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 11956 "configure" +#line 12089 "configure" #include "confdefs.h" #include <net/if.h> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:11961: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:12094: \"$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* @@ -11976,13 +12109,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:11980: checking if STL map class conflicts with <net/if.h> map struct" >&5 +echo "configure:12113: 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 11986 "configure" +#line 12119 "configure" #include "confdefs.h" #ifndef ACE_LACKS_SYS_TYPES_H @@ -11997,7 +12130,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:12001: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:12134: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_header_stl_map_conflict=no @@ -12039,17 +12172,17 @@ fi ac_safe=`echo "queue" | sed 'y%./+-%__p_%'` echo $ac_n "checking for queue""... $ac_c" 1>&6 -echo "configure:12043: checking for queue" >&5 +echo "configure:12176: 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 12048 "configure" +#line 12181 "configure" #include "confdefs.h" #include <queue> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:12053: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:12186: \"$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* @@ -12068,17 +12201,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:12072: checking for netinet/in.h" >&5 +echo "configure:12205: 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 12077 "configure" +#line 12210 "configure" #include "confdefs.h" #include <netinet/in.h> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:12082: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:12215: \"$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* @@ -12097,13 +12230,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:12101: checking if STL queue class conflicts with <netinet/in.h> queue struct" >&5 +echo "configure:12234: 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 12107 "configure" +#line 12240 "configure" #include "confdefs.h" #ifndef ACE_LACKS_SYS_TYPES_H @@ -12118,7 +12251,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:12122: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:12255: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_header_stl_queue_conflict=no @@ -12162,17 +12295,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:12166: checking for $ac_hdr" >&5 +echo "configure:12299: 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 12171 "configure" +#line 12304 "configure" #include "confdefs.h" #include <$ac_hdr> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:12176: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:12309: \"$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* @@ -12205,17 +12338,17 @@ done ac_safe=`echo "iostream.h" | sed 'y%./+-%__p_%'` echo $ac_n "checking for iostream.h""... $ac_c" 1>&6 -echo "configure:12209: checking for iostream.h" >&5 +echo "configure:12342: 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 12214 "configure" +#line 12347 "configure" #include "confdefs.h" #include <iostream.h> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:12219: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:12352: \"$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* @@ -12233,17 +12366,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:12237: checking for fstream.h" >&5 +echo "configure:12370: 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 12242 "configure" +#line 12375 "configure" #include "confdefs.h" #include <fstream.h> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:12247: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:12380: \"$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* @@ -12279,13 +12412,13 @@ fi echo $ac_n "checking sched.h for thread scheduling definitions""... $ac_c" 1>&6 -echo "configure:12283: checking sched.h for thread scheduling definitions" >&5 +echo "configure:12416: 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 12289 "configure" +#line 12422 "configure" #include "confdefs.h" #include <sched.h> EOF @@ -12321,13 +12454,13 @@ EOF echo $ac_n "checking regexpr.h for regular expression support""... $ac_c" 1>&6 -echo "configure:12325: checking regexpr.h for regular expression support" >&5 +echo "configure:12458: 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 12331 "configure" +#line 12464 "configure" #include "confdefs.h" #include <regexpr.h> EOF @@ -12345,7 +12478,7 @@ else rm -rf conftest* cat > conftest.$ac_ext <<EOF -#line 12349 "configure" +#line 12482 "configure" #include "confdefs.h" #include <regexpr.h> EOF @@ -12391,13 +12524,13 @@ EOF echo $ac_n "checking if sprintf() returns char*""... $ac_c" 1>&6 -echo "configure:12395: checking if sprintf() returns char*" >&5 +echo "configure:12528: 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 12401 "configure" +#line 12534 "configure" #include "confdefs.h" #include <stdlib.h> @@ -12415,7 +12548,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:12419: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:12552: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_charptr_sprintf=yes @@ -12450,13 +12583,13 @@ EOF echo $ac_n "checking for getopt() prototype""... $ac_c" 1>&6 -echo "configure:12454: checking for getopt() prototype" >&5 +echo "configure:12587: 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 12460 "configure" +#line 12593 "configure" #include "confdefs.h" #include <unistd.h> EOF @@ -12470,7 +12603,7 @@ else rm -rf conftest* cat > conftest.$ac_ext <<EOF -#line 12474 "configure" +#line 12607 "configure" #include "confdefs.h" #include <stdlib.h> EOF @@ -12517,13 +12650,13 @@ EOF echo $ac_n "checking for old malloc() prototype""... $ac_c" 1>&6 -echo "configure:12521: checking for old malloc() prototype" >&5 +echo "configure:12654: 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 12527 "configure" +#line 12660 "configure" #include "confdefs.h" #include <stdlib.h> @@ -12538,7 +12671,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:12542: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:12675: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_old_malloc_proto=yes @@ -12573,13 +12706,13 @@ EOF echo $ac_n "checking for *_timedwait() prototypes""... $ac_c" 1>&6 -echo "configure:12577: checking for *_timedwait() prototypes" >&5 +echo "configure:12710: 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 12583 "configure" +#line 12716 "configure" #include "confdefs.h" #include <pthread.h> EOF @@ -12593,7 +12726,7 @@ else rm -rf conftest* cat > conftest.$ac_ext <<EOF -#line 12597 "configure" +#line 12730 "configure" #include "confdefs.h" #include <fcntl.h> EOF @@ -12634,13 +12767,13 @@ EOF echo $ac_n "checking for ualarm() prototype""... $ac_c" 1>&6 -echo "configure:12638: checking for ualarm() prototype" >&5 +echo "configure:12771: 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 12644 "configure" +#line 12777 "configure" #include "confdefs.h" #include <unistd.h> EOF @@ -12677,13 +12810,13 @@ EOF echo $ac_n "checking for getrusage() in sys/resource.h""... $ac_c" 1>&6 -echo "configure:12681: checking for getrusage() in sys/resource.h" >&5 +echo "configure:12814: 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 12687 "configure" +#line 12820 "configure" #include "confdefs.h" #include <sys/resource.h> EOF @@ -12719,13 +12852,13 @@ EOF echo $ac_n "checking for getrlimit() and setrlimit() in sys/resource.h""... $ac_c" 1>&6 -echo "configure:12723: checking for getrlimit() and setrlimit() in sys/resource.h" >&5 +echo "configure:12856: 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 12729 "configure" +#line 12862 "configure" #include "confdefs.h" #include <sys/resource.h> EOF @@ -12734,7 +12867,7 @@ if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | rm -rf conftest* cat > conftest.$ac_ext <<EOF -#line 12738 "configure" +#line 12871 "configure" #include "confdefs.h" #include <sys/resource.h> EOF @@ -12780,13 +12913,13 @@ EOF echo $ac_n "checking if dlfcn.h is protected by extern \"C\"""... $ac_c" 1>&6 -echo "configure:12784: checking if dlfcn.h is protected by extern \"C\"" >&5 +echo "configure:12917: 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 12790 "configure" +#line 12923 "configure" #include "confdefs.h" #include <dlfcn.h> EOF @@ -12824,12 +12957,12 @@ EOF echo $ac_n "checking for uid_t in sys/types.h""... $ac_c" 1>&6 -echo "configure:12828: checking for uid_t in sys/types.h" >&5 +echo "configure:12961: 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 12833 "configure" +#line 12966 "configure" #include "confdefs.h" #include <sys/types.h> EOF @@ -12858,12 +12991,12 @@ EOF fi echo $ac_n "checking for ANSI C header files""... $ac_c" 1>&6 -echo "configure:12862: checking for ANSI C header files" >&5 +echo "configure:12995: 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 12867 "configure" +#line 13000 "configure" #include "confdefs.h" #include <stdlib.h> #include <stdarg.h> @@ -12871,7 +13004,7 @@ else #include <float.h> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:12875: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:13008: \"$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* @@ -12888,7 +13021,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 12892 "configure" +#line 13025 "configure" #include "confdefs.h" #include <string.h> EOF @@ -12906,7 +13039,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 12910 "configure" +#line 13043 "configure" #include "confdefs.h" #include <stdlib.h> EOF @@ -12927,7 +13060,7 @@ if test "$cross_compiling" = yes; then : else cat > conftest.$ac_ext <<EOF -#line 12931 "configure" +#line 13064 "configure" #include "confdefs.h" #ifdef __cplusplus extern "C" void exit(int); @@ -12941,7 +13074,7 @@ if (XOR (islower (i), ISLOWER (i)) || toupper (i) != TOUPPER (i)) exit(2); exit (0); } EOF -if { (eval echo configure:12945: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:13078: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null then : else @@ -12965,12 +13098,12 @@ EOF fi echo $ac_n "checking for mode_t""... $ac_c" 1>&6 -echo "configure:12969: checking for mode_t" >&5 +echo "configure:13102: 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 12974 "configure" +#line 13107 "configure" #include "confdefs.h" #include <sys/types.h> #if STDC_HEADERS @@ -12998,12 +13131,12 @@ EOF fi echo $ac_n "checking for off_t""... $ac_c" 1>&6 -echo "configure:13002: checking for off_t" >&5 +echo "configure:13135: 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 13007 "configure" +#line 13140 "configure" #include "confdefs.h" #include <sys/types.h> #if STDC_HEADERS @@ -13031,12 +13164,12 @@ EOF fi echo $ac_n "checking for pid_t""... $ac_c" 1>&6 -echo "configure:13035: checking for pid_t" >&5 +echo "configure:13168: 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 13040 "configure" +#line 13173 "configure" #include "confdefs.h" #include <sys/types.h> #if STDC_HEADERS @@ -13064,12 +13197,12 @@ EOF fi echo $ac_n "checking for size_t""... $ac_c" 1>&6 -echo "configure:13068: checking for size_t" >&5 +echo "configure:13201: 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 13073 "configure" +#line 13206 "configure" #include "confdefs.h" #include <sys/types.h> #if STDC_HEADERS @@ -13102,13 +13235,13 @@ fi echo $ac_n "checking for idtype_t in signal.h""... $ac_c" 1>&6 -echo "configure:13106: checking for idtype_t in signal.h" >&5 +echo "configure:13239: 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 13112 "configure" +#line 13245 "configure" #include "confdefs.h" #include <signal.h> @@ -13119,7 +13252,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:13123: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:13256: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_type_idtype_t=yes @@ -13153,13 +13286,13 @@ EOF echo $ac_n "checking for sem_t in semaphore.h""... $ac_c" 1>&6 -echo "configure:13157: checking for sem_t in semaphore.h" >&5 +echo "configure:13290: 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 13163 "configure" +#line 13296 "configure" #include "confdefs.h" #include <semaphore.h> @@ -13170,7 +13303,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:13174: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:13307: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_type_sem_t=yes @@ -13201,13 +13334,13 @@ fi echo $ac_n "checking for key_t in sys/types.h""... $ac_c" 1>&6 -echo "configure:13205: checking for key_t in sys/types.h" >&5 +echo "configure:13338: 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 13211 "configure" +#line 13344 "configure" #include "confdefs.h" #include <sys/types.h> @@ -13218,7 +13351,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:13222: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:13355: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_type_key_t=yes @@ -13253,13 +13386,13 @@ EOF echo $ac_n "checking for ssize_t in sys/types.h""... $ac_c" 1>&6 -echo "configure:13257: checking for ssize_t in sys/types.h" >&5 +echo "configure:13390: 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 13263 "configure" +#line 13396 "configure" #include "confdefs.h" #include <sys/types.h> @@ -13270,7 +13403,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:13274: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:13407: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_type_ssize_t=yes @@ -13304,13 +13437,13 @@ EOF echo $ac_n "checking for u_longlong_t in sys/types.h""... $ac_c" 1>&6 -echo "configure:13308: checking for u_longlong_t in sys/types.h" >&5 +echo "configure:13441: 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 13314 "configure" +#line 13447 "configure" #include "confdefs.h" #include <sys/types.h> @@ -13321,7 +13454,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:13325: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:13458: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_type_u_longlong_t=yes @@ -13356,13 +13489,13 @@ EOF echo $ac_n "checking for pri_t in sys/types.h""... $ac_c" 1>&6 -echo "configure:13360: checking for pri_t in sys/types.h" >&5 +echo "configure:13493: 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 13366 "configure" +#line 13499 "configure" #include "confdefs.h" #include <sys/types.h> @@ -13373,7 +13506,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:13377: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:13510: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_type_pri_t=yes @@ -13408,13 +13541,13 @@ EOF echo $ac_n "checking for socklen_t in sys/socket.h""... $ac_c" 1>&6 -echo "configure:13412: checking for socklen_t in sys/socket.h" >&5 +echo "configure:13545: 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 13418 "configure" +#line 13551 "configure" #include "confdefs.h" #include <sys/socket.h> @@ -13425,7 +13558,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:13429: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:13562: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_type_socklen_t=yes @@ -13459,13 +13592,13 @@ EOF echo $ac_n "checking for ucontext_t in ucontext.h""... $ac_c" 1>&6 -echo "configure:13463: checking for ucontext_t in ucontext.h" >&5 +echo "configure:13596: 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 13469 "configure" +#line 13602 "configure" #include "confdefs.h" #include <ucontext.h> @@ -13476,7 +13609,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:13480: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:13613: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_type_ucontext_t=yes @@ -13510,13 +13643,13 @@ EOF echo $ac_n "checking for wchar_t in wchar.h""... $ac_c" 1>&6 -echo "configure:13514: checking for wchar_t in wchar.h" >&5 +echo "configure:13647: 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 13520 "configure" +#line 13653 "configure" #include "confdefs.h" #include <wchar.h> @@ -13527,7 +13660,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:13531: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:13664: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_type_wchar_t=yes @@ -13558,13 +13691,13 @@ EOF echo $ac_n "checking for wchar_t in sys/types.h""... $ac_c" 1>&6 -echo "configure:13562: checking for wchar_t in sys/types.h" >&5 +echo "configure:13695: 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 13568 "configure" +#line 13701 "configure" #include "confdefs.h" #include <sys/types.h> @@ -13575,7 +13708,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:13712: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_type_wchar_t=yes @@ -13614,13 +13747,13 @@ EOF echo $ac_n "checking for sig_atomic_t""... $ac_c" 1>&6 -echo "configure:13618: checking for sig_atomic_t" >&5 +echo "configure:13751: 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 13624 "configure" +#line 13757 "configure" #include "confdefs.h" #ifndef ACE_LACKS_SYS_TYPES_H @@ -13634,7 +13767,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:13638: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:13771: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_posix_defines_sig_atomic_t=yes @@ -13671,7 +13804,7 @@ EOF echo $ac_n "checking for struct flock in fcntl.h""... $ac_c" 1>&6 -echo "configure:13675: checking for struct flock in fcntl.h" >&5 +echo "configure:13808: 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 @@ -13679,7 +13812,7 @@ else cat > conftest.$ac_ext <<EOF -#line 13683 "configure" +#line 13816 "configure" #include "confdefs.h" #include <fcntl.h> @@ -13690,7 +13823,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:13694: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:13827: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* @@ -13703,7 +13836,7 @@ else rm -rf conftest* cat > conftest.$ac_ext <<EOF -#line 13707 "configure" +#line 13840 "configure" #include "confdefs.h" #include <fcntl.h> @@ -13714,7 +13847,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:13718: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:13851: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* @@ -13758,7 +13891,7 @@ EOF echo $ac_n "checking for struct rwlock_t in synch.h""... $ac_c" 1>&6 -echo "configure:13762: checking for struct rwlock_t in synch.h" >&5 +echo "configure:13895: 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 @@ -13766,7 +13899,7 @@ else cat > conftest.$ac_ext <<EOF -#line 13770 "configure" +#line 13903 "configure" #include "confdefs.h" #include <synch.h> @@ -13777,7 +13910,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:13781: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:13914: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* @@ -13790,7 +13923,7 @@ else rm -rf conftest* cat > conftest.$ac_ext <<EOF -#line 13794 "configure" +#line 13927 "configure" #include "confdefs.h" #include <synch.h> @@ -13801,7 +13934,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:13805: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:13938: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* @@ -13845,7 +13978,7 @@ EOF echo $ac_n "checking for struct strbuf in stropts.h""... $ac_c" 1>&6 -echo "configure:13849: checking for struct strbuf in stropts.h" >&5 +echo "configure:13982: 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 @@ -13853,7 +13986,7 @@ else cat > conftest.$ac_ext <<EOF -#line 13857 "configure" +#line 13990 "configure" #include "confdefs.h" #include <stropts.h> @@ -13864,7 +13997,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:13868: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:14001: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* @@ -13877,7 +14010,7 @@ else rm -rf conftest* cat > conftest.$ac_ext <<EOF -#line 13881 "configure" +#line 14014 "configure" #include "confdefs.h" #include <stropts.h> @@ -13888,7 +14021,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:13892: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:14025: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* @@ -13931,7 +14064,7 @@ EOF echo $ac_n "checking for struct msgbuf in sys/msg.h""... $ac_c" 1>&6 -echo "configure:13935: checking for struct msgbuf in sys/msg.h" >&5 +echo "configure:14068: 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 @@ -13939,7 +14072,7 @@ else cat > conftest.$ac_ext <<EOF -#line 13943 "configure" +#line 14076 "configure" #include "confdefs.h" #include <sys/msg.h> @@ -13950,7 +14083,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:13954: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:14087: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* @@ -13963,7 +14096,7 @@ else rm -rf conftest* cat > conftest.$ac_ext <<EOF -#line 13967 "configure" +#line 14100 "configure" #include "confdefs.h" #include <sys/msg.h> @@ -13974,7 +14107,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:13978: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:14111: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* @@ -14022,7 +14155,7 @@ case "$target" in echo $ac_n "checking for struct prusage_t in sys/procfs.h""... $ac_c" 1>&6 -echo "configure:14026: checking for struct prusage_t in sys/procfs.h" >&5 +echo "configure:14159: 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 @@ -14030,7 +14163,7 @@ else cat > conftest.$ac_ext <<EOF -#line 14034 "configure" +#line 14167 "configure" #include "confdefs.h" #include <sys/procfs.h> @@ -14041,7 +14174,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:14045: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:14178: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* @@ -14054,7 +14187,7 @@ else rm -rf conftest* cat > conftest.$ac_ext <<EOF -#line 14058 "configure" +#line 14191 "configure" #include "confdefs.h" #include <sys/procfs.h> @@ -14065,7 +14198,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:14069: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:14202: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* @@ -14110,7 +14243,7 @@ esac echo $ac_n "checking for struct strrecvfd in stropts.h""... $ac_c" 1>&6 -echo "configure:14114: checking for struct strrecvfd in stropts.h" >&5 +echo "configure:14247: 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 @@ -14118,7 +14251,7 @@ else cat > conftest.$ac_ext <<EOF -#line 14122 "configure" +#line 14255 "configure" #include "confdefs.h" #include <stropts.h> @@ -14129,7 +14262,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:14133: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:14266: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* @@ -14142,7 +14275,7 @@ else rm -rf conftest* cat > conftest.$ac_ext <<EOF -#line 14146 "configure" +#line 14279 "configure" #include "confdefs.h" #include <stropts.h> @@ -14153,7 +14286,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:14157: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:14290: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* @@ -14197,7 +14330,7 @@ EOF echo $ac_n "checking for struct sembuf in sys/sem.h""... $ac_c" 1>&6 -echo "configure:14201: checking for struct sembuf in sys/sem.h" >&5 +echo "configure:14334: 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 @@ -14205,7 +14338,7 @@ else cat > conftest.$ac_ext <<EOF -#line 14209 "configure" +#line 14342 "configure" #include "confdefs.h" #include <sys/sem.h> @@ -14216,7 +14349,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:14220: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:14353: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* @@ -14229,7 +14362,7 @@ else rm -rf conftest* cat > conftest.$ac_ext <<EOF -#line 14233 "configure" +#line 14366 "configure" #include "confdefs.h" #include <sys/sem.h> @@ -14240,7 +14373,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:14244: \"$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* @@ -14284,7 +14417,7 @@ EOF echo $ac_n "checking for struct sigaction in signal.h""... $ac_c" 1>&6 -echo "configure:14288: checking for struct sigaction in signal.h" >&5 +echo "configure:14421: 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 @@ -14292,7 +14425,7 @@ else cat > conftest.$ac_ext <<EOF -#line 14296 "configure" +#line 14429 "configure" #include "confdefs.h" #include <signal.h> @@ -14303,7 +14436,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:14307: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:14440: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* @@ -14316,7 +14449,7 @@ else rm -rf conftest* cat > conftest.$ac_ext <<EOF -#line 14320 "configure" +#line 14453 "configure" #include "confdefs.h" #include <signal.h> @@ -14327,7 +14460,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:14331: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:14464: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* @@ -14371,7 +14504,7 @@ EOF echo $ac_n "checking for struct sigset_t in signal.h""... $ac_c" 1>&6 -echo "configure:14375: checking for struct sigset_t in signal.h" >&5 +echo "configure:14508: 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 @@ -14379,7 +14512,7 @@ else cat > conftest.$ac_ext <<EOF -#line 14383 "configure" +#line 14516 "configure" #include "confdefs.h" #include <signal.h> @@ -14390,7 +14523,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:14394: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:14527: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* @@ -14403,7 +14536,7 @@ else rm -rf conftest* cat > conftest.$ac_ext <<EOF -#line 14407 "configure" +#line 14540 "configure" #include "confdefs.h" #include <signal.h> @@ -14414,7 +14547,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:14418: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:14551: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* @@ -14458,7 +14591,7 @@ EOF echo $ac_n "checking for struct utsname in sys/utsname.h""... $ac_c" 1>&6 -echo "configure:14462: checking for struct utsname in sys/utsname.h" >&5 +echo "configure:14595: 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 @@ -14466,7 +14599,7 @@ else cat > conftest.$ac_ext <<EOF -#line 14470 "configure" +#line 14603 "configure" #include "confdefs.h" #include <sys/utsname.h> @@ -14477,7 +14610,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:14481: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:14614: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* @@ -14490,7 +14623,7 @@ else rm -rf conftest* cat > conftest.$ac_ext <<EOF -#line 14494 "configure" +#line 14627 "configure" #include "confdefs.h" #include <sys/utsname.h> @@ -14501,7 +14634,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:14505: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:14638: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* @@ -14543,7 +14676,7 @@ EOF echo $ac_n "checking for struct siginfo_t""... $ac_c" 1>&6 -echo "configure:14547: checking for struct siginfo_t" >&5 +echo "configure:14680: 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 @@ -14551,7 +14684,7 @@ else cat > conftest.$ac_ext <<EOF -#line 14555 "configure" +#line 14688 "configure" #include "confdefs.h" #include <siginfo.h> @@ -14562,7 +14695,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:14566: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:14699: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* @@ -14575,7 +14708,7 @@ else rm -rf conftest* cat > conftest.$ac_ext <<EOF -#line 14579 "configure" +#line 14712 "configure" #include "confdefs.h" #include <siginfo.h> @@ -14586,7 +14719,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:14590: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:14723: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* @@ -14602,7 +14735,7 @@ else cat > conftest.$ac_ext <<EOF -#line 14606 "configure" +#line 14739 "configure" #include "confdefs.h" #include <signal.h> @@ -14613,7 +14746,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:14617: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:14750: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* @@ -14626,7 +14759,7 @@ else rm -rf conftest* cat > conftest.$ac_ext <<EOF -#line 14630 "configure" +#line 14763 "configure" #include "confdefs.h" #include <signal.h> @@ -14637,7 +14770,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:14641: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:14774: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* @@ -14687,13 +14820,13 @@ EOF echo $ac_n "checking for struct msghdr""... $ac_c" 1>&6 -echo "configure:14691: checking for struct msghdr" >&5 +echo "configure:14824: 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 14697 "configure" +#line 14830 "configure" #include "confdefs.h" #ifndef ACE_LACKS_SYS_TYPES_H @@ -14707,7 +14840,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:14711: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:14844: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_struct_msghdr=yes @@ -14739,13 +14872,13 @@ EOF echo $ac_n "checking for condition variable support""... $ac_c" 1>&6 -echo "configure:14743: checking for condition variable support" >&5 +echo "configure:14876: 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 14749 "configure" +#line 14882 "configure" #include "confdefs.h" #include <pthread.h> @@ -14756,7 +14889,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:14760: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:14893: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_struct_cond_t=yes @@ -14767,7 +14900,7 @@ else rm -rf conftest* cat > conftest.$ac_ext <<EOF -#line 14771 "configure" +#line 14904 "configure" #include "confdefs.h" #include <synch.h> @@ -14778,7 +14911,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:14782: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:14915: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_struct_cond_t=yes @@ -14814,13 +14947,13 @@ EOF echo $ac_n "checking for POSIX timer structure""... $ac_c" 1>&6 -echo "configure:14818: checking for POSIX timer structure" >&5 +echo "configure:14951: 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 14824 "configure" +#line 14957 "configure" #include "confdefs.h" #include <time.h> @@ -14835,7 +14968,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:14839: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:14972: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_posix_timer_struct=yes @@ -14846,7 +14979,7 @@ else rm -rf conftest* cat > conftest.$ac_ext <<EOF -#line 14850 "configure" +#line 14983 "configure" #include "confdefs.h" #include <time.h> @@ -14861,19 +14994,19 @@ int main() { ; return 0; } EOF -if { (eval echo configure:14865: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:14998: \"$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:14871: checking for struct timespec in sys/timers.h" >&5 +echo "configure:15004: 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 14877 "configure" +#line 15010 "configure" #include "confdefs.h" #include <sys/timers.h> @@ -14884,7 +15017,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:14888: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:15021: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_posix_struct_timespec_broken=yes @@ -14949,13 +15082,13 @@ EOF echo $ac_n "checking for struct timespec in sys/timers.h""... $ac_c" 1>&6 -echo "configure:14953: checking for struct timespec in sys/timers.h" >&5 +echo "configure:15086: 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 14959 "configure" +#line 15092 "configure" #include "confdefs.h" #include <sys/timers.h> @@ -14966,7 +15099,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:14970: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:15103: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_posix_struct_timespec_broken=yes @@ -15002,13 +15135,13 @@ EOF echo $ac_n "checking for timespec_t""... $ac_c" 1>&6 -echo "configure:15006: checking for timespec_t" >&5 +echo "configure:15139: 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 15012 "configure" +#line 15145 "configure" #include "confdefs.h" #include <time.h> @@ -15023,7 +15156,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:15027: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:15160: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_posix_timespec_t=yes @@ -15056,13 +15189,13 @@ EOF echo $ac_n "checking for union semun""... $ac_c" 1>&6 -echo "configure:15060: checking for union semun" >&5 +echo "configure:15193: 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 15066 "configure" +#line 15199 "configure" #include "confdefs.h" #ifndef ACE_LACKS_SYS_TYPES_H @@ -15079,7 +15212,7 @@ semun us; ; return 0; } EOF -if { (eval echo configure:15083: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:15216: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_posix_defines_union_semun=yes @@ -15113,13 +15246,13 @@ EOF echo $ac_n "checking for broken struct timespec members""... $ac_c" 1>&6 -echo "configure:15117: checking for broken struct timespec members" >&5 +echo "configure:15250: 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 15123 "configure" +#line 15256 "configure" #include "confdefs.h" #include <time.h> @@ -15136,7 +15269,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:15140: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:15273: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_broken_timespec=yes @@ -15168,13 +15301,13 @@ EOF echo $ac_n "checking for limited struct rusage""... $ac_c" 1>&6 -echo "configure:15172: checking for limited struct rusage" >&5 +echo "configure:15305: 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 15178 "configure" +#line 15311 "configure" #include "confdefs.h" #include <sys/resource.h> @@ -15193,7 +15326,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:15197: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:15330: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_limited_rusage=no @@ -15226,13 +15359,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:15230: checking for si_addr member in struct siginfo_t" >&5 +echo "configure:15363: 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 15236 "configure" +#line 15369 "configure" #include "confdefs.h" #ifndef ACE_LACKS_SIGINFO_H @@ -15247,7 +15380,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:15251: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:15384: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_posix_si_addr=yes @@ -15280,13 +15413,13 @@ EOF fi echo $ac_n "checking for sin_len member in struct sockaddr_in""... $ac_c" 1>&6 -echo "configure:15284: checking for sin_len member in struct sockaddr_in" >&5 +echo "configure:15417: 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 15290 "configure" +#line 15423 "configure" #include "confdefs.h" #ifndef ACE_LACKS_SYS_TYPES_H @@ -15301,7 +15434,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:15305: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:15438: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_has_sin_len=yes @@ -15333,13 +15466,13 @@ EOF echo $ac_n "checking for sys_siglist""... $ac_c" 1>&6 -echo "configure:15337: checking for sys_siglist" >&5 +echo "configure:15470: 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 15343 "configure" +#line 15476 "configure" #include "confdefs.h" #ifndef ACE_LACKS_UNISTD_H @@ -15356,7 +15489,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:15360: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:15493: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_posix_sys_siglist=yes @@ -15388,13 +15521,13 @@ EOF echo $ac_n "checking for sys_errlist""... $ac_c" 1>&6 -echo "configure:15392: checking for sys_errlist" >&5 +echo "configure:15525: 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 15398 "configure" +#line 15531 "configure" #include "confdefs.h" #include <stdio.h> @@ -15409,7 +15542,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:15413: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:15546: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_posix_sys_errlist=yes @@ -15441,13 +15574,13 @@ EOF echo $ac_n "checking for sys_nerr in headers""... $ac_c" 1>&6 -echo "configure:15445: checking for sys_nerr in headers" >&5 +echo "configure:15578: 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 15451 "configure" +#line 15584 "configure" #include "confdefs.h" #include <stdio.h> @@ -15462,7 +15595,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:15466: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:15599: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_posix_sys_nerr=yes @@ -15488,12 +15621,12 @@ fi ace_just_a_place_holder=fixme echo $ac_n "checking for sys_nerr""... $ac_c" 1>&6 -echo "configure:15492: checking for sys_nerr" >&5 +echo "configure:15625: 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 15497 "configure" +#line 15630 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char sys_nerr(); below. */ @@ -15519,7 +15652,7 @@ sys_nerr(); ; return 0; } EOF -if { (eval echo configure:15523: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:15656: \"$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 @@ -15604,13 +15737,13 @@ rm -f confcache echo $ac_n "checking if compiler accepts \"pragma once\" directive""... $ac_c" 1>&6 -echo "configure:15608: checking if compiler accepts \"pragma once\" directive" >&5 +echo "configure:15741: 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 15614 "configure" +#line 15747 "configure" #include "confdefs.h" #pragma once @@ -15621,7 +15754,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:15625: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:15758: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_has_pragma_once=yes @@ -15662,20 +15795,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:15666: checking if \"-pipe\" compiler flag is supported" >&5 +echo "configure:15799: 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 15672 "configure" +#line 15805 "configure" #include "confdefs.h" int main() { int a = 0; ; return 0; } EOF -if { (eval echo configure:15679: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:15812: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_feature_gxx_has_pipe=yes @@ -15718,14 +15851,14 @@ fi if test "$cross_compiling" != yes; then echo $ac_n "checking whether byte ordering is bigendian""... $ac_c" 1>&6 -echo "configure:15722: checking whether byte ordering is bigendian" >&5 +echo "configure:15855: 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 15729 "configure" +#line 15862 "configure" #include "confdefs.h" #include <sys/types.h> #include <sys/param.h> @@ -15736,11 +15869,11 @@ int main() { #endif ; return 0; } EOF -if { (eval echo configure:15740: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:15873: \"$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 15744 "configure" +#line 15877 "configure" #include "confdefs.h" #include <sys/types.h> #include <sys/param.h> @@ -15751,7 +15884,7 @@ int main() { #endif ; return 0; } EOF -if { (eval echo configure:15755: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:15888: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ac_cv_c_bigendian=yes else @@ -15771,7 +15904,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 15775 "configure" +#line 15908 "configure" #include "confdefs.h" #ifdef __cplusplus extern "C" void exit(int); @@ -15787,7 +15920,7 @@ main () { exit (u.c[sizeof (long) - 1] == 1); } EOF -if { (eval echo configure:15791: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:15924: \"$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 @@ -15815,7 +15948,7 @@ fi if test "$cross_compiling" != yes; then echo $ac_n "checking size of short""... $ac_c" 1>&6 -echo "configure:15819: checking size of short" >&5 +echo "configure:15952: 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 @@ -15823,7 +15956,7 @@ else ac_cv_sizeof_short=2 else cat > conftest.$ac_ext <<EOF -#line 15827 "configure" +#line 15960 "configure" #include "confdefs.h" #ifdef __cplusplus extern "C" void exit(int); @@ -15837,7 +15970,7 @@ main() exit(0); } EOF -if { (eval echo configure:15841: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:15974: \"$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 @@ -15863,7 +15996,7 @@ EOF fi echo $ac_n "checking size of int""... $ac_c" 1>&6 -echo "configure:15867: checking size of int" >&5 +echo "configure:16000: 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 @@ -15871,7 +16004,7 @@ else ac_cv_sizeof_int=4 else cat > conftest.$ac_ext <<EOF -#line 15875 "configure" +#line 16008 "configure" #include "confdefs.h" #ifdef __cplusplus extern "C" void exit(int); @@ -15885,7 +16018,7 @@ main() exit(0); } EOF -if { (eval echo configure:15889: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:16022: \"$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 @@ -15911,7 +16044,7 @@ EOF fi echo $ac_n "checking size of long""... $ac_c" 1>&6 -echo "configure:15915: checking size of long" >&5 +echo "configure:16048: 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 @@ -15919,7 +16052,7 @@ else ac_cv_sizeof_long=4 else cat > conftest.$ac_ext <<EOF -#line 15923 "configure" +#line 16056 "configure" #include "confdefs.h" #ifdef __cplusplus extern "C" void exit(int); @@ -15933,7 +16066,7 @@ main() exit(0); } EOF -if { (eval echo configure:15937: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:16070: \"$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 @@ -15959,7 +16092,7 @@ EOF fi echo $ac_n "checking size of long long""... $ac_c" 1>&6 -echo "configure:15963: checking size of long long" >&5 +echo "configure:16096: 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 @@ -15967,7 +16100,7 @@ else ac_cv_sizeof_long_long=8 else cat > conftest.$ac_ext <<EOF -#line 15971 "configure" +#line 16104 "configure" #include "confdefs.h" #ifdef __cplusplus extern "C" void exit(int); @@ -15981,7 +16114,7 @@ main() exit(0); } EOF -if { (eval echo configure:15985: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:16118: \"$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 @@ -16012,7 +16145,7 @@ EOF fi echo $ac_n "checking size of void *""... $ac_c" 1>&6 -echo "configure:16016: checking size of void *" >&5 +echo "configure:16149: 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 @@ -16020,7 +16153,7 @@ else ac_cv_sizeof_void_p=4 else cat > conftest.$ac_ext <<EOF -#line 16024 "configure" +#line 16157 "configure" #include "confdefs.h" #ifdef __cplusplus extern "C" void exit(int); @@ -16034,7 +16167,7 @@ main() exit(0); } EOF -if { (eval echo configure:16038: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:16171: \"$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 @@ -16060,7 +16193,7 @@ EOF fi echo $ac_n "checking size of float""... $ac_c" 1>&6 -echo "configure:16064: checking size of float" >&5 +echo "configure:16197: 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 @@ -16068,7 +16201,7 @@ else ac_cv_sizeof_float=4 else cat > conftest.$ac_ext <<EOF -#line 16072 "configure" +#line 16205 "configure" #include "confdefs.h" #ifdef __cplusplus extern "C" void exit(int); @@ -16082,7 +16215,7 @@ main() exit(0); } EOF -if { (eval echo configure:16086: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:16219: \"$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 @@ -16113,7 +16246,7 @@ EOF fi echo $ac_n "checking size of double""... $ac_c" 1>&6 -echo "configure:16117: checking size of double" >&5 +echo "configure:16250: 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 @@ -16121,7 +16254,7 @@ else ac_cv_sizeof_double=8 else cat > conftest.$ac_ext <<EOF -#line 16125 "configure" +#line 16258 "configure" #include "confdefs.h" #ifdef __cplusplus extern "C" void exit(int); @@ -16135,7 +16268,7 @@ main() exit(0); } EOF -if { (eval echo configure:16139: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:16272: \"$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 @@ -16166,7 +16299,7 @@ EOF fi echo $ac_n "checking size of long double""... $ac_c" 1>&6 -echo "configure:16170: checking size of long double" >&5 +echo "configure:16303: 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 @@ -16174,7 +16307,7 @@ else ac_cv_sizeof_long_double=16 else cat > conftest.$ac_ext <<EOF -#line 16178 "configure" +#line 16311 "configure" #include "confdefs.h" #ifdef __cplusplus extern "C" void exit(int); @@ -16188,7 +16321,7 @@ main() exit(0); } EOF -if { (eval echo configure:16192: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:16325: \"$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 @@ -16226,7 +16359,7 @@ EOF fi echo $ac_n "checking size of signed char""... $ac_c" 1>&6 -echo "configure:16230: checking size of signed char" >&5 +echo "configure:16363: 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 @@ -16234,7 +16367,7 @@ else ac_cv_sizeof_signed_char=1 else cat > conftest.$ac_ext <<EOF -#line 16238 "configure" +#line 16371 "configure" #include "confdefs.h" #ifdef __cplusplus extern "C" void exit(int); @@ -16248,7 +16381,7 @@ main() exit(0); } EOF -if { (eval echo configure:16252: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:16385: \"$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 @@ -16278,13 +16411,13 @@ fi echo $ac_n "checking for istream operator>> for char types""... $ac_c" 1>&6 -echo "configure:16282: checking for istream operator>> for char types" >&5 +echo "configure:16415: 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 16288 "configure" +#line 16421 "configure" #include "confdefs.h" #include <iostream.h> @@ -16301,7 +16434,7 @@ cin >> b; ; return 0; } EOF -if { (eval echo configure:16305: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:16438: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_feature_char_right_shifts=yes @@ -16335,13 +16468,13 @@ EOF echo $ac_n "checking for istream operator>> for char * types""... $ac_c" 1>&6 -echo "configure:16339: checking for istream operator>> for char * types" >&5 +echo "configure:16472: 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 16345 "configure" +#line 16478 "configure" #include "confdefs.h" #include <iostream.h> @@ -16358,7 +16491,7 @@ cin >> b; ; return 0; } EOF -if { (eval echo configure:16362: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:16495: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_feature_char_ptr_right_shifts=yes @@ -16391,13 +16524,13 @@ EOF echo $ac_n "checking for working C++ explicit template destructors""... $ac_c" 1>&6 -echo "configure:16395: checking for working C++ explicit template destructors" >&5 +echo "configure:16528: 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 16401 "configure" +#line 16534 "configure" #include "confdefs.h" #include <iostream.h> @@ -16444,7 +16577,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:16448: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:16581: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_feature_working_explicit_des=yes @@ -16476,13 +16609,13 @@ EOF echo $ac_n "checking for working C++ conversions""... $ac_c" 1>&6 -echo "configure:16480: checking for working C++ conversions" >&5 +echo "configure:16613: 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 16486 "configure" +#line 16619 "configure" #include "confdefs.h" template <class T> @@ -16506,7 +16639,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:16510: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:16643: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_feature_cxx_working_conversions=yes @@ -16539,13 +16672,13 @@ EOF echo $ac_n "checking for C++ namespace support""... $ac_c" 1>&6 -echo "configure:16543: checking for C++ namespace support" >&5 +echo "configure:16676: 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 16549 "configure" +#line 16682 "configure" #include "confdefs.h" namespace ACE @@ -16559,7 +16692,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:16563: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:16696: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_feature_cxx_namespaces=yes @@ -16592,13 +16725,13 @@ EOF echo $ac_n "checking for C++ standard namespace""... $ac_c" 1>&6 -echo "configure:16596: checking for C++ standard namespace" >&5 +echo "configure:16729: 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 16602 "configure" +#line 16735 "configure" #include "confdefs.h" #include <iostream.h> @@ -16609,7 +16742,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:16613: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:16746: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_feature_posix_uses_std_namespace=yes @@ -16641,13 +16774,13 @@ EOF echo $ac_n "checking for C++ \"using\" keyword support""... $ac_c" 1>&6 -echo "configure:16645: checking for C++ \"using\" keyword support" >&5 +echo "configure:16778: 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 16651 "configure" +#line 16784 "configure" #include "confdefs.h" #if defined (ACE_USES_STD_NAMESPACE_FOR_STDCPP_LIB) @@ -16678,7 +16811,7 @@ This extraneous text should force an error. ; return 0; } EOF -if { (eval echo configure:16682: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:16815: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_feature_cxx_using_keyword=yes @@ -16710,7 +16843,7 @@ EOF echo $ac_n "checking for new style C++ include file support""... $ac_c" 1>&6 -echo "configure:16714: checking for new style C++ include file support" >&5 +echo "configure:16847: 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 @@ -16718,7 +16851,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 16722 "configure" +#line 16855 "configure" #include "confdefs.h" #include <string> @@ -16729,7 +16862,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:16733: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:16866: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_posix_standard_includes=yes else @@ -16739,7 +16872,7 @@ fi rm -f conftest* else cat > conftest.$ac_ext <<EOF -#line 16743 "configure" +#line 16876 "configure" #include "confdefs.h" #include <string> @@ -16750,7 +16883,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:16754: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:16887: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_posix_standard_includes=yes else @@ -16787,13 +16920,13 @@ if test "$ac_cv_header_new" = yes && echo $ac_n "checking for C++ auto_ptr class""... $ac_c" 1>&6 -echo "configure:16791: checking for C++ auto_ptr class" >&5 +echo "configure:16924: 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 16797 "configure" +#line 16930 "configure" #include "confdefs.h" #include <memory> @@ -16813,7 +16946,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:16817: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:16950: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_auto_ptr_class=yes @@ -16855,13 +16988,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:16859: checking for C++ auto_ptr reset method" >&5 +echo "configure:16992: 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 16865 "configure" +#line 16998 "configure" #include "confdefs.h" #include <memory> @@ -16883,7 +17016,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:16887: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:17020: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_auto_ptr_reset=yes @@ -16916,7 +17049,7 @@ EOF fi echo $ac_n "checking for ANSI C++ cast support""... $ac_c" 1>&6 -echo "configure:16920: checking for ANSI C++ cast support" >&5 +echo "configure:17053: 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 @@ -16928,7 +17061,7 @@ else cat > conftest.$ac_ext <<EOF -#line 16932 "configure" +#line 17065 "configure" #include "confdefs.h" /* No headers */ int main() { @@ -16953,7 +17086,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:16957: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:17090: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_posix_standard_casts=yes @@ -16970,7 +17103,7 @@ else rm -rf conftest* cat > conftest.$ac_ext <<EOF -#line 16974 "configure" +#line 17107 "configure" #include "confdefs.h" /* No headers */ int main() { @@ -16991,7 +17124,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:16995: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:17128: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_posix_standard_casts=yes @@ -17044,13 +17177,13 @@ EOF echo $ac_n "checking for explicit C++ constructor support""... $ac_c" 1>&6 -echo "configure:17048: checking for explicit C++ constructor support" >&5 +echo "configure:17181: 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 17054 "configure" +#line 17187 "configure" #include "confdefs.h" class Foo @@ -17067,7 +17200,7 @@ Foo bar = 'a'; // error: no implicit char->Foo conversion ; return 0; } EOF -if { (eval echo configure:17071: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:17204: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_feature_explicit_constructor=no @@ -17078,7 +17211,7 @@ else rm -rf conftest* cat > conftest.$ac_ext <<EOF -#line 17082 "configure" +#line 17215 "configure" #include "confdefs.h" class Foo @@ -17095,7 +17228,7 @@ Foo bar (5); ; return 0; } EOF -if { (eval echo configure:17099: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:17232: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_feature_explicit_constructor=yes @@ -17130,13 +17263,13 @@ EOF echo $ac_n "checking for C++ mutable keyword""... $ac_c" 1>&6 -echo "configure:17134: checking for C++ mutable keyword" >&5 +echo "configure:17267: 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 17140 "configure" +#line 17273 "configure" #include "confdefs.h" class Foo @@ -17155,7 +17288,7 @@ bar.val_ = 3; // mutable declaration should allow this to be modified ; return 0; } EOF -if { (eval echo configure:17159: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:17292: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_feature_cxx_mutable_keyword=yes @@ -17187,13 +17320,13 @@ EOF echo $ac_n "checking for C++ typename keyword""... $ac_c" 1>&6 -echo "configure:17191: checking for C++ typename keyword" >&5 +echo "configure:17324: 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 17197 "configure" +#line 17330 "configure" #include "confdefs.h" class Bar @@ -17229,7 +17362,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:17233: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:17366: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_feature_posix_typename_keyword=yes @@ -17261,13 +17394,13 @@ EOF echo $ac_n "checking for C++ placement new operator""... $ac_c" 1>&6 -echo "configure:17265: checking for C++ placement new operator" >&5 +echo "configure:17398: checking for C++ placement new operator" >&5 if eval "test \"`echo '$''{'ace_cv_feature_placement_new'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 17271 "configure" +#line 17404 "configure" #include "confdefs.h" #if defined (ACE_HAS_NEW_NO_H) @@ -17289,7 +17422,7 @@ foo *f = new (x) foo; ; return 0; } EOF -if { (eval echo configure:17293: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:17426: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_feature_placement_new=yes @@ -17322,13 +17455,13 @@ EOF echo $ac_n "checking for C++ placement delete operator""... $ac_c" 1>&6 -echo "configure:17326: checking for C++ placement delete operator" >&5 +echo "configure:17459: checking for C++ placement delete operator" >&5 if eval "test \"`echo '$''{'ace_cv_feature_placement_delete'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 17332 "configure" +#line 17465 "configure" #include "confdefs.h" #if defined (ACE_HAS_NEW_NO_H) @@ -17353,7 +17486,7 @@ foo *f = new (x) foo; ; return 0; } EOF -if { (eval echo configure:17357: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:17490: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_feature_placement_delete=yes @@ -17387,13 +17520,13 @@ EOF echo $ac_n "checking if const char * can be rvalue in conditional operator""... $ac_c" 1>&6 -echo "configure:17391: checking if const char * can be rvalue in conditional operator" >&5 +echo "configure:17524: 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 17397 "configure" +#line 17530 "configure" #include "confdefs.h" int main() { @@ -17405,7 +17538,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:17409: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:17542: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_feature_conditional_str_cast=yes @@ -17438,13 +17571,13 @@ EOF echo $ac_n "checking for explicit template instantiation""... $ac_c" 1>&6 -echo "configure:17442: checking for explicit template instantiation" >&5 +echo "configure:17575: 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 17448 "configure" +#line 17581 "configure" #include "confdefs.h" template <class T> @@ -17464,7 +17597,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:17468: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:17601: \"$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 @@ -17495,13 +17628,13 @@ EOF echo $ac_n "checking for pragma template instantiation""... $ac_c" 1>&6 -echo "configure:17499: checking for pragma template instantiation" >&5 +echo "configure:17632: 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 17505 "configure" +#line 17638 "configure" #include "confdefs.h" template <class T> @@ -17520,7 +17653,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:17524: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:17657: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_feature_pragma_template_instantiation=yes @@ -17556,7 +17689,7 @@ EOF echo $ac_n "checking if templates require source""... $ac_c" 1>&6 -echo "configure:17560: checking if templates require source" >&5 +echo "configure:17693: 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 @@ -17601,7 +17734,7 @@ EOF ac_link='${CXX-g++} -o conftest${ac_exeext} conftestMain.$ac_ext 1>&5' - if { (eval echo configure:17605: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then + if { (eval echo configure:17738: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* ac_link="$ace_save_ac_link" @@ -17612,7 +17745,7 @@ EOF #include "conftest.$ac_ext" EOF - if { (eval echo configure:17616: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then + if { (eval echo configure:17749: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* ac_link="$ace_save_ac_link" @@ -17652,13 +17785,13 @@ EOF echo $ac_n "checking for template specialization""... $ac_c" 1>&6 -echo "configure:17656: checking for template specialization" >&5 +echo "configure:17789: 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 17662 "configure" +#line 17795 "configure" #include "confdefs.h" template <class T> @@ -17684,7 +17817,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:17688: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:17821: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_feature_cxx_template_specialization=yes @@ -17716,13 +17849,13 @@ EOF echo $ac_n "checking for standard template specialization""... $ac_c" 1>&6 -echo "configure:17720: checking for standard template specialization" >&5 +echo "configure:17853: 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 17726 "configure" +#line 17859 "configure" #include "confdefs.h" // Some compilers have a hard time with this test since the syntax is @@ -17765,7 +17898,7 @@ Vector<void *> vpv; ; return 0; } EOF -if { (eval echo configure:17769: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:17902: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_feature_cxx_std_template_specialization=yes @@ -17799,13 +17932,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:17803: checking if platform needs standard template method specialization" >&5 +echo "configure:17936: 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 17809 "configure" +#line 17942 "configure" #include "confdefs.h" // Some compilers have a hard time with this test since the syntax is @@ -17853,7 +17986,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:17857: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:17990: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_feature_cxx_std_template_method_specialization=no @@ -17864,7 +17997,7 @@ else rm -rf conftest* cat > conftest.$ac_ext <<EOF -#line 17868 "configure" +#line 18001 "configure" #include "confdefs.h" // Some compilers have a hard time with this test since the syntax is @@ -17913,7 +18046,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:17917: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:18050: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_feature_cxx_std_template_method_specialization=yes @@ -17948,13 +18081,13 @@ EOF fi echo $ac_n "checking for template typedefs""... $ac_c" 1>&6 -echo "configure:17952: checking for template typedefs" >&5 +echo "configure:18085: 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 17958 "configure" +#line 18091 "configure" #include "confdefs.h" #if defined (ACE_HAS_TYPENAME_KEYWORD) @@ -17997,7 +18130,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:18001: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:18134: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_feature_posix_template_typedefs=yes @@ -18029,13 +18162,13 @@ EOF echo $ac_n "checking for static data member templates""... $ac_c" 1>&6 -echo "configure:18033: checking for static data member templates" >&5 +echo "configure:18166: 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 18039 "configure" +#line 18172 "configure" #include "confdefs.h" template <class T> @@ -18053,7 +18186,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:18057: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:18190: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_feature_posix_static_data_member_templates=yes @@ -18086,13 +18219,13 @@ EOF echo $ac_n "checking if definition is needed for hidden functions""... $ac_c" 1>&6 -echo "configure:18090: checking if definition is needed for hidden functions" >&5 +echo "configure:18223: 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 18096 "configure" +#line 18229 "configure" #include "confdefs.h" class Foo @@ -18112,7 +18245,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:18116: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:18249: \"$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 @@ -18123,7 +18256,7 @@ else rm -rf conftest* cat > conftest.$ac_ext <<EOF -#line 18127 "configure" +#line 18260 "configure" #include "confdefs.h" class Foo @@ -18156,7 +18289,7 @@ int main() { ; 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:18293: \"$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 @@ -18194,13 +18327,13 @@ EOF if test "$ace_user_enable_exceptions" = yes; then echo $ac_n "checking for C++ exceptions""... $ac_c" 1>&6 -echo "configure:18198: checking for C++ exceptions" >&5 +echo "configure:18331: 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 18204 "configure" +#line 18337 "configure" #include "confdefs.h" int main() { @@ -18218,7 +18351,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:18222: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:18355: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_feature_posix_exceptions=yes @@ -18303,19 +18436,19 @@ rm -f confcache # The Ultrix 4.2 mips builtin alloca declared by alloca.h only works # for constant arguments. Useless! echo $ac_n "checking for working alloca.h""... $ac_c" 1>&6 -echo "configure:18307: checking for working alloca.h" >&5 +echo "configure:18440: 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 18312 "configure" +#line 18445 "configure" #include "confdefs.h" #include <alloca.h> int main() { char *p = alloca(2 * sizeof(int)); ; return 0; } EOF -if { (eval echo configure:18319: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:18452: \"$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 @@ -18336,12 +18469,12 @@ EOF fi echo $ac_n "checking for alloca""... $ac_c" 1>&6 -echo "configure:18340: checking for alloca" >&5 +echo "configure:18473: 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 18345 "configure" +#line 18478 "configure" #include "confdefs.h" #ifdef __GNUC__ @@ -18369,7 +18502,7 @@ int main() { char *p = (char *) alloca(1); ; return 0; } EOF -if { (eval echo configure:18373: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:18506: \"$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 @@ -18401,12 +18534,12 @@ EOF echo $ac_n "checking whether alloca needs Cray hooks""... $ac_c" 1>&6 -echo "configure:18405: checking whether alloca needs Cray hooks" >&5 +echo "configure:18538: 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 18410 "configure" +#line 18543 "configure" #include "confdefs.h" #if defined(CRAY) && ! defined(CRAY2) webecray @@ -18431,12 +18564,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:18435: checking for $ac_func" >&5 +echo "configure:18568: 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 18440 "configure" +#line 18573 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func(); below. */ @@ -18462,7 +18595,7 @@ $ac_func(); ; return 0; } EOF -if { (eval echo configure:18466: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:18599: \"$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 @@ -18489,7 +18622,7 @@ done fi echo $ac_n "checking stack direction for C alloca""... $ac_c" 1>&6 -echo "configure:18493: checking stack direction for C alloca" >&5 +echo "configure:18626: 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 @@ -18497,7 +18630,7 @@ else ac_cv_c_stack_direction=0 else cat > conftest.$ac_ext <<EOF -#line 18501 "configure" +#line 18634 "configure" #include "confdefs.h" #ifdef __cplusplus extern "C" void exit(int); @@ -18519,7 +18652,7 @@ main () exit (find_stack_direction() < 0); } EOF -if { (eval echo configure:18523: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:18656: \"$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 @@ -18555,7 +18688,7 @@ fi echo $ac_n "checking whether closedir returns void""... $ac_c" 1>&6 -echo "configure:18559: checking whether closedir returns void" >&5 +echo "configure:18692: 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 @@ -18563,7 +18696,7 @@ else ac_cv_func_closedir_void=yes else cat > conftest.$ac_ext <<EOF -#line 18567 "configure" +#line 18700 "configure" #include "confdefs.h" #ifdef __cplusplus extern "C" void exit(int); @@ -18572,7 +18705,7 @@ extern "C" void exit(int); #include <$ac_header_dirent> int closedir(); main() { exit(closedir(opendir(".")) != 0); } EOF -if { (eval echo configure:18576: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:18709: \"$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 @@ -18596,12 +18729,12 @@ fi echo $ac_n "checking for getpwnam""... $ac_c" 1>&6 -echo "configure:18600: checking for getpwnam" >&5 +echo "configure:18733: 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 18605 "configure" +#line 18738 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char getpwnam(); below. */ @@ -18627,7 +18760,7 @@ getpwnam(); ; return 0; } EOF -if { (eval echo configure:18631: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:18764: \"$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 @@ -18646,12 +18779,12 @@ else echo "$ac_t""no" 1>&6 fi echo $ac_n "checking for setpwent""... $ac_c" 1>&6 -echo "configure:18650: checking for setpwent" >&5 +echo "configure:18783: 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 18655 "configure" +#line 18788 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char setpwent(); below. */ @@ -18677,7 +18810,7 @@ setpwent(); ; return 0; } EOF -if { (eval echo configure:18681: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:18814: \"$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 @@ -18696,12 +18829,12 @@ else echo "$ac_t""no" 1>&6 fi echo $ac_n "checking for endpwent""... $ac_c" 1>&6 -echo "configure:18700: checking for endpwent" >&5 +echo "configure:18833: 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 18705 "configure" +#line 18838 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char endpwent(); below. */ @@ -18727,7 +18860,7 @@ endpwent(); ; return 0; } EOF -if { (eval echo configure:18731: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:18864: \"$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 @@ -18746,12 +18879,12 @@ else echo "$ac_t""no" 1>&6 fi echo $ac_n "checking for getpwent""... $ac_c" 1>&6 -echo "configure:18750: checking for getpwent" >&5 +echo "configure:18883: 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 18755 "configure" +#line 18888 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char getpwent(); below. */ @@ -18777,7 +18910,7 @@ getpwent(); ; return 0; } EOF -if { (eval echo configure:18781: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:18914: \"$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 @@ -18807,12 +18940,12 @@ EOF fi echo $ac_n "checking for strftime""... $ac_c" 1>&6 -echo "configure:18811: checking for strftime" >&5 +echo "configure:18944: 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 18816 "configure" +#line 18949 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char strftime(); below. */ @@ -18838,7 +18971,7 @@ strftime(); ; return 0; } EOF -if { (eval echo configure:18842: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:18975: \"$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 @@ -18860,7 +18993,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:18864: checking for strftime in -lintl" >&5 +echo "configure:18997: 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 @@ -18868,7 +19001,7 @@ else ac_save_LIBS="$LIBS" LIBS="-lintl $LIBS" cat > conftest.$ac_ext <<EOF -#line 18872 "configure" +#line 19005 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ #ifdef __cplusplus @@ -18882,7 +19015,7 @@ int main() { strftime() ; return 0; } EOF -if { (eval echo configure:18886: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:19019: \"$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 @@ -18912,12 +19045,12 @@ fi case "$target" in *win32*) echo $ac_n "checking for CancelIO""... $ac_c" 1>&6 -echo "configure:18916: checking for CancelIO" >&5 +echo "configure:19049: 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 18921 "configure" +#line 19054 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char CancelIO(); below. */ @@ -18943,7 +19076,7 @@ CancelIO(); ; return 0; } EOF -if { (eval echo configure:18947: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:19080: \"$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 @@ -18967,12 +19100,12 @@ fi echo $ac_n "checking for SignalObjectAndWait""... $ac_c" 1>&6 -echo "configure:18971: checking for SignalObjectAndWait" >&5 +echo "configure:19104: 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 18976 "configure" +#line 19109 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char SignalObjectAndWait(); below. */ @@ -18998,7 +19131,7 @@ SignalObjectAndWait(); ; return 0; } EOF -if { (eval echo configure:19002: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:19135: \"$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 @@ -19022,12 +19155,12 @@ fi echo $ac_n "checking for TryEnterCriticalSection""... $ac_c" 1>&6 -echo "configure:19026: checking for TryEnterCriticalSection" >&5 +echo "configure:19159: 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 19031 "configure" +#line 19164 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char TryEnterCriticalSection(); below. */ @@ -19053,7 +19186,7 @@ TryEnterCriticalSection(); ; return 0; } EOF -if { (eval echo configure:19057: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:19190: \"$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 @@ -19081,12 +19214,12 @@ fi esac echo $ac_n "checking for access""... $ac_c" 1>&6 -echo "configure:19085: checking for access" >&5 +echo "configure:19218: 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 19090 "configure" +#line 19223 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char access(); below. */ @@ -19112,7 +19245,7 @@ access(); ; return 0; } EOF -if { (eval echo configure:19116: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:19249: \"$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 @@ -19137,12 +19270,12 @@ fi echo $ac_n "checking for bsearch""... $ac_c" 1>&6 -echo "configure:19141: checking for bsearch" >&5 +echo "configure:19274: 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 19146 "configure" +#line 19279 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char bsearch(); below. */ @@ -19168,7 +19301,7 @@ bsearch(); ; return 0; } EOF -if { (eval echo configure:19172: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:19305: \"$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 @@ -19193,12 +19326,12 @@ fi echo $ac_n "checking for qsort""... $ac_c" 1>&6 -echo "configure:19197: checking for qsort" >&5 +echo "configure:19330: 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 19202 "configure" +#line 19335 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char qsort(); below. */ @@ -19224,7 +19357,7 @@ qsort(); ; return 0; } EOF -if { (eval echo configure:19228: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:19361: \"$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 @@ -19251,12 +19384,12 @@ fi for ac_func in execv execvp execve do echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 -echo "configure:19255: checking for $ac_func" >&5 +echo "configure:19388: 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 19260 "configure" +#line 19393 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func(); below. */ @@ -19282,7 +19415,7 @@ $ac_func(); ; return 0; } EOF -if { (eval echo configure:19286: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:19419: \"$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 @@ -19312,12 +19445,12 @@ done echo $ac_n "checking for fcntl""... $ac_c" 1>&6 -echo "configure:19316: checking for fcntl" >&5 +echo "configure:19449: 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 19321 "configure" +#line 19454 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char fcntl(); below. */ @@ -19343,7 +19476,7 @@ fcntl(); ; return 0; } EOF -if { (eval echo configure:19347: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:19480: \"$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 @@ -19368,12 +19501,12 @@ fi echo $ac_n "checking for fsync""... $ac_c" 1>&6 -echo "configure:19372: checking for fsync" >&5 +echo "configure:19505: 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 19377 "configure" +#line 19510 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char fsync(); below. */ @@ -19399,7 +19532,7 @@ fsync(); ; return 0; } EOF -if { (eval echo configure:19403: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:19536: \"$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 @@ -19424,12 +19557,12 @@ fi echo $ac_n "checking for getmsg""... $ac_c" 1>&6 -echo "configure:19428: checking for getmsg" >&5 +echo "configure:19561: 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 19433 "configure" +#line 19566 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char getmsg(); below. */ @@ -19455,7 +19588,7 @@ getmsg(); ; return 0; } EOF -if { (eval echo configure:19459: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:19592: \"$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 @@ -19479,12 +19612,12 @@ fi echo $ac_n "checking for gethostbyaddr""... $ac_c" 1>&6 -echo "configure:19483: checking for gethostbyaddr" >&5 +echo "configure:19616: 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 19488 "configure" +#line 19621 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char gethostbyaddr(); below. */ @@ -19510,7 +19643,7 @@ gethostbyaddr(); ; return 0; } EOF -if { (eval echo configure:19514: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:19647: \"$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 @@ -19530,12 +19663,12 @@ else fi echo $ac_n "checking for difftime""... $ac_c" 1>&6 -echo "configure:19534: checking for difftime" >&5 +echo "configure:19667: 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 19539 "configure" +#line 19672 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char difftime(); below. */ @@ -19561,7 +19694,7 @@ difftime(); ; return 0; } EOF -if { (eval echo configure:19565: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:19698: \"$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 @@ -19586,12 +19719,12 @@ fi echo $ac_n "checking for lseek64""... $ac_c" 1>&6 -echo "configure:19590: checking for lseek64" >&5 +echo "configure:19723: checking for lseek64" >&5 if eval "test \"`echo '$''{'ac_cv_func_lseek64'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 19595 "configure" +#line 19728 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char lseek64(); below. */ @@ -19617,7 +19750,7 @@ lseek64(); ; return 0; } EOF -if { (eval echo configure:19621: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:19754: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_lseek64=yes" else @@ -19638,7 +19771,7 @@ EOF echo $ac_n "checking for lseek64 prototype""... $ac_c" 1>&6 -echo "configure:19642: checking for lseek64 prototype" >&5 +echo "configure:19775: checking for lseek64 prototype" >&5 if eval "test \"`echo '$''{'ace_cv_lib_has_lseek64_prototype'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -19647,7 +19780,7 @@ else ace_no_largefile64="-U_LARGEFILE64_SOURCE" CPPFLAGS="$CPPFLAGS $ace_no_largefile64" cat > conftest.$ac_ext <<EOF -#line 19651 "configure" +#line 19784 "configure" #include "confdefs.h" #include <unistd.h> EOF @@ -19687,12 +19820,12 @@ else echo "$ac_t""no" 1>&6 echo $ac_n "checking for llseek""... $ac_c" 1>&6 -echo "configure:19691: checking for llseek" >&5 +echo "configure:19824: 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 19696 "configure" +#line 19829 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char llseek(); below. */ @@ -19718,7 +19851,7 @@ llseek(); ; return 0; } EOF -if { (eval echo configure:19722: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:19855: \"$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 @@ -19739,7 +19872,7 @@ EOF echo $ac_n "checking for llseek prototype""... $ac_c" 1>&6 -echo "configure:19743: checking for llseek prototype" >&5 +echo "configure:19876: checking for llseek prototype" >&5 if eval "test \"`echo '$''{'ace_cv_lib_has_llseek_prototype'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -19748,7 +19881,7 @@ else ace_no_largefile64="-U_LARGEFILE64_SOURCE" CPPFLAGS="$CPPFLAGS $ace_no_largefile64" cat > conftest.$ac_ext <<EOF -#line 19752 "configure" +#line 19885 "configure" #include "confdefs.h" #include <unistd.h> EOF @@ -19793,12 +19926,12 @@ fi echo $ac_n "checking for bind""... $ac_c" 1>&6 -echo "configure:19797: checking for bind" >&5 +echo "configure:19930: 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 19802 "configure" +#line 19935 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char bind(); below. */ @@ -19824,7 +19957,7 @@ bind(); ; return 0; } EOF -if { (eval echo configure:19828: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:19961: \"$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 @@ -19841,7 +19974,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:19845: checking if bind() will select the port if it is zero" >&5 +echo "configure:19978: 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 @@ -19852,7 +19985,7 @@ else else cat > conftest.$ac_ext <<EOF -#line 19856 "configure" +#line 19989 "configure" #include "confdefs.h" #ifdef __cplusplus extern "C" void exit(int); @@ -19882,7 +20015,7 @@ extern "C" void exit(int); } EOF -if { (eval echo configure:19886: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:20019: \"$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 @@ -19921,12 +20054,12 @@ fi echo $ac_n "checking for poll""... $ac_c" 1>&6 -echo "configure:19925: checking for poll" >&5 +echo "configure:20058: 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 19930 "configure" +#line 20063 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char poll(); below. */ @@ -19952,7 +20085,7 @@ poll(); ; return 0; } EOF -if { (eval echo configure:19956: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:20089: \"$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 @@ -19969,7 +20102,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:19973: checking if poll is broken" >&5 +echo "configure:20106: 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 @@ -19980,7 +20113,7 @@ else else cat > conftest.$ac_ext <<EOF -#line 19984 "configure" +#line 20117 "configure" #include "confdefs.h" #ifdef __cplusplus extern "C" void exit(int); @@ -20019,7 +20152,7 @@ extern "C" void exit(int); } EOF -if { (eval echo configure:20023: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:20156: \"$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 @@ -20057,12 +20190,12 @@ fi echo $ac_n "checking for gethrtime""... $ac_c" 1>&6 -echo "configure:20061: checking for gethrtime" >&5 +echo "configure:20194: 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 20066 "configure" +#line 20199 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char gethrtime(); below. */ @@ -20088,7 +20221,7 @@ gethrtime(); ; return 0; } EOF -if { (eval echo configure:20092: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:20225: \"$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 @@ -20107,13 +20240,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:20111: checking for hrtime_t in sys/time.h" >&5 +echo "configure:20244: 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 20117 "configure" +#line 20250 "configure" #include "confdefs.h" #include <sys/time.h> @@ -20124,7 +20257,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:20128: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:20261: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_type_hrtime_t=yes @@ -20161,12 +20294,12 @@ fi echo $ac_n "checking for pread""... $ac_c" 1>&6 -echo "configure:20165: checking for pread" >&5 +echo "configure:20298: 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 20170 "configure" +#line 20303 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char pread(); below. */ @@ -20192,7 +20325,7 @@ pread(); ; return 0; } EOF -if { (eval echo configure:20196: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:20329: \"$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 @@ -20207,12 +20340,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:20211: checking for pwrite" >&5 +echo "configure:20344: 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 20216 "configure" +#line 20349 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char pwrite(); below. */ @@ -20238,7 +20371,7 @@ pwrite(); ; return 0; } EOF -if { (eval echo configure:20242: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:20375: \"$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 @@ -20259,7 +20392,7 @@ EOF echo $ac_n "checking for pread prototype""... $ac_c" 1>&6 -echo "configure:20263: checking for pread prototype" >&5 +echo "configure:20396: checking for pread prototype" >&5 if eval "test \"`echo '$''{'ace_cv_lib_has_pread_prototype'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -20268,7 +20401,7 @@ else ace_no_xopen="-U_XOPEN_SOURCE" CPPFLAGS="$CPPFLAGS $ace_no_xopen" cat > conftest.$ac_ext <<EOF -#line 20272 "configure" +#line 20405 "configure" #include "confdefs.h" #include <unistd.h> EOF @@ -20314,12 +20447,12 @@ fi echo $ac_n "checking for readv""... $ac_c" 1>&6 -echo "configure:20318: checking for readv" >&5 +echo "configure:20451: 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 20323 "configure" +#line 20456 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char readv(); below. */ @@ -20345,7 +20478,7 @@ readv(); ; return 0; } EOF -if { (eval echo configure:20349: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:20482: \"$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 @@ -20369,12 +20502,12 @@ EOF fi echo $ac_n "checking for writev""... $ac_c" 1>&6 -echo "configure:20373: checking for writev" >&5 +echo "configure:20506: 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 20378 "configure" +#line 20511 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char writev(); below. */ @@ -20400,7 +20533,7 @@ writev(); ; return 0; } EOF -if { (eval echo configure:20404: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:20537: \"$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 @@ -20424,12 +20557,12 @@ EOF fi echo $ac_n "checking for set_t_errno""... $ac_c" 1>&6 -echo "configure:20428: checking for set_t_errno" >&5 +echo "configure:20561: 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 20433 "configure" +#line 20566 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char set_t_errno(); below. */ @@ -20455,7 +20588,7 @@ set_t_errno(); ; return 0; } EOF -if { (eval echo configure:20459: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:20592: \"$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 @@ -20478,12 +20611,12 @@ else fi echo $ac_n "checking for sigsuspend""... $ac_c" 1>&6 -echo "configure:20482: checking for sigsuspend" >&5 +echo "configure:20615: 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 20487 "configure" +#line 20620 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char sigsuspend(); below. */ @@ -20509,7 +20642,7 @@ sigsuspend(); ; return 0; } EOF -if { (eval echo configure:20513: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:20646: \"$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 @@ -20533,12 +20666,12 @@ fi echo $ac_n "checking for sigtimedwait""... $ac_c" 1>&6 -echo "configure:20537: checking for sigtimedwait" >&5 +echo "configure:20670: 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 20542 "configure" +#line 20675 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char sigtimedwait(); below. */ @@ -20564,7 +20697,7 @@ sigtimedwait(); ; return 0; } EOF -if { (eval echo configure:20568: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:20701: \"$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 @@ -20588,12 +20721,12 @@ fi echo $ac_n "checking for socketpair""... $ac_c" 1>&6 -echo "configure:20592: checking for socketpair" >&5 +echo "configure:20725: 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 20597 "configure" +#line 20730 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char socketpair(); below. */ @@ -20619,7 +20752,7 @@ socketpair(); ; return 0; } EOF -if { (eval echo configure:20623: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:20756: \"$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 @@ -20644,12 +20777,12 @@ fi echo $ac_n "checking for strcasecmp""... $ac_c" 1>&6 -echo "configure:20648: checking for strcasecmp" >&5 +echo "configure:20781: 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 20653 "configure" +#line 20786 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char strcasecmp(); below. */ @@ -20675,7 +20808,7 @@ strcasecmp(); ; return 0; } EOF -if { (eval echo configure:20679: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:20812: \"$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 @@ -20700,12 +20833,12 @@ fi echo $ac_n "checking for strdup""... $ac_c" 1>&6 -echo "configure:20704: checking for strdup" >&5 +echo "configure:20837: 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 20709 "configure" +#line 20842 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char strdup(); below. */ @@ -20731,7 +20864,7 @@ strdup(); ; return 0; } EOF -if { (eval echo configure:20735: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:20868: \"$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 @@ -20756,12 +20889,12 @@ fi echo $ac_n "checking for strrchr""... $ac_c" 1>&6 -echo "configure:20760: checking for strrchr" >&5 +echo "configure:20893: 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 20765 "configure" +#line 20898 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char strrchr(); below. */ @@ -20787,7 +20920,7 @@ strrchr(); ; return 0; } EOF -if { (eval echo configure:20791: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:20924: \"$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 @@ -20812,12 +20945,12 @@ fi echo $ac_n "checking for strptime""... $ac_c" 1>&6 -echo "configure:20816: checking for strptime" >&5 +echo "configure:20949: checking for strptime" >&5 if eval "test \"`echo '$''{'ac_cv_func_strptime'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 20821 "configure" +#line 20954 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char strptime(); below. */ @@ -20843,7 +20976,7 @@ strptime(); ; return 0; } EOF -if { (eval echo configure:20847: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:20980: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_strptime=yes" else @@ -20864,7 +20997,7 @@ EOF echo $ac_n "checking for strptime prototype""... $ac_c" 1>&6 -echo "configure:20868: checking for strptime prototype" >&5 +echo "configure:21001: checking for strptime prototype" >&5 if eval "test \"`echo '$''{'ace_cv_lib_has_strptime_prototype'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -20873,7 +21006,7 @@ else ace_no_xopen="-U_XOPEN_SOURCE" CPPFLAGS="$CPPFLAGS $ace_no_xopen" cat > conftest.$ac_ext <<EOF -#line 20877 "configure" +#line 21010 "configure" #include "confdefs.h" #include <time.h> EOF @@ -20921,12 +21054,12 @@ fi echo $ac_n "checking for memchr""... $ac_c" 1>&6 -echo "configure:20925: checking for memchr" >&5 +echo "configure:21058: 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 20930 "configure" +#line 21063 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char memchr(); below. */ @@ -20952,7 +21085,7 @@ memchr(); ; return 0; } EOF -if { (eval echo configure:20956: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:21089: \"$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 @@ -20976,12 +21109,12 @@ fi echo $ac_n "checking for syscall""... $ac_c" 1>&6 -echo "configure:20980: checking for syscall" >&5 +echo "configure:21113: 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 20985 "configure" +#line 21118 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char syscall(); below. */ @@ -21007,7 +21140,7 @@ syscall(); ; return 0; } EOF -if { (eval echo configure:21011: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:21144: \"$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 @@ -21032,12 +21165,12 @@ fi echo $ac_n "checking for ualarm""... $ac_c" 1>&6 -echo "configure:21036: checking for ualarm" >&5 +echo "configure:21169: 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 21041 "configure" +#line 21174 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char ualarm(); below. */ @@ -21063,7 +21196,7 @@ ualarm(); ; return 0; } EOF -if { (eval echo configure:21067: \"$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_ualarm=yes" else @@ -21087,12 +21220,12 @@ fi echo $ac_n "checking for alarm""... $ac_c" 1>&6 -echo "configure:21091: checking for alarm" >&5 +echo "configure:21224: 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 21096 "configure" +#line 21229 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char alarm(); below. */ @@ -21118,7 +21251,7 @@ alarm(); ; return 0; } EOF -if { (eval echo configure:21122: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:21255: \"$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 @@ -21137,12 +21270,12 @@ else echo "$ac_t""no" 1>&6 fi echo $ac_n "checking for signal""... $ac_c" 1>&6 -echo "configure:21141: checking for signal" >&5 +echo "configure:21274: 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 21146 "configure" +#line 21279 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char signal(); below. */ @@ -21168,7 +21301,7 @@ signal(); ; return 0; } EOF -if { (eval echo configure:21172: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:21305: \"$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 @@ -21196,12 +21329,12 @@ EOF fi echo $ac_n "checking for fork""... $ac_c" 1>&6 -echo "configure:21200: checking for fork" >&5 +echo "configure:21333: 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 21205 "configure" +#line 21338 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char fork(); below. */ @@ -21227,7 +21360,7 @@ fork(); ; 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:21364: \"$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 @@ -21252,12 +21385,12 @@ fi echo $ac_n "checking for getrlimit""... $ac_c" 1>&6 -echo "configure:21256: checking for getrlimit" >&5 +echo "configure:21389: 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 21261 "configure" +#line 21394 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char getrlimit(); below. */ @@ -21283,7 +21416,7 @@ getrlimit(); ; return 0; } EOF -if { (eval echo configure:21287: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:21420: \"$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 @@ -21299,12 +21432,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:21303: checking for setrlimit" >&5 +echo "configure:21436: 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 21308 "configure" +#line 21441 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char setrlimit(); below. */ @@ -21330,7 +21463,7 @@ setrlimit(); ; return 0; } EOF -if { (eval echo configure:21334: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:21467: \"$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 @@ -21366,12 +21499,12 @@ fi echo $ac_n "checking for sysinfo""... $ac_c" 1>&6 -echo "configure:21370: checking for sysinfo" >&5 +echo "configure:21503: 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 21375 "configure" +#line 21508 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char sysinfo(); below. */ @@ -21397,7 +21530,7 @@ sysinfo(); ; return 0; } EOF -if { (eval echo configure:21401: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:21534: \"$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 @@ -21425,12 +21558,12 @@ fi echo $ac_n "checking for strerror""... $ac_c" 1>&6 -echo "configure:21429: checking for strerror" >&5 +echo "configure:21562: 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 21434 "configure" +#line 21567 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char strerror(); below. */ @@ -21456,7 +21589,7 @@ strerror(); ; return 0; } EOF -if { (eval echo configure:21460: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:21593: \"$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 @@ -21480,12 +21613,12 @@ fi echo $ac_n "checking for lstat""... $ac_c" 1>&6 -echo "configure:21484: checking for lstat" >&5 +echo "configure:21617: 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 21489 "configure" +#line 21622 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char lstat(); below. */ @@ -21511,7 +21644,7 @@ lstat(); ; return 0; } EOF -if { (eval echo configure:21515: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:21648: \"$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 @@ -21536,12 +21669,12 @@ fi echo $ac_n "checking for readlink""... $ac_c" 1>&6 -echo "configure:21540: checking for readlink" >&5 +echo "configure:21673: 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 21545 "configure" +#line 21678 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char readlink(); below. */ @@ -21567,7 +21700,7 @@ readlink(); ; return 0; } EOF -if { (eval echo configure:21571: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:21704: \"$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 @@ -21592,12 +21725,12 @@ fi echo $ac_n "checking for rename""... $ac_c" 1>&6 -echo "configure:21596: checking for rename" >&5 +echo "configure:21729: 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 21601 "configure" +#line 21734 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char rename(); below. */ @@ -21623,7 +21756,7 @@ rename(); ; return 0; } EOF -if { (eval echo configure:21627: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:21760: \"$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 @@ -21648,12 +21781,12 @@ fi echo $ac_n "checking for recvmsg""... $ac_c" 1>&6 -echo "configure:21652: checking for recvmsg" >&5 +echo "configure:21785: 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 21657 "configure" +#line 21790 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char recvmsg(); below. */ @@ -21679,7 +21812,7 @@ recvmsg(); ; return 0; } EOF -if { (eval echo configure:21683: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:21816: \"$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 @@ -21704,12 +21837,12 @@ fi echo $ac_n "checking for sendmsg""... $ac_c" 1>&6 -echo "configure:21708: checking for sendmsg" >&5 +echo "configure:21841: 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 21713 "configure" +#line 21846 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char sendmsg(); below. */ @@ -21735,7 +21868,7 @@ sendmsg(); ; return 0; } EOF -if { (eval echo configure:21739: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:21872: \"$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 @@ -21761,12 +21894,12 @@ fi if test "$ace_has_tli" = yes; then echo $ac_n "checking for t_getname""... $ac_c" 1>&6 -echo "configure:21765: checking for t_getname" >&5 +echo "configure:21898: 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 21770 "configure" +#line 21903 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char t_getname(); below. */ @@ -21792,7 +21925,7 @@ t_getname(); ; return 0; } EOF -if { (eval echo configure:21796: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:21929: \"$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 @@ -21817,12 +21950,12 @@ fi fi echo $ac_n "checking for getrusage""... $ac_c" 1>&6 -echo "configure:21821: checking for getrusage" >&5 +echo "configure:21954: 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 21826 "configure" +#line 21959 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char getrusage(); below. */ @@ -21848,7 +21981,7 @@ getrusage(); ; return 0; } EOF -if { (eval echo configure:21852: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:21985: \"$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 @@ -21872,12 +22005,12 @@ fi echo $ac_n "checking for getpgid""... $ac_c" 1>&6 -echo "configure:21876: checking for getpgid" >&5 +echo "configure:22009: 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 21881 "configure" +#line 22014 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char getpgid(); below. */ @@ -21903,7 +22036,7 @@ getpgid(); ; return 0; } EOF -if { (eval echo configure:21907: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:22040: \"$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 @@ -21920,7 +22053,7 @@ if eval "test \"`echo '$ac_cv_func_'getpgid`\" = yes"; then echo $ac_n "checking for getpgid prototype""... $ac_c" 1>&6 -echo "configure:21924: checking for getpgid prototype" >&5 +echo "configure:22057: checking for getpgid prototype" >&5 if eval "test \"`echo '$''{'ace_cv_lib_has_getpgid_prototype'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -21929,7 +22062,7 @@ else ace_no_xopen="-U_XOPEN_SOURCE -U_XOPEN_SOURCE_EXTENDED" CPPFLAGS="$CPPFLAGS $ace_no_xopen" cat > conftest.$ac_ext <<EOF -#line 21933 "configure" +#line 22066 "configure" #include "confdefs.h" #include <unistd.h> EOF @@ -21977,12 +22110,12 @@ fi echo $ac_n "checking for getppid""... $ac_c" 1>&6 -echo "configure:21981: checking for getppid" >&5 +echo "configure:22114: 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 21986 "configure" +#line 22119 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char getppid(); below. */ @@ -22008,7 +22141,7 @@ getppid(); ; return 0; } EOF -if { (eval echo configure:22012: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:22145: \"$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 @@ -22033,12 +22166,12 @@ fi echo $ac_n "checking for getpagesize""... $ac_c" 1>&6 -echo "configure:22037: checking for getpagesize" >&5 +echo "configure:22170: 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 22042 "configure" +#line 22175 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char getpagesize(); below. */ @@ -22064,7 +22197,7 @@ getpagesize(); ; return 0; } EOF -if { (eval echo configure:22068: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:22201: \"$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 @@ -22092,12 +22225,12 @@ fi echo $ac_n "checking for msync""... $ac_c" 1>&6 -echo "configure:22096: checking for msync" >&5 +echo "configure:22229: 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 22101 "configure" +#line 22234 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char msync(); below. */ @@ -22123,7 +22256,7 @@ msync(); ; return 0; } EOF -if { (eval echo configure:22127: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:22260: \"$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 @@ -22148,12 +22281,12 @@ fi echo $ac_n "checking for mprotect""... $ac_c" 1>&6 -echo "configure:22152: checking for mprotect" >&5 +echo "configure:22285: 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 22157 "configure" +#line 22290 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char mprotect(); below. */ @@ -22179,7 +22312,7 @@ mprotect(); ; return 0; } EOF -if { (eval echo configure:22183: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:22316: \"$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 @@ -22204,12 +22337,12 @@ fi echo $ac_n "checking for mkfifo""... $ac_c" 1>&6 -echo "configure:22208: checking for mkfifo" >&5 +echo "configure:22341: 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 22213 "configure" +#line 22346 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char mkfifo(); below. */ @@ -22235,7 +22368,7 @@ mkfifo(); ; return 0; } EOF -if { (eval echo configure:22239: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:22372: \"$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 @@ -22260,12 +22393,12 @@ fi echo $ac_n "checking for mktemp""... $ac_c" 1>&6 -echo "configure:22264: checking for mktemp" >&5 +echo "configure:22397: 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 22269 "configure" +#line 22402 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char mktemp(); below. */ @@ -22291,7 +22424,7 @@ mktemp(); ; return 0; } EOF -if { (eval echo configure:22295: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:22428: \"$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 @@ -22316,12 +22449,12 @@ fi echo $ac_n "checking for madvise""... $ac_c" 1>&6 -echo "configure:22320: checking for madvise" >&5 +echo "configure:22453: 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 22325 "configure" +#line 22458 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char madvise(); below. */ @@ -22347,7 +22480,7 @@ madvise(); ; return 0; } EOF -if { (eval echo configure:22351: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:22484: \"$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 @@ -22373,12 +22506,12 @@ fi if test "$ac_cv_header_sys_priocntl_h" = yes; then echo $ac_n "checking for priocntl""... $ac_c" 1>&6 -echo "configure:22377: checking for priocntl" >&5 +echo "configure:22510: 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 22382 "configure" +#line 22515 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char priocntl(); below. */ @@ -22404,7 +22537,7 @@ priocntl(); ; return 0; } EOF -if { (eval echo configure:22408: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:22541: \"$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 @@ -22430,13 +22563,13 @@ fi if test "$ac_cv_func_priocntl" = no; then echo $ac_n "checking for priocntl macro""... $ac_c" 1>&6 -echo "configure:22434: checking for priocntl macro" >&5 +echo "configure:22567: 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 22440 "configure" +#line 22573 "configure" #include "confdefs.h" #include <sys/priocntl.h> @@ -22477,12 +22610,12 @@ EOF fi fi echo $ac_n "checking for sbrk""... $ac_c" 1>&6 -echo "configure:22481: checking for sbrk" >&5 +echo "configure:22614: 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 22486 "configure" +#line 22619 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char sbrk(); below. */ @@ -22508,7 +22641,7 @@ sbrk(); ; return 0; } EOF -if { (eval echo configure:22512: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:22645: \"$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 @@ -22533,12 +22666,12 @@ fi echo $ac_n "checking for msgctl""... $ac_c" 1>&6 -echo "configure:22537: checking for msgctl" >&5 +echo "configure:22670: 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 22542 "configure" +#line 22675 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char msgctl(); below. */ @@ -22564,7 +22697,7 @@ msgctl(); ; return 0; } EOF -if { (eval echo configure:22568: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:22701: \"$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 @@ -22585,12 +22718,12 @@ fi echo $ac_n "checking for msgget""... $ac_c" 1>&6 -echo "configure:22589: checking for msgget" >&5 +echo "configure:22722: 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 22594 "configure" +#line 22727 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char msgget(); below. */ @@ -22616,7 +22749,7 @@ msgget(); ; return 0; } EOF -if { (eval echo configure:22620: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:22753: \"$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 @@ -22637,12 +22770,12 @@ fi echo $ac_n "checking for msgrcv""... $ac_c" 1>&6 -echo "configure:22641: checking for msgrcv" >&5 +echo "configure:22774: 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 22646 "configure" +#line 22779 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char msgrcv(); below. */ @@ -22668,7 +22801,7 @@ msgrcv(); ; return 0; } EOF -if { (eval echo configure:22672: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:22805: \"$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 @@ -22689,12 +22822,12 @@ fi echo $ac_n "checking for semctl""... $ac_c" 1>&6 -echo "configure:22693: checking for semctl" >&5 +echo "configure:22826: 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 22698 "configure" +#line 22831 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char semctl(); below. */ @@ -22720,7 +22853,7 @@ semctl(); ; return 0; } EOF -if { (eval echo configure:22724: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:22857: \"$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 @@ -22741,12 +22874,12 @@ fi echo $ac_n "checking for semget""... $ac_c" 1>&6 -echo "configure:22745: checking for semget" >&5 +echo "configure:22878: 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 22750 "configure" +#line 22883 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char semget(); below. */ @@ -22772,7 +22905,7 @@ semget(); ; return 0; } EOF -if { (eval echo configure:22776: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:22909: \"$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 @@ -22793,12 +22926,12 @@ fi echo $ac_n "checking for semop""... $ac_c" 1>&6 -echo "configure:22797: checking for semop" >&5 +echo "configure:22930: 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 22802 "configure" +#line 22935 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char semop(); below. */ @@ -22824,7 +22957,7 @@ semop(); ; return 0; } EOF -if { (eval echo configure:22828: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:22961: \"$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 @@ -22845,12 +22978,12 @@ fi echo $ac_n "checking for shmat""... $ac_c" 1>&6 -echo "configure:22849: checking for shmat" >&5 +echo "configure:22982: 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 22854 "configure" +#line 22987 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char shmat(); below. */ @@ -22876,7 +23009,7 @@ shmat(); ; return 0; } EOF -if { (eval echo configure:22880: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:23013: \"$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 @@ -22897,12 +23030,12 @@ fi echo $ac_n "checking for shmctl""... $ac_c" 1>&6 -echo "configure:22901: checking for shmctl" >&5 +echo "configure:23034: 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 22906 "configure" +#line 23039 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char shmctl(); below. */ @@ -22928,7 +23061,7 @@ shmctl(); ; return 0; } EOF -if { (eval echo configure:22932: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:23065: \"$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 @@ -22949,12 +23082,12 @@ fi echo $ac_n "checking for shmdt""... $ac_c" 1>&6 -echo "configure:22953: checking for shmdt" >&5 +echo "configure:23086: 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 22958 "configure" +#line 23091 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char shmdt(); below. */ @@ -22980,7 +23113,7 @@ shmdt(); ; return 0; } EOF -if { (eval echo configure:22984: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:23117: \"$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 @@ -23001,12 +23134,12 @@ fi echo $ac_n "checking for shmget""... $ac_c" 1>&6 -echo "configure:23005: checking for shmget" >&5 +echo "configure:23138: 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 23010 "configure" +#line 23143 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char shmget(); below. */ @@ -23032,7 +23165,7 @@ shmget(); ; return 0; } EOF -if { (eval echo configure:23036: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:23169: \"$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 @@ -23053,12 +23186,12 @@ fi echo $ac_n "checking for read_real_time""... $ac_c" 1>&6 -echo "configure:23057: checking for read_real_time" >&5 +echo "configure:23190: 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 23062 "configure" +#line 23195 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char read_real_time(); below. */ @@ -23084,7 +23217,7 @@ read_real_time(); ; return 0; } EOF -if { (eval echo configure:23088: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:23221: \"$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 @@ -23108,12 +23241,12 @@ fi echo $ac_n "checking for shm_open""... $ac_c" 1>&6 -echo "configure:23112: checking for shm_open" >&5 +echo "configure:23245: 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 23117 "configure" +#line 23250 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char shm_open(); below. */ @@ -23139,7 +23272,7 @@ shm_open(); ; return 0; } EOF -if { (eval echo configure:23143: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:23276: \"$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 @@ -23163,12 +23296,12 @@ fi echo $ac_n "checking for tempnam""... $ac_c" 1>&6 -echo "configure:23167: checking for tempnam" >&5 +echo "configure:23300: 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 23172 "configure" +#line 23305 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char tempnam(); below. */ @@ -23194,7 +23327,7 @@ tempnam(); ; return 0; } EOF -if { (eval echo configure:23198: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:23331: \"$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 @@ -23219,12 +23352,12 @@ fi echo $ac_n "checking for truncate""... $ac_c" 1>&6 -echo "configure:23223: checking for truncate" >&5 +echo "configure:23356: 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 23228 "configure" +#line 23361 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char truncate(); below. */ @@ -23250,7 +23383,7 @@ truncate(); ; return 0; } EOF -if { (eval echo configure:23254: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:23387: \"$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 @@ -23275,12 +23408,12 @@ fi echo $ac_n "checking for recv_timedwait""... $ac_c" 1>&6 -echo "configure:23279: checking for recv_timedwait" >&5 +echo "configure:23412: 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 23284 "configure" +#line 23417 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char recv_timedwait(); below. */ @@ -23306,7 +23439,7 @@ recv_timedwait(); ; return 0; } EOF -if { (eval echo configure:23310: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:23443: \"$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 @@ -23330,12 +23463,12 @@ fi echo $ac_n "checking for recvfrom_timedwait""... $ac_c" 1>&6 -echo "configure:23334: checking for recvfrom_timedwait" >&5 +echo "configure:23467: 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 23339 "configure" +#line 23472 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char recvfrom_timedwait(); below. */ @@ -23361,7 +23494,7 @@ recvfrom_timedwait(); ; return 0; } EOF -if { (eval echo configure:23365: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:23498: \"$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 @@ -23385,12 +23518,12 @@ fi echo $ac_n "checking for recvmsg_timedwait""... $ac_c" 1>&6 -echo "configure:23389: checking for recvmsg_timedwait" >&5 +echo "configure:23522: 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 23394 "configure" +#line 23527 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char recvmsg_timedwait(); below. */ @@ -23416,7 +23549,7 @@ recvmsg_timedwait(); ; return 0; } EOF -if { (eval echo configure:23420: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:23553: \"$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 @@ -23440,12 +23573,12 @@ fi echo $ac_n "checking for send_timedwait""... $ac_c" 1>&6 -echo "configure:23444: checking for send_timedwait" >&5 +echo "configure:23577: 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 23449 "configure" +#line 23582 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char send_timedwait(); below. */ @@ -23471,7 +23604,7 @@ send_timedwait(); ; return 0; } EOF -if { (eval echo configure:23475: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:23608: \"$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 @@ -23495,12 +23628,12 @@ fi echo $ac_n "checking for sendto_timedwait""... $ac_c" 1>&6 -echo "configure:23499: checking for sendto_timedwait" >&5 +echo "configure:23632: 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 23504 "configure" +#line 23637 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char sendto_timedwait(); below. */ @@ -23526,7 +23659,7 @@ sendto_timedwait(); ; return 0; } EOF -if { (eval echo configure:23530: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:23663: \"$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 @@ -23550,12 +23683,12 @@ fi echo $ac_n "checking for sendmsg_timedwait""... $ac_c" 1>&6 -echo "configure:23554: checking for sendmsg_timedwait" >&5 +echo "configure:23687: 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 23559 "configure" +#line 23692 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char sendmsg_timedwait(); below. */ @@ -23581,7 +23714,7 @@ sendmsg_timedwait(); ; return 0; } EOF -if { (eval echo configure:23585: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:23718: \"$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 @@ -23605,12 +23738,12 @@ fi echo $ac_n "checking for read_timedwait""... $ac_c" 1>&6 -echo "configure:23609: checking for read_timedwait" >&5 +echo "configure:23742: 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 23614 "configure" +#line 23747 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char read_timedwait(); below. */ @@ -23636,7 +23769,7 @@ read_timedwait(); ; return 0; } EOF -if { (eval echo configure:23640: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:23773: \"$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 @@ -23660,12 +23793,12 @@ fi echo $ac_n "checking for readv_timedwait""... $ac_c" 1>&6 -echo "configure:23664: checking for readv_timedwait" >&5 +echo "configure:23797: 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 23669 "configure" +#line 23802 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char readv_timedwait(); below. */ @@ -23691,7 +23824,7 @@ readv_timedwait(); ; return 0; } EOF -if { (eval echo configure:23695: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:23828: \"$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 @@ -23715,12 +23848,12 @@ fi echo $ac_n "checking for write_timedwait""... $ac_c" 1>&6 -echo "configure:23719: checking for write_timedwait" >&5 +echo "configure:23852: 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 23724 "configure" +#line 23857 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char write_timedwait(); below. */ @@ -23746,7 +23879,7 @@ write_timedwait(); ; return 0; } EOF -if { (eval echo configure:23750: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:23883: \"$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 @@ -23770,12 +23903,12 @@ fi echo $ac_n "checking for writev_timedwait""... $ac_c" 1>&6 -echo "configure:23774: checking for writev_timedwait" >&5 +echo "configure:23907: 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 23779 "configure" +#line 23912 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char writev_timedwait(); below. */ @@ -23801,7 +23934,7 @@ writev_timedwait(); ; return 0; } EOF -if { (eval echo configure:23805: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:23938: \"$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 @@ -23873,12 +24006,12 @@ rm -f confcache echo $ac_n "checking for sem_init""... $ac_c" 1>&6 -echo "configure:23877: checking for sem_init" >&5 +echo "configure:24010: 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 23882 "configure" +#line 24015 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char sem_init(); below. */ @@ -23904,7 +24037,7 @@ sem_init(); ; return 0; } EOF -if { (eval echo configure:23908: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:24041: \"$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 @@ -23923,12 +24056,12 @@ else echo "$ac_t""no" 1>&6 fi echo $ac_n "checking for sem_destroy""... $ac_c" 1>&6 -echo "configure:23927: checking for sem_destroy" >&5 +echo "configure:24060: 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 23932 "configure" +#line 24065 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char sem_destroy(); below. */ @@ -23954,7 +24087,7 @@ sem_destroy(); ; return 0; } EOF -if { (eval echo configure:23958: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:24091: \"$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 @@ -23979,7 +24112,7 @@ if test "$ac_cv_func_sem_init" = yes && test "$ace_has_sthreads" != yes; then cat > conftest.$ac_ext <<EOF -#line 23983 "configure" +#line 24116 "configure" #include "confdefs.h" #ifndef _REENTRANT @@ -24012,12 +24145,12 @@ EOF echo $ac_n "checking for sem_open""... $ac_c" 1>&6 -echo "configure:24016: checking for sem_open" >&5 +echo "configure:24149: 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 24021 "configure" +#line 24154 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char sem_open(); below. */ @@ -24043,7 +24176,7 @@ sem_open(); ; return 0; } EOF -if { (eval echo configure:24047: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:24180: \"$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 @@ -24060,7 +24193,7 @@ if eval "test \"`echo '$ac_cv_func_'sem_open`\" = yes"; then echo $ac_n "checking if sem_open works""... $ac_c" 1>&6 -echo "configure:24064: checking if sem_open works" >&5 +echo "configure:24197: checking if sem_open works" >&5 if eval "test \"`echo '$''{'ace_cv_sem_open_works'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -24071,7 +24204,7 @@ else else cat > conftest.$ac_ext <<EOF -#line 24075 "configure" +#line 24208 "configure" #include "confdefs.h" #ifdef __cplusplus extern "C" void exit(int); @@ -24109,7 +24242,7 @@ main () } EOF -if { (eval echo configure:24113: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:24246: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null then ace_cv_sem_open_works=yes @@ -24164,12 +24297,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:24168: checking for pthread_sigmask" >&5 +echo "configure:24301: 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 24173 "configure" +#line 24306 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char pthread_sigmask(); below. */ @@ -24195,7 +24328,7 @@ pthread_sigmask(); ; return 0; } EOF -if { (eval echo configure:24199: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:24332: \"$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 @@ -24220,12 +24353,12 @@ fi echo $ac_n "checking for pthread_key_create""... $ac_c" 1>&6 -echo "configure:24224: checking for pthread_key_create" >&5 +echo "configure:24357: 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 24229 "configure" +#line 24362 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char pthread_key_create(); below. */ @@ -24251,7 +24384,7 @@ pthread_key_create(); ; return 0; } EOF -if { (eval echo configure:24255: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:24388: \"$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 @@ -24273,12 +24406,12 @@ else echo "$ac_t""no" 1>&6 echo $ac_n "checking for pthread_keycreate""... $ac_c" 1>&6 -echo "configure:24277: checking for pthread_keycreate" >&5 +echo "configure:24410: checking for pthread_keycreate" >&5 if eval "test \"`echo '$''{'ac_cv_func_pthread_keycreate'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 24282 "configure" +#line 24415 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char pthread_keycreate(); below. */ @@ -24304,7 +24437,7 @@ pthread_keycreate(); ; return 0; } EOF -if { (eval echo configure:24308: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:24441: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_pthread_keycreate=yes" else @@ -24335,12 +24468,12 @@ fi echo $ac_n "checking for pthread_condattr_setkind_np""... $ac_c" 1>&6 -echo "configure:24339: checking for pthread_condattr_setkind_np" >&5 +echo "configure:24472: 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 24344 "configure" +#line 24477 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char pthread_condattr_setkind_np(); below. */ @@ -24366,7 +24499,7 @@ pthread_condattr_setkind_np(); ; return 0; } EOF -if { (eval echo configure:24370: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:24503: \"$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 @@ -24390,12 +24523,12 @@ fi echo $ac_n "checking for pthread_mutexattr_setkind_np""... $ac_c" 1>&6 -echo "configure:24394: checking for pthread_mutexattr_setkind_np" >&5 +echo "configure:24527: 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 24399 "configure" +#line 24532 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char pthread_mutexattr_setkind_np(); below. */ @@ -24421,7 +24554,7 @@ pthread_mutexattr_setkind_np(); ; return 0; } EOF -if { (eval echo configure:24425: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:24558: \"$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 @@ -24445,12 +24578,12 @@ fi echo $ac_n "checking for pthread_condattr_setpshared""... $ac_c" 1>&6 -echo "configure:24449: checking for pthread_condattr_setpshared" >&5 +echo "configure:24582: 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 24454 "configure" +#line 24587 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char pthread_condattr_setpshared(); below. */ @@ -24476,7 +24609,7 @@ pthread_condattr_setpshared(); ; return 0; } EOF -if { (eval echo configure:24480: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:24613: \"$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 @@ -24501,12 +24634,12 @@ fi echo $ac_n "checking for pthread_attr_setstackaddr""... $ac_c" 1>&6 -echo "configure:24505: checking for pthread_attr_setstackaddr" >&5 +echo "configure:24638: 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 24510 "configure" +#line 24643 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char pthread_attr_setstackaddr(); below. */ @@ -24532,7 +24665,7 @@ pthread_attr_setstackaddr(); ; return 0; } EOF -if { (eval echo configure:24536: \"$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_attr_setstackaddr=yes" else @@ -24560,14 +24693,14 @@ fi cat > conftest.$ac_ext <<EOF -#line 24564 "configure" +#line 24697 "configure" #include "confdefs.h" #include <pthread.h> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:24571: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:24704: \"$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* @@ -24603,19 +24736,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:24607: checking for real pthread_attr_setstacksize from pthread.h" >&5 +echo "configure:24740: 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:24614: checking for $ace_real_function" >&5 +echo "configure:24747: 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 24619 "configure" +#line 24752 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ace_real_function(); below. */ @@ -24641,7 +24774,7 @@ $ace_real_function(); ; return 0; } EOF -if { (eval echo configure:24645: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:24778: \"$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 @@ -24670,14 +24803,14 @@ fi cat > conftest.$ac_ext <<EOF -#line 24674 "configure" +#line 24807 "configure" #include "confdefs.h" #include <pthread.h> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:24681: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:24814: \"$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* @@ -24713,19 +24846,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:24717: checking for real pthread_cancel from pthread.h" >&5 +echo "configure:24850: 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:24724: checking for $ace_real_function" >&5 +echo "configure:24857: 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 24729 "configure" +#line 24862 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ace_real_function(); below. */ @@ -24751,7 +24884,7 @@ $ace_real_function(); ; return 0; } EOF -if { (eval echo configure:24755: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:24888: \"$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 @@ -24777,12 +24910,12 @@ fi echo $ac_n "checking for pthread_yield""... $ac_c" 1>&6 -echo "configure:24781: checking for pthread_yield" >&5 +echo "configure:24914: 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 24786 "configure" +#line 24919 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char pthread_yield(); below. */ @@ -24808,7 +24941,7 @@ pthread_yield(); ; return 0; } EOF -if { (eval echo configure:24812: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:24945: \"$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 @@ -24833,12 +24966,12 @@ fi echo $ac_n "checking for pthread_thr_sigsetmask""... $ac_c" 1>&6 -echo "configure:24837: checking for pthread_thr_sigsetmask" >&5 +echo "configure:24970: 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 24842 "configure" +#line 24975 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char pthread_thr_sigsetmask(); below. */ @@ -24864,7 +24997,7 @@ pthread_thr_sigsetmask(); ; return 0; } EOF -if { (eval echo configure:24868: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:25001: \"$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 @@ -24889,12 +25022,12 @@ fi echo $ac_n "checking for pthread_attr_setdetachstate""... $ac_c" 1>&6 -echo "configure:24893: checking for pthread_attr_setdetachstate" >&5 +echo "configure:25026: 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 24898 "configure" +#line 25031 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char pthread_attr_setdetachstate(); below. */ @@ -24920,7 +25053,7 @@ pthread_attr_setdetachstate(); ; return 0; } EOF -if { (eval echo configure:24924: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:25057: \"$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 @@ -24945,12 +25078,12 @@ fi echo $ac_n "checking for pthread_attr_setsched""... $ac_c" 1>&6 -echo "configure:24949: checking for pthread_attr_setsched" >&5 +echo "configure:25082: 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 24954 "configure" +#line 25087 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char pthread_attr_setsched(); below. */ @@ -24976,7 +25109,7 @@ pthread_attr_setsched(); ; return 0; } EOF -if { (eval echo configure:24980: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:25113: \"$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 @@ -24994,12 +25127,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:24998: checking for pthread_attr_setschedpolicy" >&5 +echo "configure:25131: 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 25003 "configure" +#line 25136 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char pthread_attr_setschedpolicy(); below. */ @@ -25025,7 +25158,7 @@ pthread_attr_setschedpolicy(); ; return 0; } EOF -if { (eval echo configure:25029: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:25162: \"$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 @@ -25052,12 +25185,12 @@ fi echo $ac_n "checking for pthread_attr_setscope""... $ac_c" 1>&6 -echo "configure:25056: checking for pthread_attr_setscope" >&5 +echo "configure:25189: 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 25061 "configure" +#line 25194 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char pthread_attr_setscope(); below. */ @@ -25083,7 +25216,7 @@ pthread_attr_setscope(); ; return 0; } EOF -if { (eval echo configure:25087: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:25220: \"$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 @@ -25108,12 +25241,12 @@ fi echo $ac_n "checking for pthread_mutexattr_setpshared""... $ac_c" 1>&6 -echo "configure:25112: checking for pthread_mutexattr_setpshared" >&5 +echo "configure:25245: 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 25117 "configure" +#line 25250 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char pthread_mutexattr_setpshared(); below. */ @@ -25139,7 +25272,7 @@ pthread_mutexattr_setpshared(); ; return 0; } EOF -if { (eval echo configure:25143: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:25276: \"$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 @@ -25164,12 +25297,12 @@ fi echo $ac_n "checking for pthread_mutexattr_create""... $ac_c" 1>&6 -echo "configure:25168: checking for pthread_mutexattr_create" >&5 +echo "configure:25301: 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 25173 "configure" +#line 25306 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char pthread_mutexattr_create(); below. */ @@ -25195,7 +25328,7 @@ pthread_mutexattr_create(); ; return 0; } EOF -if { (eval echo configure:25199: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:25332: \"$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 @@ -25214,12 +25347,12 @@ else echo "$ac_t""no" 1>&6 fi echo $ac_n "checking for pthread_mutexattr_delete""... $ac_c" 1>&6 -echo "configure:25218: checking for pthread_mutexattr_delete" >&5 +echo "configure:25351: 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 25223 "configure" +#line 25356 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char pthread_mutexattr_delete(); below. */ @@ -25245,7 +25378,7 @@ pthread_mutexattr_delete(); ; return 0; } EOF -if { (eval echo configure:25249: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:25382: \"$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 @@ -25264,12 +25397,12 @@ else echo "$ac_t""no" 1>&6 fi echo $ac_n "checking for pthread_condattr_delete""... $ac_c" 1>&6 -echo "configure:25268: checking for pthread_condattr_delete" >&5 +echo "configure:25401: 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 25273 "configure" +#line 25406 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char pthread_condattr_delete(); below. */ @@ -25295,7 +25428,7 @@ pthread_condattr_delete(); ; return 0; } EOF -if { (eval echo configure:25299: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:25432: \"$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 @@ -25314,12 +25447,12 @@ else echo "$ac_t""no" 1>&6 fi echo $ac_n "checking for pthread_condattr_create""... $ac_c" 1>&6 -echo "configure:25318: checking for pthread_condattr_create" >&5 +echo "configure:25451: 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 25323 "configure" +#line 25456 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char pthread_condattr_create(); below. */ @@ -25345,7 +25478,7 @@ pthread_condattr_create(); ; return 0; } EOF -if { (eval echo configure:25349: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:25482: \"$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 @@ -25364,12 +25497,12 @@ else echo "$ac_t""no" 1>&6 fi echo $ac_n "checking for pthread_setprio""... $ac_c" 1>&6 -echo "configure:25368: checking for pthread_setprio" >&5 +echo "configure:25501: 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 25373 "configure" +#line 25506 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char pthread_setprio(); below. */ @@ -25395,7 +25528,7 @@ pthread_setprio(); ; return 0; } EOF -if { (eval echo configure:25399: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:25532: \"$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 @@ -25414,12 +25547,12 @@ else echo "$ac_t""no" 1>&6 fi echo $ac_n "checking for pthread_getprio""... $ac_c" 1>&6 -echo "configure:25418: checking for pthread_getprio" >&5 +echo "configure:25551: 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 25423 "configure" +#line 25556 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char pthread_getprio(); below. */ @@ -25445,7 +25578,7 @@ pthread_getprio(); ; return 0; } EOF -if { (eval echo configure:25449: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:25582: \"$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 @@ -25464,12 +25597,12 @@ else echo "$ac_t""no" 1>&6 fi echo $ac_n "checking for pthread_setcancel""... $ac_c" 1>&6 -echo "configure:25468: checking for pthread_setcancel" >&5 +echo "configure:25601: 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 25473 "configure" +#line 25606 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char pthread_setcancel(); below. */ @@ -25495,7 +25628,7 @@ pthread_setcancel(); ; return 0; } EOF -if { (eval echo configure:25499: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:25632: \"$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 @@ -25514,12 +25647,12 @@ else echo "$ac_t""no" 1>&6 fi echo $ac_n "checking for pthread_setasynccancel""... $ac_c" 1>&6 -echo "configure:25518: checking for pthread_setasynccancel" >&5 +echo "configure:25651: 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 25523 "configure" +#line 25656 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char pthread_setasynccancel(); below. */ @@ -25545,7 +25678,7 @@ pthread_setasynccancel(); ; return 0; } EOF -if { (eval echo configure:25549: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:25682: \"$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 @@ -25564,12 +25697,12 @@ else echo "$ac_t""no" 1>&6 fi echo $ac_n "checking for pthread_kill""... $ac_c" 1>&6 -echo "configure:25568: checking for pthread_kill" >&5 +echo "configure:25701: 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 25573 "configure" +#line 25706 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char pthread_kill(); below. */ @@ -25595,7 +25728,7 @@ pthread_kill(); ; return 0; } EOF -if { (eval echo configure:25599: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:25732: \"$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 @@ -25614,12 +25747,12 @@ else echo "$ac_t""no" 1>&6 fi echo $ac_n "checking for pthread_attr_setprio""... $ac_c" 1>&6 -echo "configure:25618: checking for pthread_attr_setprio" >&5 +echo "configure:25751: 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 25623 "configure" +#line 25756 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char pthread_attr_setprio(); below. */ @@ -25645,7 +25778,7 @@ pthread_attr_setprio(); ; return 0; } EOF -if { (eval echo configure:25649: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:25782: \"$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 @@ -25664,12 +25797,12 @@ else echo "$ac_t""no" 1>&6 fi echo $ac_n "checking for pthread_attr_getprio""... $ac_c" 1>&6 -echo "configure:25668: checking for pthread_attr_getprio" >&5 +echo "configure:25801: 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 25673 "configure" +#line 25806 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char pthread_attr_getprio(); below. */ @@ -25695,7 +25828,7 @@ pthread_attr_getprio(); ; 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:25832: \"$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 @@ -25714,12 +25847,12 @@ else echo "$ac_t""no" 1>&6 fi echo $ac_n "checking for pthread_setintr""... $ac_c" 1>&6 -echo "configure:25718: checking for pthread_setintr" >&5 +echo "configure:25851: 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 25723 "configure" +#line 25856 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char pthread_setintr(); below. */ @@ -25745,7 +25878,7 @@ pthread_setintr(); ; return 0; } EOF -if { (eval echo configure:25749: \"$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_pthread_setintr=yes" else @@ -25764,12 +25897,12 @@ else echo "$ac_t""no" 1>&6 fi echo $ac_n "checking for pthread_setintrtype""... $ac_c" 1>&6 -echo "configure:25768: checking for pthread_setintrtype" >&5 +echo "configure:25901: 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 25773 "configure" +#line 25906 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char pthread_setintrtype(); below. */ @@ -25795,7 +25928,7 @@ pthread_setintrtype(); ; return 0; } EOF -if { (eval echo configure:25799: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:25932: \"$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 @@ -25814,12 +25947,12 @@ else echo "$ac_t""no" 1>&6 fi echo $ac_n "checking for pthread_mutexattr_init""... $ac_c" 1>&6 -echo "configure:25818: checking for pthread_mutexattr_init" >&5 +echo "configure:25951: 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 25823 "configure" +#line 25956 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char pthread_mutexattr_init(); below. */ @@ -25845,7 +25978,7 @@ pthread_mutexattr_init(); ; return 0; } EOF -if { (eval echo configure:25849: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:25982: \"$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 @@ -25864,12 +25997,12 @@ else echo "$ac_t""no" 1>&6 fi echo $ac_n "checking for pthread_mutexattr_destroy""... $ac_c" 1>&6 -echo "configure:25868: checking for pthread_mutexattr_destroy" >&5 +echo "configure:26001: 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 25873 "configure" +#line 26006 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char pthread_mutexattr_destroy(); below. */ @@ -25895,7 +26028,7 @@ pthread_mutexattr_destroy(); ; return 0; } EOF -if { (eval echo configure:25899: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:26032: \"$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 @@ -25914,12 +26047,12 @@ else echo "$ac_t""no" 1>&6 fi echo $ac_n "checking for pthread_condattr_init""... $ac_c" 1>&6 -echo "configure:25918: checking for pthread_condattr_init" >&5 +echo "configure:26051: 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 25923 "configure" +#line 26056 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char pthread_condattr_init(); below. */ @@ -25945,7 +26078,7 @@ pthread_condattr_init(); ; return 0; } EOF -if { (eval echo configure:25949: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:26082: \"$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 @@ -25964,12 +26097,12 @@ else echo "$ac_t""no" 1>&6 fi echo $ac_n "checking for pthread_condattr_destroy""... $ac_c" 1>&6 -echo "configure:25968: checking for pthread_condattr_destroy" >&5 +echo "configure:26101: 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 25973 "configure" +#line 26106 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char pthread_condattr_destroy(); below. */ @@ -25995,7 +26128,7 @@ pthread_condattr_destroy(); ; return 0; } EOF -if { (eval echo configure:25999: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:26132: \"$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 @@ -26014,12 +26147,12 @@ else echo "$ac_t""no" 1>&6 fi echo $ac_n "checking for pthread_setschedparam""... $ac_c" 1>&6 -echo "configure:26018: checking for pthread_setschedparam" >&5 +echo "configure:26151: 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 26023 "configure" +#line 26156 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char pthread_setschedparam(); below. */ @@ -26045,7 +26178,7 @@ pthread_setschedparam(); ; return 0; } EOF -if { (eval echo configure:26049: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:26182: \"$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 @@ -26064,12 +26197,12 @@ else echo "$ac_t""no" 1>&6 fi echo $ac_n "checking for pthread_getschedparam""... $ac_c" 1>&6 -echo "configure:26068: checking for pthread_getschedparam" >&5 +echo "configure:26201: 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 26073 "configure" +#line 26206 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char pthread_getschedparam(); below. */ @@ -26095,7 +26228,7 @@ pthread_getschedparam(); ; return 0; } EOF -if { (eval echo configure:26099: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:26232: \"$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 @@ -26114,12 +26247,12 @@ else echo "$ac_t""no" 1>&6 fi echo $ac_n "checking for pthread_setcancelstate""... $ac_c" 1>&6 -echo "configure:26118: checking for pthread_setcancelstate" >&5 +echo "configure:26251: 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 26123 "configure" +#line 26256 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char pthread_setcancelstate(); below. */ @@ -26145,7 +26278,7 @@ pthread_setcancelstate(); ; return 0; } EOF -if { (eval echo configure:26149: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:26282: \"$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 @@ -26164,12 +26297,12 @@ else echo "$ac_t""no" 1>&6 fi echo $ac_n "checking for pthread_setcanceltype""... $ac_c" 1>&6 -echo "configure:26168: checking for pthread_setcanceltype" >&5 +echo "configure:26301: 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 26173 "configure" +#line 26306 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char pthread_setcanceltype(); below. */ @@ -26195,7 +26328,7 @@ pthread_setcanceltype(); ; return 0; } EOF -if { (eval echo configure:26199: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:26332: \"$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 @@ -26215,22 +26348,19 @@ else fi - - - - echo $ac_n "checking for struct pthread_rwlock_t in ""... $ac_c" 1>&6 -echo "configure:26223: checking for struct pthread_rwlock_t in " >&5 + echo $ac_n "checking for struct pthread_rwlock_t""... $ac_c" 1>&6 +echo "configure:26353: checking for struct pthread_rwlock_t" >&5 if eval "test \"`echo '$''{'ace_cv_struct_pthread_rwlock_t'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else - + cat > conftest.$ac_ext <<EOF -#line 26231 "configure" +#line 26361 "configure" #include "confdefs.h" -#include <> +#include <pthread.h> int main() { @@ -26238,7 +26368,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:26242: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:26372: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* @@ -26251,10 +26381,10 @@ else rm -rf conftest* cat > conftest.$ac_ext <<EOF -#line 26255 "configure" +#line 26385 "configure" #include "confdefs.h" -#include <> +#include <pthread.h> int main() { @@ -26262,7 +26392,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:26266: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:26396: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* @@ -26275,7 +26405,66 @@ else rm -rf conftest* - ace_cv_struct_pthread_rwlock_t=no + + + cat > conftest.$ac_ext <<EOF +#line 26412 "configure" +#include "confdefs.h" + +#include <sys/types.h> + +int main() { + + struct pthread_rwlock_t ace_pthread_rwlock_t; + +; return 0; } +EOF +if { (eval echo configure:26423: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then + rm -rf conftest* + + + ace_cv_struct_pthread_rwlock_t=yes + + +else + echo "configure: failed program was:" >&5 + cat conftest.$ac_ext >&5 + rm -rf conftest* + + cat > conftest.$ac_ext <<EOF +#line 26436 "configure" +#include "confdefs.h" + +#include <sys/types.h> + +int main() { + + pthread_rwlock_t ace_pthread_rwlock_t; + +; return 0; } +EOF +if { (eval echo configure:26447: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then + rm -rf conftest* + + + ace_cv_struct_pthread_rwlock_t=yes + + +else + echo "configure: failed program was:" >&5 + cat conftest.$ac_ext >&5 + rm -rf conftest* + + + ace_cv_struct_pthread_rwlock_t=no + + +fi +rm -f conftest* + +fi +rm -f conftest* + fi @@ -26296,23 +26485,21 @@ fi fi - - - echo $ac_n "checking for struct pthread_rwlockattr_t in ""... $ac_c" 1>&6 -echo "configure:26305: checking for struct pthread_rwlockattr_t in " >&5 + echo $ac_n "checking for struct pthread_rwlockattr_t""... $ac_c" 1>&6 +echo "configure:26492: checking for struct pthread_rwlockattr_t" >&5 if eval "test \"`echo '$''{'ace_cv_struct_pthread_rwlockattr_t'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else - + cat > conftest.$ac_ext <<EOF -#line 26313 "configure" +#line 26500 "configure" #include "confdefs.h" -#include <> +#include <pthread.h> int main() { @@ -26320,7 +26507,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:26511: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* @@ -26333,10 +26520,10 @@ else rm -rf conftest* cat > conftest.$ac_ext <<EOF -#line 26337 "configure" +#line 26524 "configure" #include "confdefs.h" -#include <> +#include <pthread.h> int main() { @@ -26344,7 +26531,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:26348: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:26535: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* @@ -26357,7 +26544,66 @@ else rm -rf conftest* - ace_cv_struct_pthread_rwlockattr_t=no + + + cat > conftest.$ac_ext <<EOF +#line 26551 "configure" +#include "confdefs.h" + +#include <sys/types.h> + +int main() { + + struct pthread_rwlockattr_t ace_pthread_rwlockattr_t; + +; return 0; } +EOF +if { (eval echo configure:26562: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then + rm -rf conftest* + + + ace_cv_struct_pthread_rwlockattr_t=yes + + +else + echo "configure: failed program was:" >&5 + cat conftest.$ac_ext >&5 + rm -rf conftest* + + cat > conftest.$ac_ext <<EOF +#line 26575 "configure" +#include "confdefs.h" + +#include <sys/types.h> + +int main() { + + pthread_rwlockattr_t ace_pthread_rwlockattr_t; + +; return 0; } +EOF +if { (eval echo configure:26586: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then + rm -rf conftest* + + + ace_cv_struct_pthread_rwlockattr_t=yes + + +else + echo "configure: failed program was:" >&5 + cat conftest.$ac_ext >&5 + rm -rf conftest* + + + ace_cv_struct_pthread_rwlockattr_t=no + + +fi +rm -f conftest* + +fi +rm -f conftest* + fi @@ -26378,13 +26624,14 @@ fi fi + echo $ac_n "checking for pthread_continue""... $ac_c" 1>&6 -echo "configure:26383: checking for pthread_continue" >&5 +echo "configure:26630: checking for pthread_continue" >&5 if eval "test \"`echo '$''{'ac_cv_func_pthread_continue'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 26388 "configure" +#line 26635 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char pthread_continue(); below. */ @@ -26410,7 +26657,7 @@ pthread_continue(); ; return 0; } EOF -if { (eval echo configure:26414: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:26661: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_pthread_continue=yes" else @@ -26429,12 +26676,12 @@ else echo "$ac_t""no" 1>&6 fi echo $ac_n "checking for pthread_suspend""... $ac_c" 1>&6 -echo "configure:26433: checking for pthread_suspend" >&5 +echo "configure:26680: checking for pthread_suspend" >&5 if eval "test \"`echo '$''{'ac_cv_func_pthread_suspend'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 26438 "configure" +#line 26685 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char pthread_suspend(); below. */ @@ -26460,7 +26707,7 @@ pthread_suspend(); ; return 0; } EOF -if { (eval echo configure:26464: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:26711: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_pthread_suspend=yes" else @@ -26479,12 +26726,12 @@ else echo "$ac_t""no" 1>&6 fi echo $ac_n "checking for pthread_rwlock_init""... $ac_c" 1>&6 -echo "configure:26483: checking for pthread_rwlock_init" >&5 +echo "configure:26730: checking for pthread_rwlock_init" >&5 if eval "test \"`echo '$''{'ac_cv_func_pthread_rwlock_init'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 26488 "configure" +#line 26735 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char pthread_rwlock_init(); below. */ @@ -26510,7 +26757,7 @@ pthread_rwlock_init(); ; return 0; } EOF -if { (eval echo configure:26514: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:26761: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_pthread_rwlock_init=yes" else @@ -26529,12 +26776,12 @@ else echo "$ac_t""no" 1>&6 fi echo $ac_n "checking for pthread_rwlock_destroy""... $ac_c" 1>&6 -echo "configure:26533: checking for pthread_rwlock_destroy" >&5 +echo "configure:26780: checking for pthread_rwlock_destroy" >&5 if eval "test \"`echo '$''{'ac_cv_func_pthread_rwlock_destroy'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 26538 "configure" +#line 26785 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char pthread_rwlock_destroy(); below. */ @@ -26560,7 +26807,7 @@ pthread_rwlock_destroy(); ; return 0; } EOF -if { (eval echo configure:26564: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:26811: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_pthread_rwlock_destroy=yes" else @@ -26579,12 +26826,12 @@ else echo "$ac_t""no" 1>&6 fi echo $ac_n "checking for pthread_rwlock_rdlock""... $ac_c" 1>&6 -echo "configure:26583: checking for pthread_rwlock_rdlock" >&5 +echo "configure:26830: checking for pthread_rwlock_rdlock" >&5 if eval "test \"`echo '$''{'ac_cv_func_pthread_rwlock_rdlock'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 26588 "configure" +#line 26835 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char pthread_rwlock_rdlock(); below. */ @@ -26610,7 +26857,7 @@ pthread_rwlock_rdlock(); ; return 0; } EOF -if { (eval echo configure:26614: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:26861: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_pthread_rwlock_rdlock=yes" else @@ -26629,12 +26876,12 @@ else echo "$ac_t""no" 1>&6 fi echo $ac_n "checking for pthread_rwlock_wrlock""... $ac_c" 1>&6 -echo "configure:26633: checking for pthread_rwlock_wrlock" >&5 +echo "configure:26880: checking for pthread_rwlock_wrlock" >&5 if eval "test \"`echo '$''{'ac_cv_func_pthread_rwlock_wrlock'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 26638 "configure" +#line 26885 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char pthread_rwlock_wrlock(); below. */ @@ -26660,7 +26907,7 @@ pthread_rwlock_wrlock(); ; return 0; } EOF -if { (eval echo configure:26664: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:26911: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_pthread_rwlock_wrlock=yes" else @@ -26679,12 +26926,12 @@ else echo "$ac_t""no" 1>&6 fi echo $ac_n "checking for pthread_rwlock_unlock""... $ac_c" 1>&6 -echo "configure:26683: checking for pthread_rwlock_unlock" >&5 +echo "configure:26930: checking for pthread_rwlock_unlock" >&5 if eval "test \"`echo '$''{'ac_cv_func_pthread_rwlock_unlock'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 26688 "configure" +#line 26935 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char pthread_rwlock_unlock(); below. */ @@ -26710,7 +26957,7 @@ pthread_rwlock_unlock(); ; return 0; } EOF -if { (eval echo configure:26714: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:26961: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_pthread_rwlock_unlock=yes" else @@ -26729,12 +26976,12 @@ else echo "$ac_t""no" 1>&6 fi echo $ac_n "checking for pthread_rwlock_tryrdlock""... $ac_c" 1>&6 -echo "configure:26733: checking for pthread_rwlock_tryrdlock" >&5 +echo "configure:26980: checking for pthread_rwlock_tryrdlock" >&5 if eval "test \"`echo '$''{'ac_cv_func_pthread_rwlock_tryrdlock'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 26738 "configure" +#line 26985 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char pthread_rwlock_tryrdlock(); below. */ @@ -26760,7 +27007,7 @@ pthread_rwlock_tryrdlock(); ; return 0; } EOF -if { (eval echo configure:26764: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:27011: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_pthread_rwlock_tryrdlock=yes" else @@ -26779,12 +27026,12 @@ else echo "$ac_t""no" 1>&6 fi echo $ac_n "checking for pthread_rwlock_trywrlock""... $ac_c" 1>&6 -echo "configure:26783: checking for pthread_rwlock_trywrlock" >&5 +echo "configure:27030: checking for pthread_rwlock_trywrlock" >&5 if eval "test \"`echo '$''{'ac_cv_func_pthread_rwlock_trywrlock'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 26788 "configure" +#line 27035 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char pthread_rwlock_trywrlock(); below. */ @@ -26810,7 +27057,7 @@ pthread_rwlock_trywrlock(); ; return 0; } EOF -if { (eval echo configure:26814: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:27061: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_pthread_rwlock_trywrlock=yes" else @@ -26829,12 +27076,12 @@ else echo "$ac_t""no" 1>&6 fi echo $ac_n "checking for pthread_rwlockattr_init""... $ac_c" 1>&6 -echo "configure:26833: checking for pthread_rwlockattr_init" >&5 +echo "configure:27080: checking for pthread_rwlockattr_init" >&5 if eval "test \"`echo '$''{'ac_cv_func_pthread_rwlockattr_init'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 26838 "configure" +#line 27085 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char pthread_rwlockattr_init(); below. */ @@ -26860,7 +27107,7 @@ pthread_rwlockattr_init(); ; return 0; } EOF -if { (eval echo configure:26864: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:27111: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_pthread_rwlockattr_init=yes" else @@ -26879,12 +27126,12 @@ else echo "$ac_t""no" 1>&6 fi echo $ac_n "checking for pthread_rwlockattr_destroy""... $ac_c" 1>&6 -echo "configure:26883: checking for pthread_rwlockattr_destroy" >&5 +echo "configure:27130: checking for pthread_rwlockattr_destroy" >&5 if eval "test \"`echo '$''{'ac_cv_func_pthread_rwlockattr_destroy'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 26888 "configure" +#line 27135 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char pthread_rwlockattr_destroy(); below. */ @@ -26910,7 +27157,7 @@ pthread_rwlockattr_destroy(); ; return 0; } EOF -if { (eval echo configure:26914: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:27161: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_pthread_rwlockattr_destroy=yes" else @@ -26929,12 +27176,12 @@ else echo "$ac_t""no" 1>&6 fi echo $ac_n "checking for pthread_rwlockattr_setpshared""... $ac_c" 1>&6 -echo "configure:26933: checking for pthread_rwlockattr_setpshared" >&5 +echo "configure:27180: checking for pthread_rwlockattr_setpshared" >&5 if eval "test \"`echo '$''{'ac_cv_func_pthread_rwlockattr_setpshared'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 26938 "configure" +#line 27185 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char pthread_rwlockattr_setpshared(); below. */ @@ -26960,7 +27207,7 @@ pthread_rwlockattr_setpshared(); ; return 0; } EOF -if { (eval echo configure:26964: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:27211: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then rm -rf conftest* eval "ac_cv_func_pthread_rwlockattr_setpshared=yes" else @@ -27002,14 +27249,14 @@ EOF cat > conftest.$ac_ext <<EOF -#line 27006 "configure" +#line 27253 "configure" #include "confdefs.h" #include <pthread.h> EOF ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" -{ (eval echo configure:27013: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } +{ (eval echo configure:27260: \"$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* @@ -27045,19 +27292,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:27049: checking for real pthread_self from pthread.h" >&5 +echo "configure:27296: 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:27056: checking for $ace_real_function" >&5 +echo "configure:27303: 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 27061 "configure" +#line 27308 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ace_real_function(); below. */ @@ -27083,7 +27330,7 @@ $ace_real_function(); ; return 0; } EOF -if { (eval echo configure:27087: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:27334: \"$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 @@ -27102,12 +27349,12 @@ else echo "$ac_t""no" 1>&6 echo $ac_n "checking for thread_self""... $ac_c" 1>&6 -echo "configure:27106: checking for thread_self" >&5 +echo "configure:27353: 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 27111 "configure" +#line 27358 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char thread_self(); below. */ @@ -27133,7 +27380,7 @@ thread_self(); ; return 0; } EOF -if { (eval echo configure:27137: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:27384: \"$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 @@ -27164,13 +27411,13 @@ fi echo $ac_n "checking for PTHREAD_PROCESS_* enumeration in pthread.h""... $ac_c" 1>&6 -echo "configure:27168: checking for PTHREAD_PROCESS_* enumeration in pthread.h" >&5 +echo "configure:27415: 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 27174 "configure" +#line 27421 "configure" #include "confdefs.h" #include <pthread.h> @@ -27183,7 +27430,7 @@ int foo = PTHREAD_PROCESS_SHARED; ; return 0; } EOF -if { (eval echo configure:27187: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:27434: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_pthread_process_enum=yes @@ -27223,13 +27470,13 @@ EOF echo $ac_n "checking if pthread_create requires an extern \"C\" start routine""... $ac_c" 1>&6 -echo "configure:27227: checking if pthread_create requires an extern \"C\" start routine" >&5 +echo "configure:27474: checking if pthread_create requires an extern \"C\" start routine" >&5 if eval "test \"`echo '$''{'ace_cv_lib_pthread_c_func'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 27233 "configure" +#line 27480 "configure" #include "confdefs.h" #include <pthread.h> @@ -27242,7 +27489,7 @@ pthread_create(0, 0, ace_start_routine, 0); ; return 0; } EOF -if { (eval echo configure:27246: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:27493: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_pthread_c_func=no @@ -27253,7 +27500,7 @@ else rm -rf conftest* cat > conftest.$ac_ext <<EOF -#line 27257 "configure" +#line 27504 "configure" #include "confdefs.h" #include <pthread.h> @@ -27266,7 +27513,7 @@ pthread_create(0, 0, ace_start_routine, 0); ; return 0; } EOF -if { (eval echo configure:27270: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:27517: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_pthread_c_func=yes @@ -27306,7 +27553,7 @@ EOF echo $ac_n "checking if pthread_key_create has std arg thread destructor""... $ac_c" 1>&6 -echo "configure:27310: checking if pthread_key_create has std arg thread destructor" >&5 +echo "configure:27557: checking if pthread_key_create has std arg thread destructor" >&5 if eval "test \"`echo '$''{'ace_cv_lib_pthread_stdarg_dest'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -27317,7 +27564,7 @@ else ace_pthread_key_create=pthread_keycreate fi cat > conftest.$ac_ext <<EOF -#line 27321 "configure" +#line 27568 "configure" #include "confdefs.h" #include <pthread.h> @@ -27330,7 +27577,7 @@ ${ace_pthread_key_create}(0, ace_destructor); ; return 0; } EOF -if { (eval echo configure:27334: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:27581: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_pthread_stdarg_dest=no @@ -27341,7 +27588,7 @@ else rm -rf conftest* cat > conftest.$ac_ext <<EOF -#line 27345 "configure" +#line 27592 "configure" #include "confdefs.h" #include <pthread.h> @@ -27354,7 +27601,7 @@ ${ace_pthread_key_create}(0, ace_destructor); ; return 0; } EOF -if { (eval echo configure:27358: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:27605: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_pthread_stdarg_dest=yes @@ -27397,7 +27644,7 @@ EOF echo $ac_n "checking if pthread_key_create requires an extern \"C\" start routine""... $ac_c" 1>&6 -echo "configure:27401: checking if pthread_key_create requires an extern \"C\" start routine" >&5 +echo "configure:27648: checking if pthread_key_create requires an extern \"C\" start routine" >&5 if eval "test \"`echo '$''{'ace_cv_lib_pthread_c_dest'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -27408,7 +27655,7 @@ else ace_pthread_key_create=pthread_keycreate fi cat > conftest.$ac_ext <<EOF -#line 27412 "configure" +#line 27659 "configure" #include "confdefs.h" #include <pthread.h> @@ -27421,7 +27668,7 @@ ${ace_pthread_key_create}(0, ace_destructor); ; return 0; } EOF -if { (eval echo configure:27425: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:27672: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_pthread_c_dest=no @@ -27432,7 +27679,7 @@ else rm -rf conftest* cat > conftest.$ac_ext <<EOF -#line 27436 "configure" +#line 27683 "configure" #include "confdefs.h" #include <pthread.h> @@ -27445,7 +27692,7 @@ ${ace_pthread_key_create}(0, ace_destructor); ; return 0; } EOF -if { (eval echo configure:27449: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:27696: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_pthread_c_dest=yes @@ -27484,14 +27731,14 @@ EOF CXXFLAGS="$ace_pre_warning_CXXFLAGS" echo $ac_n "checking for minimum thread priority""... $ac_c" 1>&6 -echo "configure:27488: checking for minimum thread priority" >&5 +echo "configure:27735: 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 27495 "configure" +#line 27742 "configure" #include "confdefs.h" #include <pthread.h> EOF @@ -27503,7 +27750,7 @@ fi rm -f conftest* cat > conftest.$ac_ext <<EOF -#line 27507 "configure" +#line 27754 "configure" #include "confdefs.h" #include <pthread.h> EOF @@ -27524,7 +27771,7 @@ EOF echo $ac_n "checking for maximum thread priority""... $ac_c" 1>&6 -echo "configure:27528: checking for maximum thread priority" >&5 +echo "configure:27775: 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 @@ -27541,7 +27788,7 @@ else *) esac cat > conftest.$ac_ext <<EOF -#line 27545 "configure" +#line 27792 "configure" #include "confdefs.h" #include <pthread.h> EOF @@ -27553,7 +27800,7 @@ fi rm -f conftest* cat > conftest.$ac_ext <<EOF -#line 27557 "configure" +#line 27804 "configure" #include "confdefs.h" #include <pthread.h> EOF @@ -27576,12 +27823,12 @@ EOF fi if test "$ace_has_sthreads" = yes; then echo $ac_n "checking for thr_keycreate""... $ac_c" 1>&6 -echo "configure:27580: checking for thr_keycreate" >&5 +echo "configure:27827: 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 27585 "configure" +#line 27832 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char thr_keycreate(); below. */ @@ -27607,7 +27854,7 @@ thr_keycreate(); ; return 0; } EOF -if { (eval echo configure:27611: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:27858: \"$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 @@ -27635,12 +27882,12 @@ fi echo $ac_n "checking for thr_yield""... $ac_c" 1>&6 -echo "configure:27639: checking for thr_yield" >&5 +echo "configure:27886: 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 27644 "configure" +#line 27891 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char thr_yield(); below. */ @@ -27666,7 +27913,7 @@ thr_yield(); ; return 0; } EOF -if { (eval echo configure:27670: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:27917: \"$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 @@ -27690,12 +27937,12 @@ fi echo $ac_n "checking for thr_keydelete""... $ac_c" 1>&6 -echo "configure:27694: checking for thr_keydelete" >&5 +echo "configure:27941: 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 27699 "configure" +#line 27946 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char thr_keydelete(); below. */ @@ -27721,7 +27968,7 @@ thr_keydelete(); ; return 0; } EOF -if { (eval echo configure:27725: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:27972: \"$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 @@ -27745,12 +27992,12 @@ fi echo $ac_n "checking for thr_min_stack""... $ac_c" 1>&6 -echo "configure:27749: checking for thr_min_stack" >&5 +echo "configure:27996: 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 27754 "configure" +#line 28001 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char thr_min_stack(); below. */ @@ -27776,7 +28023,7 @@ thr_min_stack(); ; return 0; } EOF -if { (eval echo configure:27780: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:28027: \"$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 @@ -27795,12 +28042,12 @@ else echo "$ac_t""no" 1>&6 echo $ac_n "checking for thr_minstack""... $ac_c" 1>&6 -echo "configure:27799: checking for thr_minstack" >&5 +echo "configure:28046: 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 27804 "configure" +#line 28051 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char thr_minstack(); below. */ @@ -27826,7 +28073,7 @@ thr_minstack(); ; return 0; } EOF -if { (eval echo configure:27830: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:28077: \"$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 @@ -27855,12 +28102,12 @@ fi fi fi echo $ac_n "checking for sigwait""... $ac_c" 1>&6 -echo "configure:27859: checking for sigwait" >&5 +echo "configure:28106: 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 27864 "configure" +#line 28111 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char sigwait(); below. */ @@ -27886,7 +28133,7 @@ sigwait(); ; return 0; } EOF -if { (eval echo configure:27890: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:28137: \"$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 @@ -27912,12 +28159,12 @@ fi if test "$ace_user_enable_reentrant_funcs" = yes; then echo $ac_n "checking for rand_r""... $ac_c" 1>&6 -echo "configure:27916: checking for rand_r" >&5 +echo "configure:28163: 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 27921 "configure" +#line 28168 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char rand_r(); below. */ @@ -27943,7 +28190,7 @@ rand_r(); ; return 0; } EOF -if { (eval echo configure:27947: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:28194: \"$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 @@ -27964,12 +28211,12 @@ fi echo $ac_n "checking for strtok_r""... $ac_c" 1>&6 -echo "configure:27968: checking for strtok_r" >&5 +echo "configure:28215: 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 27973 "configure" +#line 28220 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char strtok_r(); below. */ @@ -27995,7 +28242,7 @@ strtok_r(); ; return 0; } EOF -if { (eval echo configure:27999: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:28246: \"$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 @@ -28012,7 +28259,7 @@ if eval "test \"`echo '$ac_cv_func_'strtok_r`\" = yes"; then echo $ac_n "checking for strtok_r prototype""... $ac_c" 1>&6 -echo "configure:28016: checking for strtok_r prototype" >&5 +echo "configure:28263: checking for strtok_r prototype" >&5 if eval "test \"`echo '$''{'ace_cv_lib_has_strtok_r_prototype'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -28021,7 +28268,7 @@ else ace_no_posix="-U_POSIX_SOURCE" CPPFLAGS="$CPPFLAGS $ace_no_posix" cat > conftest.$ac_ext <<EOF -#line 28025 "configure" +#line 28272 "configure" #include "confdefs.h" #include <string.h> EOF @@ -28063,12 +28310,12 @@ fi echo $ac_n "checking for getpwnam_r""... $ac_c" 1>&6 -echo "configure:28067: checking for getpwnam_r" >&5 +echo "configure:28314: 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 28072 "configure" +#line 28319 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char getpwnam_r(); below. */ @@ -28094,7 +28341,7 @@ getpwnam_r(); ; return 0; } EOF -if { (eval echo configure:28098: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:28345: \"$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 @@ -28119,12 +28366,12 @@ fi echo $ac_n "checking for ctime_r""... $ac_c" 1>&6 -echo "configure:28123: checking for ctime_r" >&5 +echo "configure:28370: 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 28128 "configure" +#line 28375 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char ctime_r(); below. */ @@ -28150,7 +28397,7 @@ ctime_r(); ; return 0; } EOF -if { (eval echo configure:28154: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:28401: \"$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 @@ -28171,12 +28418,12 @@ fi echo $ac_n "checking for localtime_r""... $ac_c" 1>&6 -echo "configure:28175: checking for localtime_r" >&5 +echo "configure:28422: 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 28180 "configure" +#line 28427 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char localtime_r(); below. */ @@ -28202,7 +28449,7 @@ localtime_r(); ; return 0; } EOF -if { (eval echo configure:28206: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:28453: \"$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 @@ -28223,12 +28470,12 @@ fi echo $ac_n "checking for gmtime_r""... $ac_c" 1>&6 -echo "configure:28227: checking for gmtime_r" >&5 +echo "configure:28474: 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 28232 "configure" +#line 28479 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char gmtime_r(); below. */ @@ -28254,7 +28501,7 @@ gmtime_r(); ; return 0; } EOF -if { (eval echo configure:28258: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:28505: \"$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 @@ -28275,12 +28522,12 @@ fi echo $ac_n "checking for asctime_r""... $ac_c" 1>&6 -echo "configure:28279: checking for asctime_r" >&5 +echo "configure:28526: 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 28284 "configure" +#line 28531 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char asctime_r(); below. */ @@ -28306,7 +28553,7 @@ asctime_r(); ; return 0; } EOF -if { (eval echo configure:28310: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:28557: \"$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 @@ -28327,12 +28574,12 @@ fi echo $ac_n "checking for getprotobyname_r""... $ac_c" 1>&6 -echo "configure:28331: checking for getprotobyname_r" >&5 +echo "configure:28578: 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 28336 "configure" +#line 28583 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char getprotobyname_r(); below. */ @@ -28358,7 +28605,7 @@ getprotobyname_r(); ; return 0; } EOF -if { (eval echo configure:28362: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:28609: \"$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 @@ -28379,12 +28626,12 @@ fi echo $ac_n "checking for getprotobynumber_r""... $ac_c" 1>&6 -echo "configure:28383: checking for getprotobynumber_r" >&5 +echo "configure:28630: 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 28388 "configure" +#line 28635 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char getprotobynumber_r(); below. */ @@ -28410,7 +28657,7 @@ getprotobynumber_r(); ; return 0; } EOF -if { (eval echo configure:28414: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:28661: \"$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 @@ -28431,12 +28678,12 @@ fi echo $ac_n "checking for gethostbyaddr_r""... $ac_c" 1>&6 -echo "configure:28435: checking for gethostbyaddr_r" >&5 +echo "configure:28682: 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 28440 "configure" +#line 28687 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char gethostbyaddr_r(); below. */ @@ -28462,7 +28709,7 @@ gethostbyaddr_r(); ; return 0; } EOF -if { (eval echo configure:28466: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:28713: \"$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 @@ -28483,12 +28730,12 @@ fi echo $ac_n "checking for gethostbyname_r""... $ac_c" 1>&6 -echo "configure:28487: checking for gethostbyname_r" >&5 +echo "configure:28734: 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 28492 "configure" +#line 28739 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char gethostbyname_r(); below. */ @@ -28514,7 +28761,7 @@ gethostbyname_r(); ; return 0; } EOF -if { (eval echo configure:28518: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:28765: \"$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 @@ -28535,12 +28782,12 @@ fi echo $ac_n "checking for getservbyname_r""... $ac_c" 1>&6 -echo "configure:28539: checking for getservbyname_r" >&5 +echo "configure:28786: 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 28544 "configure" +#line 28791 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char getservbyname_r(); below. */ @@ -28566,7 +28813,7 @@ getservbyname_r(); ; return 0; } EOF -if { (eval echo configure:28570: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:28817: \"$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 @@ -28587,12 +28834,12 @@ fi fi echo $ac_n "checking for readdir_r""... $ac_c" 1>&6 -echo "configure:28591: checking for readdir_r" >&5 +echo "configure:28838: 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 28596 "configure" +#line 28843 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char readdir_r(); below. */ @@ -28618,7 +28865,7 @@ readdir_r(); ; return 0; } EOF -if { (eval echo configure:28622: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:28869: \"$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 @@ -28643,12 +28890,12 @@ fi echo $ac_n "checking for seekdir""... $ac_c" 1>&6 -echo "configure:28647: checking for seekdir" >&5 +echo "configure:28894: 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 28652 "configure" +#line 28899 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char seekdir(); below. */ @@ -28674,7 +28921,7 @@ seekdir(); ; return 0; } EOF -if { (eval echo configure:28678: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:28925: \"$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 @@ -28699,12 +28946,12 @@ fi echo $ac_n "checking for telldir""... $ac_c" 1>&6 -echo "configure:28703: checking for telldir" >&5 +echo "configure:28950: 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 28708 "configure" +#line 28955 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char telldir(); below. */ @@ -28730,7 +28977,7 @@ telldir(); ; return 0; } EOF -if { (eval echo configure:28734: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then +if { (eval echo configure:28981: \"$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 @@ -28765,13 +29012,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:28769: checking if dlopen takes a char *" >&5 +echo "configure:29016: 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 28775 "configure" +#line 29022 "configure" #include "confdefs.h" #include <dlfcn.h> @@ -28784,7 +29031,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:28788: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:29035: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_charptr_dl=no @@ -28795,7 +29042,7 @@ else rm -rf conftest* cat > conftest.$ac_ext <<EOF -#line 28799 "configure" +#line 29046 "configure" #include "confdefs.h" #include <dlfcn.h> @@ -28808,7 +29055,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:28812: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:29059: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_charptr_dl=yes @@ -28853,13 +29100,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:28857: checking \"getby\" functions take a non-const char *" >&5 +echo "configure:29104: 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 28863 "configure" +#line 29110 "configure" #include "confdefs.h" #include <sys/socket.h> @@ -28875,7 +29122,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:28879: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:29126: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_nonconst_getby=yes @@ -28911,7 +29158,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:28915: checking if new throws bad_alloc exception on failure" >&5 +echo "configure:29162: 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 @@ -28922,7 +29169,7 @@ else else cat > conftest.$ac_ext <<EOF -#line 28926 "configure" +#line 29173 "configure" #include "confdefs.h" #ifdef __cplusplus extern "C" void exit(int); @@ -28959,7 +29206,7 @@ extern "C" void exit(int); } EOF -if { (eval echo configure:28963: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:29210: \"$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 @@ -28994,7 +29241,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:28998: checking if new throws xalloc exception on failure" >&5 +echo "configure:29245: 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 @@ -29005,7 +29252,7 @@ else else cat > conftest.$ac_ext <<EOF -#line 29009 "configure" +#line 29256 "configure" #include "confdefs.h" #ifdef __cplusplus extern "C" void exit(int); @@ -29042,7 +29289,7 @@ extern "C" void exit(int); } EOF -if { (eval echo configure:29046: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:29293: \"$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 @@ -29084,13 +29331,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:29088: checking if putmsg takes a const struct strbuf*" >&5 +echo "configure:29335: 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 29094 "configure" +#line 29341 "configure" #include "confdefs.h" #include <stropts.h> @@ -29106,7 +29353,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:29110: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:29357: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_const_strbufptr=yes @@ -29148,13 +29395,13 @@ EOF echo $ac_n "checking if select takes int instead of fd_set""... $ac_c" 1>&6 -echo "configure:29152: checking if select takes int instead of fd_set" >&5 +echo "configure:29399: 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 29158 "configure" +#line 29405 "configure" #include "confdefs.h" #ifndef ACE_LACKS_SYS_TYPES_H @@ -29181,7 +29428,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:29185: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:29432: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_select_takes_int=no @@ -29192,7 +29439,7 @@ else rm -rf conftest* cat > conftest.$ac_ext <<EOF -#line 29196 "configure" +#line 29443 "configure" #include "confdefs.h" #ifndef ACE_LACKS_SYS_TYPES_H @@ -29219,7 +29466,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:29223: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:29470: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_select_takes_int=yes @@ -29259,9 +29506,9 @@ EOF if test "$ac_cv_func_setrlimit" = yes; then echo $ac_n "checking if setrlimit() takes an enum as 1st argument""... $ac_c" 1>&6 -echo "configure:29263: checking if setrlimit() takes an enum as 1st argument" >&5 +echo "configure:29510: checking if setrlimit() takes an enum as 1st argument" >&5 cat > conftest.$ac_ext <<EOF -#line 29265 "configure" +#line 29512 "configure" #include "confdefs.h" #include <sys/resource.h> EOF @@ -29312,13 +29559,13 @@ fi echo $ac_n "checking if setrlimit() takes a const pointer as 2nd argument""... $ac_c" 1>&6 -echo "configure:29316: checking if setrlimit() takes a const pointer as 2nd argument" >&5 +echo "configure:29563: checking if setrlimit() takes a const pointer as 2nd argument" >&5 if eval "test \"`echo '$''{'ace_cv_lib_posix_setrlimit_const_2'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 29322 "configure" +#line 29569 "configure" #include "confdefs.h" #include <sys/resource.h> @@ -29330,7 +29577,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:29334: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:29581: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_posix_setrlimit_const_2=yes @@ -29367,9 +29614,9 @@ EOF if test "$ac_cv_func_getrusage" = yes; then echo $ac_n "checking if getrusage() takes an enum as 1st argument""... $ac_c" 1>&6 -echo "configure:29371: checking if getrusage() takes an enum as 1st argument" >&5 +echo "configure:29618: checking if getrusage() takes an enum as 1st argument" >&5 cat > conftest.$ac_ext <<EOF -#line 29373 "configure" +#line 29620 "configure" #include "confdefs.h" #include <sys/resource.h> EOF @@ -29419,13 +29666,13 @@ fi echo $ac_n "checking if select takes a const fifth argument""... $ac_c" 1>&6 -echo "configure:29423: checking if select takes a const fifth argument" >&5 +echo "configure:29670: 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 29429 "configure" +#line 29676 "configure" #include "confdefs.h" #ifndef ACE_LACKS_SYS_TYPES_H @@ -29450,7 +29697,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:29454: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:29701: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_posix_select_const_5=yes @@ -29494,13 +29741,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:29498: checking if sendmsg omits the const from the second argument" >&5 +echo "configure:29745: 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 29504 "configure" +#line 29751 "configure" #include "confdefs.h" #ifndef ACE_LACKS_SYS_TYPES_H @@ -29520,7 +29767,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:29524: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:29771: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_broken_sendmsg=no @@ -29563,13 +29810,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:29567: checking if writev omits the const from the iovec argument" >&5 +echo "configure:29814: 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 29573 "configure" +#line 29820 "configure" #include "confdefs.h" #ifdef ACE_HAS_UNISTD_H @@ -29590,7 +29837,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:29594: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:29841: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_broken_writev=no @@ -29632,13 +29879,13 @@ EOF echo $ac_n "checking if socket size is denoted by size_t""... $ac_c" 1>&6 -echo "configure:29636: checking if socket size is denoted by size_t" >&5 +echo "configure:29883: 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 29642 "configure" +#line 29889 "configure" #include "confdefs.h" #ifndef ACE_LACKS_SYS_TYPES_H @@ -29655,7 +29902,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:29659: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:29906: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_posix_socket_len_size_t=no @@ -29666,7 +29913,7 @@ else rm -rf conftest* cat > conftest.$ac_ext <<EOF -#line 29670 "configure" +#line 29917 "configure" #include "confdefs.h" #ifndef ACE_LACKS_SYS_TYPES_H @@ -29683,7 +29930,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:29687: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:29934: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_posix_socket_len_size_t=yes @@ -29727,13 +29974,13 @@ EOF echo $ac_n "checking for (struct sockaddr *) msg_name field""... $ac_c" 1>&6 -echo "configure:29731: checking for (struct sockaddr *) msg_name field" >&5 +echo "configure:29978: 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 29737 "configure" +#line 29984 "configure" #include "confdefs.h" #ifndef ACE_LACKS_SYS_TYPES_H @@ -29750,7 +29997,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:29754: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:30001: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_sockaddr_msg_name=yes @@ -29792,13 +30039,13 @@ EOF echo $ac_n "checking if setsockopt() takes a char* fourth argument""... $ac_c" 1>&6 -echo "configure:29796: checking if setsockopt() takes a char* fourth argument" >&5 +echo "configure:30043: 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 29802 "configure" +#line 30049 "configure" #include "confdefs.h" #ifndef ACE_LACKS_SYS_TYPES_H @@ -29821,7 +30068,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:29825: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:30072: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_posix_setsockopt_charp_4=yes @@ -29862,13 +30109,13 @@ EOF echo $ac_n "checking if setsockopt() takes a void* fourth argument""... $ac_c" 1>&6 -echo "configure:29866: checking if setsockopt() takes a void* fourth argument" >&5 +echo "configure:30113: 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 29872 "configure" +#line 30119 "configure" #include "confdefs.h" #ifndef ACE_LACKS_SYS_TYPES_H @@ -29891,7 +30138,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:29895: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:30142: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_posix_setsockopt_voidp_4=yes @@ -29932,13 +30179,13 @@ EOF echo $ac_n "checking if mmap() takes a void* first argument""... $ac_c" 1>&6 -echo "configure:29936: checking if mmap() takes a void* first argument" >&5 +echo "configure:30183: 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 29942 "configure" +#line 30189 "configure" #include "confdefs.h" #ifndef ACE_LACKS_SYS_TYPES_H @@ -29964,7 +30211,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:29968: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:30215: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_posix_voidptr_mmap=yes @@ -30000,13 +30247,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:30004: checking if msync accepts a third "sync" argument" >&5 +echo "configure:30251: 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 30010 "configure" +#line 30257 "configure" #include "confdefs.h" #include <sys/mman.h> @@ -30030,7 +30277,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:30034: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:30281: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_broken_msync=no @@ -30041,7 +30288,7 @@ else rm -rf conftest* cat > conftest.$ac_ext <<EOF -#line 30045 "configure" +#line 30292 "configure" #include "confdefs.h" #include <sys/mman.h> @@ -30064,7 +30311,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:30068: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:30315: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_broken_msync=yes @@ -30099,13 +30346,13 @@ EOF fi echo $ac_n "checking for iostream method ipfx()""... $ac_c" 1>&6 -echo "configure:30103: checking for iostream method ipfx()" >&5 +echo "configure:30350: 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 30109 "configure" +#line 30356 "configure" #include "confdefs.h" #include <iostream.h> @@ -30116,7 +30363,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:30120: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:30367: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_feature_has_iostream_ipfx=yes @@ -30149,13 +30396,13 @@ EOF echo $ac_n "checking for line-buffered streambufs""... $ac_c" 1>&6 -echo "configure:30153: checking for line-buffered streambufs" >&5 +echo "configure:30400: 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 30159 "configure" +#line 30406 "configure" #include "confdefs.h" #include <iostream.h> @@ -30166,7 +30413,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:30170: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:30417: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_feature_has_linebuffered_streambuf=yes @@ -30199,13 +30446,13 @@ EOF echo $ac_n "checking for unbuffered streambufs""... $ac_c" 1>&6 -echo "configure:30203: checking for unbuffered streambufs" >&5 +echo "configure:30450: 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 30209 "configure" +#line 30456 "configure" #include "confdefs.h" #include <iostream.h> @@ -30216,7 +30463,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:30220: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:30467: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_feature_has_unbuffered_streambuf=yes @@ -30256,13 +30503,13 @@ EOF echo $ac_n "checking if signal takes a void (*)(int) as second argument""... $ac_c" 1>&6 -echo "configure:30260: checking if signal takes a void (*)(int) as second argument" >&5 +echo "configure:30507: 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 30266 "configure" +#line 30513 "configure" #include "confdefs.h" #include <signal.h> @@ -30276,7 +30523,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:30280: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:30527: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_signal_vi1_2=yes @@ -30287,7 +30534,7 @@ else rm -rf conftest* cat > conftest.$ac_ext <<EOF -#line 30291 "configure" +#line 30538 "configure" #include "confdefs.h" #include <signal.h> @@ -30304,7 +30551,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:30308: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:30555: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_signal_vi1_2=yes @@ -30350,13 +30597,13 @@ EOF echo $ac_n "checking if signal takes a void (*)(void) as second argument""... $ac_c" 1>&6 -echo "configure:30354: checking if signal takes a void (*)(void) as second argument" >&5 +echo "configure:30601: 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 30360 "configure" +#line 30607 "configure" #include "confdefs.h" #include <signal.h> @@ -30370,7 +30617,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:30374: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:30621: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_signal_vv1_2=yes @@ -30381,7 +30628,7 @@ else rm -rf conftest* cat > conftest.$ac_ext <<EOF -#line 30385 "configure" +#line 30632 "configure" #include "confdefs.h" #include <signal.h> @@ -30398,7 +30645,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:30402: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:30649: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_signal_vv1_2=yes @@ -30444,13 +30691,13 @@ EOF echo $ac_n "checking if signal takes a void (*)(int, ...) as second argument""... $ac_c" 1>&6 -echo "configure:30448: checking if signal takes a void (*)(int, ...) as second argument" >&5 +echo "configure:30695: 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 30454 "configure" +#line 30701 "configure" #include "confdefs.h" #include <signal.h> @@ -30464,7 +30711,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:30468: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:30715: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_signal_vi1a2_2=yes @@ -30475,7 +30722,7 @@ else rm -rf conftest* cat > conftest.$ac_ext <<EOF -#line 30479 "configure" +#line 30726 "configure" #include "confdefs.h" #include <signal.h> @@ -30492,7 +30739,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:30496: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:30743: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_signal_vi1a2_2=yes @@ -30538,13 +30785,13 @@ EOF echo $ac_n "checking if signal takes a void (*)(...) as second argument""... $ac_c" 1>&6 -echo "configure:30542: checking if signal takes a void (*)(...) as second argument" >&5 +echo "configure:30789: 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 30548 "configure" +#line 30795 "configure" #include "confdefs.h" #include <signal.h> @@ -30558,7 +30805,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:30562: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:30809: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_signal_va1_2=yes @@ -30569,7 +30816,7 @@ else rm -rf conftest* cat > conftest.$ac_ext <<EOF -#line 30573 "configure" +#line 30820 "configure" #include "confdefs.h" #include <signal.h> @@ -30586,7 +30833,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:30590: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:30837: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_signal_va1_2=yes @@ -30625,13 +30872,13 @@ EOF CXXFLAGS="$ace_pre_warning_CXXFLAGS" echo $ac_n "checking if signal returns a void (*)(int)""... $ac_c" 1>&6 -echo "configure:30629: checking if signal returns a void (*)(int)" >&5 +echo "configure:30876: 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 30635 "configure" +#line 30882 "configure" #include "confdefs.h" #include <signal.h> @@ -30647,7 +30894,7 @@ foo(nn); ; return 0; } EOF -if { (eval echo configure:30651: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:30898: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_signal_vi1_ret=yes @@ -30667,13 +30914,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:30671: checking if signal returns a void (*)(void)" >&5 +echo "configure:30918: 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 30677 "configure" +#line 30924 "configure" #include "confdefs.h" #include <signal.h> @@ -30689,7 +30936,7 @@ foo(nn); ; return 0; } EOF -if { (eval echo configure:30693: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:30940: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_signal_vv1_ret=yes @@ -30709,13 +30956,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:30713: checking if signal returns a void (*)(int, ...)" >&5 +echo "configure:30960: 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 30719 "configure" +#line 30966 "configure" #include "confdefs.h" #include <signal.h> @@ -30728,7 +30975,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:30732: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:30979: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_signal_vi1a2_ret=yes @@ -30748,13 +30995,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:30752: checking if signal returns a void (*)(...)" >&5 +echo "configure:30999: 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 30758 "configure" +#line 31005 "configure" #include "confdefs.h" #include <signal.h> @@ -30767,7 +31014,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:30771: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:31018: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_signal_va1_ret=yes @@ -30788,13 +31035,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:30792: checking if struct sigaction takes a void (*)(int) handler" >&5 +echo "configure:31039: 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 30798 "configure" +#line 31045 "configure" #include "confdefs.h" #include <signal.h> @@ -30810,7 +31057,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:30814: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:31061: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_struct_sigaction_vi1_handler=yes @@ -30830,13 +31077,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:30834: checking if struct sigaction takes a void (*)(void) handler" >&5 +echo "configure:31081: 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 30840 "configure" +#line 31087 "configure" #include "confdefs.h" #include <signal.h> @@ -30852,7 +31099,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:30856: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:31103: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_struct_sigaction_vv1_handler=yes @@ -30872,13 +31119,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:30876: checking if struct sigaction takes a void (*)(int, ...) handler" >&5 +echo "configure:31123: 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 30882 "configure" +#line 31129 "configure" #include "confdefs.h" #include <signal.h> @@ -30894,7 +31141,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:30898: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:31145: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_struct_sigaction_vi1a2_handler=yes @@ -30914,13 +31161,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:30918: checking if struct sigaction takes a void (*)(...) handler" >&5 +echo "configure:31165: 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 30924 "configure" +#line 31171 "configure" #include "confdefs.h" #include <signal.h> @@ -30936,7 +31183,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:30940: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:31187: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_struct_sigaction_va1_handler=yes @@ -30963,13 +31210,13 @@ fi echo $ac_n "checking if msgsnd() takes a struct msgbuf* second argument""... $ac_c" 1>&6 -echo "configure:30967: checking if msgsnd() takes a struct msgbuf* second argument" >&5 +echo "configure:31214: 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 30973 "configure" +#line 31220 "configure" #include "confdefs.h" #ifndef ACE_LACKS_SYS_TYPES_H @@ -30990,7 +31237,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:30994: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:31241: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_posix_msgsnd_msgbufp_2=yes @@ -31017,13 +31264,13 @@ fi echo $ac_n "checking if msgsnd() takes a const void* second argument""... $ac_c" 1>&6 -echo "configure:31021: checking if msgsnd() takes a const void* second argument" >&5 +echo "configure:31268: 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 31027 "configure" +#line 31274 "configure" #include "confdefs.h" #ifndef ACE_LACKS_SYS_TYPES_H @@ -31044,7 +31291,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:31048: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:31295: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_posix_msgsnd_cvoidp_2=yes @@ -31092,13 +31339,13 @@ EOF echo $ac_n "checking if msgrcv() takes a void* second argument""... $ac_c" 1>&6 -echo "configure:31096: checking if msgrcv() takes a void* second argument" >&5 +echo "configure:31343: 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 31102 "configure" +#line 31349 "configure" #include "confdefs.h" #ifndef ACE_LACKS_SYS_TYPES_H @@ -31120,7 +31367,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:31124: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:31371: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_posix_msgrcv_voidp_2=yes @@ -31149,13 +31396,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:31153: checking if shmat() takes a void* second argument" >&5 +echo "configure:31400: 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 31159 "configure" +#line 31406 "configure" #include "confdefs.h" #ifndef ACE_LACKS_SYS_TYPES_H @@ -31172,7 +31419,7 @@ int shmid; ; return 0; } EOF -if { (eval echo configure:31176: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:31423: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_posix_shmat_voidp_2=yes @@ -31201,13 +31448,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:31205: checking if sigaction() takes a const* second argument" >&5 +echo "configure:31452: 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 31211 "configure" +#line 31458 "configure" #include "confdefs.h" #include <signal.h> @@ -31221,7 +31468,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:31225: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:31472: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_posix_sigaction_constp_2=yes @@ -31245,13 +31492,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:31249: checking if wait() takes a (union wait *) rather than int *" >&5 +echo "configure:31496: 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 31255 "configure" +#line 31502 "configure" #include "confdefs.h" #include <sys/wait.h> @@ -31264,7 +31511,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:31268: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:31515: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_wait_takes_union_wait_ptr=no @@ -31275,7 +31522,7 @@ else rm -rf conftest* cat > conftest.$ac_ext <<EOF -#line 31279 "configure" +#line 31526 "configure" #include "confdefs.h" #include <sys/wait.h> @@ -31288,7 +31535,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:31292: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:31539: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_wait_takes_union_wait_ptr=yes @@ -31330,13 +31577,13 @@ EOF echo $ac_n "checking if gettimeofday() takes a void * second argument""... $ac_c" 1>&6 -echo "configure:31334: checking if gettimeofday() takes a void * second argument" >&5 +echo "configure:31581: 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 31340 "configure" +#line 31587 "configure" #include "confdefs.h" #include <sys/time.h> @@ -31353,7 +31600,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:31357: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:31604: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_voidptr_gettimeofday=yes @@ -31383,13 +31630,13 @@ if test "$ace_cv_lib_voidptr_gettimeofday" = no; then echo $ac_n "checking if gettimeofday() takes a timezone * second argument""... $ac_c" 1>&6 -echo "configure:31387: checking if gettimeofday() takes a timezone * second argument" >&5 +echo "configure:31634: checking if gettimeofday() takes a timezone * second argument" >&5 if eval "test \"`echo '$''{'ace_cv_lib_timezone_gettimeofday'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 31393 "configure" +#line 31640 "configure" #include "confdefs.h" #include <sys/time.h> @@ -31406,7 +31653,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:31410: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:31657: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_timezone_gettimeofday=yes @@ -31432,13 +31679,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:31436: checking for gettimeofday() protoype" >&5 +echo "configure:31683: 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 31442 "configure" +#line 31689 "configure" #include "confdefs.h" #include <time.h> @@ -31504,13 +31751,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:31508: checking if ctime_r() takes two arguments" >&5 +echo "configure:31755: 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 31514 "configure" +#line 31761 "configure" #include "confdefs.h" #ifndef _REENTRANT @@ -31531,7 +31778,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:31535: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:31782: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_posix_ctime_r_2_params=yes @@ -31567,13 +31814,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:31571: checking if struct msghdr has a msg_accrights member" >&5 +echo "configure:31818: 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 31577 "configure" +#line 31824 "configure" #include "confdefs.h" #ifndef ACE_LACKS_SYS_TYPES_H @@ -31588,7 +31835,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:31592: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:31839: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_posix_struct_msghdr_has_msg_accrights=yes @@ -31617,13 +31864,13 @@ fi echo $ac_n "checking if struct msghdr has a msg_accrightslen member""... $ac_c" 1>&6 -echo "configure:31621: checking if struct msghdr has a msg_accrightslen member" >&5 +echo "configure:31868: checking if struct msghdr has a msg_accrightslen member" >&5 if eval "test \"`echo '$''{'ace_cv_lib_posix_struct_msghdr_has_msg_accrightslen'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else cat > conftest.$ac_ext <<EOF -#line 31627 "configure" +#line 31874 "configure" #include "confdefs.h" #ifndef ACE_LACKS_SYS_TYPES_H @@ -31638,7 +31885,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:31642: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:31889: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_posix_struct_msghdr_has_msg_accrightslen=yes @@ -31673,13 +31920,13 @@ EOF echo $ac_n "checking for 4.4 BSD style struct msghdr""... $ac_c" 1>&6 -echo "configure:31677: checking for 4.4 BSD style struct msghdr" >&5 +echo "configure:31924: 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 31683 "configure" +#line 31930 "configure" #include "confdefs.h" #include <sys/socket.h> EOF @@ -31722,13 +31969,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:31726: checking if CMSG_DATA is defined" >&5 +echo "configure:31973: 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 31732 "configure" +#line 31979 "configure" #include "confdefs.h" #ifndef ACE_LACKS_SYS_TYPES_H @@ -31753,7 +32000,7 @@ else ace_cv_lib_cmsg_data=no cat > conftest.$ac_ext <<EOF -#line 31757 "configure" +#line 32004 "configure" #include "confdefs.h" #ifndef ACE_LACKS_SYS_TYPES_H @@ -31772,7 +32019,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:31776: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:32023: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* @@ -31782,7 +32029,7 @@ else rm -rf conftest* cat > conftest.$ac_ext <<EOF -#line 31786 "configure" +#line 32033 "configure" #include "confdefs.h" #ifndef ACE_LACKS_SYS_TYPES_H @@ -31801,7 +32048,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:31805: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:32052: \"$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; } @@ -31812,7 +32059,7 @@ else rm -rf conftest* cat > conftest.$ac_ext <<EOF -#line 31816 "configure" +#line 32063 "configure" #include "confdefs.h" #ifndef ACE_LACKS_SYS_TYPES_H @@ -31827,7 +32074,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:31831: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:32078: \"$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 @@ -31887,13 +32134,13 @@ fi echo $ac_n "checking for ctime() macro""... $ac_c" 1>&6 -echo "configure:31891: checking for ctime() macro" >&5 +echo "configure:32138: 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 31897 "configure" +#line 32144 "configure" #include "confdefs.h" #include <time.h> @@ -31939,13 +32186,13 @@ EOF echo $ac_n "checking for reentrant function macros""... $ac_c" 1>&6 -echo "configure:31943: checking for reentrant function macros" >&5 +echo "configure:32190: 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 31949 "configure" +#line 32196 "configure" #include "confdefs.h" #ifndef _REENTRANT @@ -32002,13 +32249,13 @@ EOF echo $ac_n "checking for sig{empty fill add del}set macros""... $ac_c" 1>&6 -echo "configure:32006: checking for sig{empty fill add del}set macros" >&5 +echo "configure:32253: 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 32012 "configure" +#line 32259 "configure" #include "confdefs.h" #ifndef ACE_LACKS_SYS_TYPES_H @@ -32057,13 +32304,13 @@ EOF echo $ac_n "checking for open() mode masks""... $ac_c" 1>&6 -echo "configure:32061: checking for open() mode masks" >&5 +echo "configure:32308: 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 32067 "configure" +#line 32314 "configure" #include "confdefs.h" #ifndef ACE_LACKS_SYS_TYPES_H @@ -32124,13 +32371,13 @@ EOF echo $ac_n "checking for POSIX O_NONBLOCK semantics""... $ac_c" 1>&6 -echo "configure:32128: checking for POSIX O_NONBLOCK semantics" >&5 +echo "configure:32375: 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 32134 "configure" +#line 32381 "configure" #include "confdefs.h" #ifndef ACE_LACKS_SYS_TYPES_H @@ -32176,13 +32423,13 @@ EOF echo $ac_n "checking for MAP_FAILED constant""... $ac_c" 1>&6 -echo "configure:32180: checking for MAP_FAILED constant" >&5 +echo "configure:32427: 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 32186 "configure" +#line 32433 "configure" #include "confdefs.h" #include <sys/mman.h> @@ -32212,13 +32459,13 @@ fi echo $ac_n "checking if MAP_FAILED is a long constant""... $ac_c" 1>&6 -echo "configure:32216: checking if MAP_FAILED is a long constant" >&5 +echo "configure:32463: 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 32222 "configure" +#line 32469 "configure" #include "confdefs.h" #include <sys/mman.h> @@ -32254,13 +32501,13 @@ EOF echo $ac_n "checking if MAP_FAILED is not cast to void *""... $ac_c" 1>&6 -echo "configure:32258: checking if MAP_FAILED is not cast to void *" >&5 +echo "configure:32505: 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 32264 "configure" +#line 32511 "configure" #include "confdefs.h" #include <sys/mman.h> @@ -32271,7 +32518,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:32275: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:32522: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_have_broken_map_failed=no @@ -32282,7 +32529,7 @@ else rm -rf conftest* cat > conftest.$ac_ext <<EOF -#line 32286 "configure" +#line 32533 "configure" #include "confdefs.h" #include <sys/mman.h> @@ -32293,7 +32540,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:32297: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:32544: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_have_broken_map_failed=yes @@ -32338,13 +32585,13 @@ EOF echo $ac_n "checking for TCP_NODELAY support""... $ac_c" 1>&6 -echo "configure:32342: checking for TCP_NODELAY support" >&5 +echo "configure:32589: 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 32348 "configure" +#line 32595 "configure" #include "confdefs.h" #ifndef ACE_LACKS_SYS_TYPES_H @@ -32390,13 +32637,13 @@ EOF echo $ac_n "checking for SO_SNDBUF/SO_RCVBUF socket options""... $ac_c" 1>&6 -echo "configure:32394: checking for SO_SNDBUF/SO_RCVBUF socket options" >&5 +echo "configure:32641: 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 32400 "configure" +#line 32647 "configure" #include "confdefs.h" #ifndef ACE_LACKS_SYS_TYPES_H @@ -32445,7 +32692,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:32449: checking for automatic init/fini calls" >&5 +echo "configure:32696: 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 @@ -32477,7 +32724,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:32481: checking for recursive thread exit semantics" >&5 +echo "configure:32728: 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 @@ -32503,13 +32750,13 @@ fi echo $ac_n "checking for UNIX domain sockets""... $ac_c" 1>&6 -echo "configure:32507: checking for UNIX domain sockets" >&5 +echo "configure:32754: 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 32513 "configure" +#line 32760 "configure" #include "confdefs.h" #include <sys/un.h> @@ -32520,7 +32767,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:32524: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:32771: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_feature_unix_sockets=yes @@ -32553,7 +32800,7 @@ EOF echo $ac_n "checking for ACE_Handle_Set optimized for select()""... $ac_c" 1>&6 -echo "configure:32557: checking for ACE_Handle_Set optimized for select()" >&5 +echo "configure:32804: 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 @@ -32583,13 +32830,13 @@ EOF echo $ac_n "checking for IP multicast support""... $ac_c" 1>&6 -echo "configure:32587: checking for IP multicast support" >&5 +echo "configure:32834: 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 32593 "configure" +#line 32840 "configure" #include "confdefs.h" #ifndef ACE_LACKS_SYS_TYPES_H @@ -32603,7 +32850,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:32607: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:32854: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_feature_ip_multicast=yes @@ -32614,7 +32861,7 @@ else rm -rf conftest* cat > conftest.$ac_ext <<EOF -#line 32618 "configure" +#line 32865 "configure" #include "confdefs.h" #ifndef ACE_LACKS_SYS_TYPES_H @@ -32628,7 +32875,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:32632: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:32879: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_feature_ip_multicast=yes @@ -32663,7 +32910,7 @@ EOF echo $ac_n "checking if running on an Alpha""... $ac_c" 1>&6 -echo "configure:32667: checking if running on an Alpha" >&5 +echo "configure:32914: 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 @@ -32702,7 +32949,7 @@ EOF echo $ac_n "checking if running on a Power PC""... $ac_c" 1>&6 -echo "configure:32706: checking if running on a Power PC" >&5 +echo "configure:32953: 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 @@ -32743,7 +32990,7 @@ EOF echo $ac_n "checking if running on a Pentium(tm) processor""... $ac_c" 1>&6 -echo "configure:32747: checking if running on a Pentium(tm) processor" >&5 +echo "configure:32994: 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 @@ -32859,7 +33106,7 @@ EOF fi echo $ac_n "checking which POSIX thread library was found""... $ac_c" 1>&6 -echo "configure:32863: checking which POSIX thread library was found" >&5 +echo "configure:33110: checking which POSIX thread library was found" >&5 ace_has_pthreads=no @@ -32927,7 +33174,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:32931: checking if a UNIX International thread library was found" >&5 +echo "configure:33178: checking if a UNIX International thread library was found" >&5 if test "$ace_has_sthreads" = yes; then echo "$ac_t""yes" 1>&6 else @@ -32978,13 +33225,13 @@ EOF echo $ac_n "checking for pthread_join null status pointer support""... $ac_c" 1>&6 -echo "configure:32982: checking for pthread_join null status pointer support" >&5 +echo "configure:33229: 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 32988 "configure" +#line 33235 "configure" #include "confdefs.h" #if defined (ACE_HAS_PTHREADS) && defined (ACE_HAS_PTHREADS_DRAFT4) @@ -33003,7 +33250,7 @@ if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | else cat > conftest.$ac_ext <<EOF -#line 33007 "configure" +#line 33254 "configure" #include "confdefs.h" #ifdef __cplusplus extern "C" void exit(int); @@ -33011,13 +33258,15 @@ extern "C" void exit(int); #ifndef _REENTRANT #define _REENTRANT -#endif +#endif + +#include <pthread.h> +/* _THREAD_SAFE is defined in <pthread.h> on some platforms. */ #ifndef _THREAD_SAFE #define _THREAD_SAFE -#endif +#endif -#include <pthread.h> #include <stdio.h> #ifdef __cplusplus @@ -33066,7 +33315,7 @@ main (int argc, char *argv[]) } EOF -if { (eval echo configure:33070: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:33319: \"$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 @@ -33110,13 +33359,13 @@ EOF echo $ac_n "checking if SCHED_OTHER is only scheduling policy""... $ac_c" 1>&6 -echo "configure:33114: checking if SCHED_OTHER is only scheduling policy" >&5 +echo "configure:33363: 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 33120 "configure" +#line 33369 "configure" #include "confdefs.h" #ifdef ACE_HAS_PTHREADS @@ -33151,7 +33400,7 @@ else else cat > conftest.$ac_ext <<EOF -#line 33155 "configure" +#line 33404 "configure" #include "confdefs.h" #ifdef __cplusplus extern "C" void exit(int); @@ -33159,13 +33408,15 @@ extern "C" void exit(int); #ifndef _REENTRANT #define _REENTRANT -#endif +#endif + +#include <pthread.h> +/* _THREAD_SAFE is defined in <pthread.h> on some platforms. */ #ifndef _THREAD_SAFE #define _THREAD_SAFE -#endif +#endif -#include <pthread.h> #include <stdio.h> #include <errno.h> @@ -33209,7 +33460,7 @@ int main () } EOF -if { (eval echo configure:33213: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure:33464: \"$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 @@ -33438,7 +33689,7 @@ EOF EOF cat > conftest.$ac_ext <<EOF -#line 33442 "configure" +#line 33693 "configure" #include "confdefs.h" #ifdef __LP64__ @@ -33586,7 +33837,7 @@ EOF ;; *osf3.2*) cat > conftest.$ac_ext <<EOF -#line 33590 "configure" +#line 33841 "configure" #include "confdefs.h" #if defined(__DECCXX) @@ -33609,7 +33860,7 @@ rm -f conftest* ;; *osf4.0*) cat > conftest.$ac_ext <<EOF -#line 33613 "configure" +#line 33864 "configure" #include "confdefs.h" #if defined(__DECCXX) @@ -33630,7 +33881,7 @@ fi rm -f conftest* cat > conftest.$ac_ext <<EOF -#line 33634 "configure" +#line 33885 "configure" #include "confdefs.h" /* Include unistd.h to define _POSIX_C_SOURCE. */ @@ -33682,7 +33933,7 @@ EOF EOF cat > conftest.$ac_ext <<EOF -#line 33686 "configure" +#line 33937 "configure" #include "confdefs.h" #if defined (ACE_HAS_TSS_EMULATION) @@ -33848,7 +34099,7 @@ EOF EOF cat > conftest.$ac_ext <<EOF -#line 33852 "configure" +#line 34103 "configure" #include "confdefs.h" #if defined (ACE_HAS_TSS_EMULATION) @@ -33975,7 +34226,7 @@ rm -f confcache echo $ac_n "checking if generated ACE configuration is usable""... $ac_c" 1>&6 -echo "configure:33979: checking if generated ACE configuration is usable" >&5 +echo "configure:34230: checking if generated ACE configuration is usable" >&5 if eval "test \"`echo '$''{'ace_cv_configuration_is_usable'+set}'`\" = set"; then echo $ac_n "(cached) $ac_c" 1>&6 else @@ -34005,7 +34256,7 @@ else cat > conftest.$ac_ext <<EOF -#line 34009 "configure" +#line 34260 "configure" #include "confdefs.h" #if defined(ACE_UINT64_TYPEDEF) @@ -34020,7 +34271,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:34024: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:34275: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_configuration_is_usable=yes @@ -34095,7 +34346,7 @@ the \`config.log' file and the following information: echo $ac_n "checking for ACE iostream support""... $ac_c" 1>&6 -echo "configure:34099: checking for ACE iostream support" >&5 +echo "configure:34350: 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 @@ -34125,7 +34376,7 @@ else cat > conftest.$ac_ext <<EOF -#line 34129 "configure" +#line 34380 "configure" #include "confdefs.h" #if defined(ACE_UINT64_TYPEDEF) @@ -34140,7 +34391,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:34144: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:34395: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_feature_ace_iostream=yes @@ -34193,7 +34444,7 @@ EOF echo $ac_n "checking if ACE needs minimum iostream header inclusion""... $ac_c" 1>&6 -echo "configure:34197: checking if ACE needs minimum iostream header inclusion" >&5 +echo "configure:34448: 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 @@ -34223,7 +34474,7 @@ else cat > conftest.$ac_ext <<EOF -#line 34227 "configure" +#line 34478 "configure" #include "confdefs.h" #if defined(ACE_UINT64_TYPEDEF) @@ -34238,7 +34489,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:34242: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:34493: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_minimum_iostream=no @@ -34255,7 +34506,7 @@ else cat > conftest.$ac_ext <<EOF -#line 34259 "configure" +#line 34510 "configure" #include "confdefs.h" #if defined(ACE_UINT64_TYPEDEF) @@ -34271,7 +34522,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:34275: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:34526: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_minimum_iostream=yes @@ -34330,7 +34581,7 @@ EOF echo $ac_n "checking for ACE_addr::sap_any support""... $ac_c" 1>&6 -echo "configure:34334: checking for ACE_addr::sap_any support" >&5 +echo "configure:34585: 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 @@ -34360,7 +34611,7 @@ else cat > conftest.$ac_ext <<EOF -#line 34364 "configure" +#line 34615 "configure" #include "confdefs.h" #if defined(ACE_UINT64_TYPEDEF) @@ -34375,7 +34626,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:34379: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:34630: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_sap_any_support=yes @@ -34392,7 +34643,7 @@ else cat > conftest.$ac_ext <<EOF -#line 34396 "configure" +#line 34647 "configure" #include "confdefs.h" #if defined(ACE_UINT64_TYPEDEF) @@ -34408,7 +34659,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:34412: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:34663: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_sap_any_support=no @@ -34468,7 +34719,7 @@ EOF echo $ac_n "checking if ACE needs conversion to pass ACE_TTY_IO to DEV_Connector""... $ac_c" 1>&6 -echo "configure:34472: checking if ACE needs conversion to pass ACE_TTY_IO to DEV_Connector" >&5 +echo "configure:34723: 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 @@ -34498,7 +34749,7 @@ else cat > conftest.$ac_ext <<EOF -#line 34502 "configure" +#line 34753 "configure" #include "confdefs.h" #if defined(ACE_UINT64_TYPEDEF) @@ -34513,7 +34764,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:34517: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:34768: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_need_dev_io_conv=no @@ -34530,7 +34781,7 @@ else cat > conftest.$ac_ext <<EOF -#line 34534 "configure" +#line 34785 "configure" #include "confdefs.h" #if defined(ACE_UINT64_TYPEDEF) @@ -34546,7 +34797,7 @@ int main() { ; return 0; } EOF -if { (eval echo configure:34550: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then +if { (eval echo configure:34801: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then rm -rf conftest* ace_cv_lib_need_dev_io_conv=yes diff --git a/configure.in b/configure.in index 9e10561031b..aebad32f008 100644 --- a/configure.in +++ b/configure.in @@ -1270,6 +1270,41 @@ AC_CHECK_HEADER(tiuser.h, dnl AC_DEFINE(ACE_HAS_TLI) ],) +dnl Check if XTI headers are broken +if test "$ac_cv_header_xti_h" = yes || + test "$ac_cv_header_sys_xti_h" = yes || + test "$ac_cv_header_tiuser_h" = yes; then + ACE_CACHE_CHECK([if TCP macros are defined in XTI headers], + [ace_cv_lib_has_broken_xti_macros], + [ + AC_EGREP_CPP([ACE_BROKEN_XTI_MACROS], + [ +#if defined (ACE_HAS_TIUSER_H) || defined (ACE_HAS_XTI) +# if defined (ACE_HAS_TIUSER_H) +# include /**/ <tiuser.h> +# elif defined (ACE_HAS_SYS_XTI_H) +# include /**/ <sys/xti.h> +# else +# include /**/ <xti.h> +# endif /* ACE_HAS_SYS_XTI_H */ +#endif /* ACE_HAS_TIUSER_H || ACE_HAS_XTI */ + +#if defined (TCP_NODELAY) || defined (TCP_MAXSEG) +ACE_BROKEN_XTI_MACROS +#endif /* TCP_NODELAY || TCPMAXSEG */ + ], + [ + ace_cv_lib_has_broken_xti_macros=yes + ], + [ + ace_cv_lib_has_broken_xti_macros=no + ]) + ], + [ + AC_DEFINE(ACE_HAS_BROKEN_XTI_MACROS) + ],) +fi + if test "$ac_cv_header_tiuser_h" = yes; then ACE_CACHE_CHECK(if tiuser.h is protected by extern \"C\", ace_cv_lib_tiuser_with_extern_c,[ @@ -1308,20 +1343,18 @@ dnl We only check for t_accept. This should hopefully be enough. #endif #if defined (ACE_HAS_TIUSER_H) || defined (ACE_HAS_XTI) +# if defined (ACE_HAS_BROKEN_XTI_MACROS) +# undef TCP_NODELAY +# undef TCP_MAXSEG +# endif /* ACE_HAS_BROKEN_XTI_MACROS */ # if defined (ACE_HAS_TIUSER_H) # include /**/ <tiuser.h> +# elif defined (ACE_HAS_SYS_XTI_H) +# define class ace_xti_class +# include /**/ <sys/xti.h> +# undef class # else -# if defined (ACE_HAS_BROKEN_XTI_MACROS) -# undef TCP_NODELAY -# undef TCP_MAXSEG -# endif /* ACE_HAS_BROKEN_XTI_MACROS */ -# if defined ACE_HAS_SYS_XTI_H -# define class ace_xti_class -# include /**/ <sys/xti.h> -# undef class -# else -# include /**/ <xti.h> -# endif /* ACE_HAS_SYS_XTI_H */ +# include /**/ <xti.h> # endif /* ACE_HAS_TIUSER_H */ #endif /* ACE_HAS_TIUSER_H || ACE_HAS_XTI */ @@ -1353,30 +1386,24 @@ dnl Check for t_errno type in TLI headers #endif #if defined (ACE_HAS_TIUSER_H) || defined (ACE_HAS_XTI) +# if defined (ACE_HAS_BROKEN_XTI_MACROS) +# undef TCP_NODELAY +# undef TCP_MAXSEG +# endif /* ACE_HAS_BROKEN_XTI_MACROS */ # if defined (ACE_HAS_TIUSER_H) # include /**/ <tiuser.h> +# elif defined (ACE_HAS_SYS_XTI_H) +# define class ace_xti_class +# include /**/ <sys/xti.h> +# undef class # else -# if defined (ACE_HAS_BROKEN_XTI_MACROS) -# undef TCP_NODELAY -# undef TCP_MAXSEG -# endif /* ACE_HAS_BROKEN_XTI_MACROS */ -# if defined ACE_HAS_SYS_XTI_H -# define class ace_xti_class -# include /**/ <sys/xti.h> -# undef class -# else -# include /**/ <xti.h> -# endif /* ACE_HAS_SYS_XTI_H */ +# include /**/ <xti.h> # endif /* ACE_HAS_TIUSER_H */ #endif /* ACE_HAS_TIUSER_H || ACE_HAS_XTI */ #if defined (ACE_HAS_XLI) # include <xliuser.h> #endif - -#ifndef _THREAD_SAFE -# define _THREAD_SAFE -#endif ], [ ace_cv_lib_has_t_errno=yes @@ -1386,6 +1413,56 @@ dnl Check for t_errno type in TLI headers ]) ], , AC_DEFINE(ACE_LACKS_T_ERRNO)) +dnl Check if t_error incorrectly accepts char * + ACE_CACHE_CHECK(if t_error incorrectly accepts char *, + ace_cv_lib_has_broken_t_error, + [ + dnl Check if t_errno is declared in the TLI headers + AC_TRY_COMPILE( + [ +#if defined (ACE_HAS_TIMOD_H) +# include <sys/timod.h> +#endif + +#if defined (ACE_HAS_OSF_TIMOD_H) +# include <tli/timod.h> +#endif + +#if defined (ACE_HAS_TIUSER_H) || defined (ACE_HAS_XTI) +# if defined (ACE_HAS_BROKEN_XTI_MACROS) +# undef TCP_NODELAY +# undef TCP_MAXSEG +# endif /* ACE_HAS_BROKEN_XTI_MACROS */ +# if defined (ACE_HAS_TIUSER_H) +# include /**/ <tiuser.h> +# elif defined (ACE_HAS_SYS_XTI_H) +# define class ace_xti_class +# include /**/ <sys/xti.h> +# undef class +# else +# include /**/ <xti.h> +# endif /* ACE_HAS_TIUSER_H */ +#endif /* ACE_HAS_TIUSER_H || ACE_HAS_XTI */ + +#if defined (ACE_HAS_XLI) +# include <xliuser.h> +#endif + ], + [ + const char *ace_errmsg = "FOO"; + t_error (errmsg); + ], + [ + ace_cv_lib_has_broken_t_error=no + ], + [ + ace_cv_lib_has_broken_t_error=yes + ]) + ],, + [ + AC_DEFINE(ACE_HAS_BROKEN_T_ERROR) + ]) + fi dnl test "$ace_has_tli" = yes fi dnl test "$ace_has_tli_funcs" = yes @@ -4245,8 +4322,48 @@ dnl AC_CHECK_FUNC(sched_yield,,) dnl dnl We already check for this during the library checks. dnl Check for Unix98 pthreads extensions - ACE_CHECK_STRUCT(pthread_rwlock_t,,)dnl - ACE_CHECK_STRUCT(pthread_rwlockattr_t,,)dnl + ACE_CACHE_CHECK([for struct pthread_rwlock_t], + [ace_cv_struct_pthread_rwlock_t], + [ + dnl Since we are checking for siginfo_t in more than one header + dnl we can't use the ACE_CHECK_STRUCT macro so we have to do things + dnl manually. + ACE_TRY_COMPILE_STRUCT(pthread_rwlock_t, pthread.h, + [ + ace_cv_struct_pthread_rwlock_t=yes + ], + [ + ACE_TRY_COMPILE_STRUCT(pthread_rwlock_t, sys/types.h, + [ + ace_cv_struct_pthread_rwlock_t=yes + ], + [ + ace_cv_struct_pthread_rwlock_t=no + ]) + ]) + ],,) + + ACE_CACHE_CHECK([for struct pthread_rwlockattr_t], + [ace_cv_struct_pthread_rwlockattr_t], + [ + dnl Since we are checking for siginfo_t in more than one header + dnl we can't use the ACE_CHECK_STRUCT macro so we have to do things + dnl manually. + ACE_TRY_COMPILE_STRUCT(pthread_rwlockattr_t, pthread.h, + [ + ace_cv_struct_pthread_rwlockattr_t=yes + ], + [ + ACE_TRY_COMPILE_STRUCT(pthread_rwlockattr_t, sys/types.h, + [ + ace_cv_struct_pthread_rwlockattr_t=yes + ], + [ + ace_cv_struct_pthread_rwlockattr_t=no + ]) + ]) + ],,) + AC_CHECK_FUNC(pthread_continue,,)dnl AC_CHECK_FUNC(pthread_suspend,,)dnl AC_CHECK_FUNC(pthread_rwlock_init,,)dnl @@ -6836,13 +6953,15 @@ WE_HAVE_PTHREADS_D4 [ #ifndef _REENTRANT #define _REENTRANT -#endif +#endif +#include <pthread.h> + +/* _THREAD_SAFE is defined in <pthread.h> on some platforms. */ #ifndef _THREAD_SAFE #define _THREAD_SAFE -#endif +#endif -#include <pthread.h> #include <stdio.h> #ifdef __cplusplus @@ -6940,13 +7059,15 @@ main (int argc, char *argv[]) [ #ifndef _REENTRANT #define _REENTRANT -#endif +#endif + +#include <pthread.h> +/* _THREAD_SAFE is defined in <pthread.h> on some platforms. */ #ifndef _THREAD_SAFE #define _THREAD_SAFE -#endif +#endif -#include <pthread.h> #include <stdio.h> #include <errno.h> diff --git a/ltcf-cxx.sh b/ltcf-cxx.sh index 34a52abd7b9..d3dd7c67654 100644 --- a/ltcf-cxx.sh +++ b/ltcf-cxx.sh @@ -164,6 +164,25 @@ case "$host_os" in # FIXME: insert proper C++ library support ld_shlibs=no ;; + cxx) + # Compaq C++ + archive_cmds='$CC -shared $libobjs $deplibs $linker_flags ${wl}-soname $wl$soname -o $lib' + archive_expsym_cmds='$CC -shared $libobjs $deplibs $linker_flags ${wl}-retain-symbols-file $wl$export_symbols' + + runpath_var=LD_RUN_PATH + hardcode_libdir_flag_spec='-rpath $libdir' + hardcode_libdir_separator=: + + # Commands to make compiler produce verbose output that lists + # what "hidden" libraries, object files and flags are used when + # linking. + # + # There doesn't appear to be a way to prevent this compiler from + # explicitly linking system object files so we need to strip them + # from the output so that they don't get included in the library + # dependencies. + output_verbose_link_cmds='templist=`$CC $CFLAGS -v conftest.$objext 2>&1 | grep "ld"`; templist=`echo $templist | sed "s/\(^.*ld.*\)\( .*ld .*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list' + ;; *) # GNU C++ compiler if test "$with_gcc" = yes; then @@ -175,8 +194,10 @@ case "$host_os" in export_dynamic_flag_spec='${wl}--export-dynamic' # ancient GNU ld didn't support --whole-archive et. al. - if $LD --help 2>&1 | egrep 'no-whole-archive' > /dev/null; then + if eval "$CC -print-prog-name=ld --help 2>&1" | \ + egrep 'no-whole-archive' > /dev/null; then whole_archive_flag_spec="$wlarc"'--whole-archive$convenience '"$wlarc"'--no-whole-archive' + else whole_archive_flag_spec= fi @@ -214,10 +235,19 @@ case "$host_os" in ld_shlibs=no ;; osf3*) - # FIXME: insert proper C++ library support - ld_shlibs=no - ;; - osf4* | osf5*) + if test "$with_gcc" = yes; then + allow_undefined_flag=' ${wl}-expect_unresolved ${wl}\*' + archive_cmds='$CC -shared -nostdlib ${allow_undefined_flag} $predeps $libobjs $deplibs $postdeps $compiler_flags ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${objdir}/so_locations -o $lib' + + hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' + hardcode_libdir_separator=: + + # Commands to make compiler produce verbose output that lists + # what "hidden" libraries, object files and flags are used when + # linking. + output_verbose_link_cmds='$CC $CFLAGS -v conftest.$objext 2>&1 | egrep "\-L"' + fi + case "$CXX" in KCC) # KAI C++ Compiler 3.3f @@ -230,8 +260,59 @@ case "$host_os" in ld_shlibs=no ;; cxx) + allow_undefined_flag=' ${wl}-expect_unresolved ${wl}\*' + archive_cmds='$CC -shared${allow_undefined_flag} $predeps $libobjs $deplibs $postdeps $linker_flags ${wl}-soname $soname `test -n "$verstring" && echo ${wl}-set_version $verstring` -update_registry ${objdir}/so_locations -o $lib' + + hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' + hardcode_libdir_separator=: + + # Commands to make compiler produce verbose output that lists + # what "hidden" libraries, object files and flags are used when + # linking. + # + # There doesn't appear to be a way to prevent this compiler from + # explicitly linking system object files so we need to strip them + # from the output so that they don't get included in the library + # dependencies. + output_verbose_link_cmds='templist=`$CC $CFLAGS -v conftest.$objext 2>&1 | grep "ld" | grep -v "ld:"`; templist=`echo $templist | sed "s/\(^.*ld.*\)\( .*ld.*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list' + ;; + *) # FIXME: insert proper C++ library support ld_shlibs=no + ;; + esac + ;; + osf4* | osf5*) + if test "$with_gcc" = yes; then + allow_undefined_flag=' ${wl}-expect_unresolved ${wl}\*' + archive_cmds='$CC -shared -nostdlib ${allow_undefined_flag} $predeps $libobjs $deplibs $postdeps $compiler_flags ${wl}-msym ${wl}-soname ${wl}$soname `test -n "$verstring" && echo ${wl}-set_version ${wl}$verstring` ${wl}-update_registry ${wl}${objdir}/so_locations -o $lib' + + hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' + hardcode_libdir_separator=: + + # Commands to make compiler produce verbose output that lists + # what "hidden" libraries, object files and flags are used when + # linking. + output_verbose_link_cmds='$CC $CFLAGS -v conftest.$objext 2>&1 | egrep "\-L"' + fi + + case "$CXX" in + KCC) + # KAI C++ Compiler 3.3f + # FIXME: insert proper C++ library support + ld_shlibs=no + ;; + RCC) + # Rational C++ 2.4.1 + # FIXME: insert proper C++ library support + ld_shlibs=no + ;; + cxx) + allow_undefined_flag=' ${wl}-expect_unresolved ${wl}\*' + archive_cmds='$CC -shared${allow_undefined_flag} $predeps $libobjs $deplibs $postdeps $linker_flags ${wl}-msym ${wl}-soname $soname `test -n "$verstring" && echo ${wl}-set_version $verstring` -update_registry ${objdir}/so_locations -o $lib' + + hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir' + hardcode_libdir_separator=: # Commands to make compiler produce verbose output that lists # what "hidden" libraries, object files and flags are used when @@ -241,7 +322,7 @@ case "$host_os" in # explicitly linking system object files so we need to strip them # from the output so that they don't get included in the library # dependencies. - output_verbose_link_cmds='templist=`$CC $CFLAGS -v conftest.$objext 2>&1 | grep "ld" | grep -v "ld:"`; templist=`echo $templist | sed 's/\(^.*ld.*\)\( .*ld.*$\)/\1/'`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list' + output_verbose_link_cmds='templist=`$CC $CFLAGS -v conftest.$objext 2>&1 | grep "ld" | grep -v "ld:"`; templist=`echo $templist | sed "s/\(^.*ld.*\)\( .*ld.*$\)/\1/"`; list=""; for z in $templist; do case $z in conftest.$objext) list="$list $z";; *.$objext);; *) list="$list $z";;esac; done; echo $list' ;; *) # FIXME: insert proper C++ library support @@ -290,14 +371,19 @@ case "$host_os" in no_undefined_flag=' -ztext' archive_cmds='$CC -G${allow_undefined_flag} -nolib -h$soname -o $lib $predeps $libobjs $deplibs $postdeps $linker_flags' archive_expsym_cmds='$echo "{ global:" > $lib.exp~cat $export_symbols | sed -e "s/\(.*\)/\1;/" >> $lib.exp~$echo "local: *; };" >> $lib.exp~ - $CC -G${allow_undefined_flag} -nolib -Qoption ld -M,$lib.exp -h$soname -o $lib $predeps $libobjs $deplibs $postdeps $linker_flags~$rm $lib.exp' + $CC -G${allow_undefined_flag} -nolib ${wl}-M ${wl}$lib.exp -h$soname -o $lib $predeps $libobjs $deplibs $postdeps $linker_flags~$rm $lib.exp' hardcode_libdir_flag_spec='-R$libdir' hardcode_shlibpath_var=no case "$host_os" in solaris2.[0-5] | solaris2.[0-5].*) ;; - *) # Supported since Solaris 2.6 (maybe 2.5.1?) - whole_archive_flag_spec='-z allextract$convenience -z defaultextract' ;; + *) + # The C++ compiler is used as linker so we must use $wl + # flag to pass the commands to the underlying system + # linker. + # Supported since Solaris 2.6 (maybe 2.5.1?) + whole_archive_flag_spec='${wl}-z ${wl}allextract$convenience ${wl}-z ${wl}defaultextract' + ;; esac link_all_deplibs=yes @@ -538,9 +624,16 @@ else linux*) case "$CXX" in KCC) - # KAI C++ Compiler + # KAI C++ Compiler ac_cv_prog_cc_pic='-fPIC' ;; + cxx) + # Compaq C++ + # Make sure the PIC flag is empty. It appears that all Alpha + # Linux and Compaq Tru64 Unix objects are PIC. + ac_cv_prog_cc_pic= + ac_cv_prog_cc_static='-non_shared' + ;; *) ;; esac @@ -570,6 +663,11 @@ else ac_cv_prog_cc_pic='-pic' ;; cxx) + # Digital/Compaq C++ + ac_cv_prog_cc_wl='-Wl,' + # Make sure the PIC flag is empty. It appears that all Alpha + # Linux and Compaq Tru64 Unix objects are PIC. + ac_cv_prog_cc_pic= ac_cv_prog_cc_static='-non_shared' ;; *) @@ -593,7 +691,7 @@ else # Sun C++ 4.2, 5.x and Centerline C++ ac_cv_prog_cc_pic='-KPIC' ac_cv_prog_cc_static='-Bstatic' - ac_cv_prog_cc_wl='-Wl,' + ac_cv_prog_cc_wl='-Qoption ld ' ;; gcx) # Green Hills C++ Compiler |