From ccc47dbe57173d7fe3636eca65c903cdace76985 Mon Sep 17 00:00:00 2001 From: Ossama Othman Date: Fri, 24 Dec 1999 19:09:16 +0000 Subject: ChangeLogTag:Fri Dec 24 13:06:59 1999 Ossama Othman --- NEWS | 2 +- THANKS | 1 + acconfig.h | 5 - ace/OS.h | 16 +- ace/config.h.in | 7 + configure | 2789 ++++++++++++++++++++++++++++++------------------------- configure.in | 189 +++- ltcf-cxx.sh | 120 ++- 8 files changed, 1800 insertions(+), 1329 deletions(-) diff --git a/NEWS b/NEWS index e8f9e000a07..b2c03074aa0 100644 --- a/NEWS +++ b/NEWS @@ -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 diff --git a/THANKS b/THANKS index 6bf0f8c71f9..a5a8d63f792 100644 --- a/THANKS +++ b/THANKS @@ -859,6 +859,7 @@ Jonathan Luellen Andrew Psaltis Erik Jones Ted Burghart +Mike Winter 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, diff --git a/ace/OS.h b/ace/OS.h index 54664035be4..3c02f056be5 100644 --- a/ace/OS.h +++ b/ace/OS.h @@ -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 /**/ # elif defined (ACE_HAS_TIUSER_H) # include /**/ -# 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 /**/ # undef class -# else +# else # include /**/ -# 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 (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 < +# elif defined (ACE_HAS_SYS_XTI_H) +# include /**/ +# else +# include /**/ +# 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 @@ -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 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 < +# elif defined (ACE_HAS_SYS_XTI_H) +# define class ace_xti_class +# include /**/ +# 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 /**/ -# undef class -# else -# include /**/ -# endif /* ACE_HAS_SYS_XTI_H */ +# include /**/ # 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 < +# elif defined (ACE_HAS_SYS_XTI_H) +# define class ace_xti_class +# include /**/ +# 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 /**/ -# undef class -# else -# include /**/ -# endif /* ACE_HAS_SYS_XTI_H */ +# include /**/ # endif /* ACE_HAS_TIUSER_H */ #endif /* ACE_HAS_TIUSER_H || ACE_HAS_XTI */ #if defined (ACE_HAS_XLI) # include #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 < +#endif + +#if defined (ACE_HAS_OSF_TIMOD_H) +# include +#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 /**/ +# elif defined (ACE_HAS_SYS_XTI_H) +# define class ace_xti_class +# include /**/ +# undef class +# else +# include /**/ +# endif /* ACE_HAS_TIUSER_H */ +#endif /* ACE_HAS_TIUSER_H || ACE_HAS_XTI */ + +#if defined (ACE_HAS_XLI) +# include +#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 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 @@ -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 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 @@ -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 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 @@ -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 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 @@ -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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 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 map struct""... $ac_c" 1>&6 -echo "configure:11980: checking if STL map class conflicts with map struct" >&5 +echo "configure:12113: checking if STL map class conflicts with 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 <&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 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 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 queue struct""... $ac_c" 1>&6 -echo "configure:12101: checking if STL queue class conflicts with queue struct" >&5 +echo "configure:12234: checking if STL queue class conflicts with 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 <&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 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 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 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 @@ -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 @@ -12345,7 +12478,7 @@ else rm -rf conftest* cat > conftest.$ac_ext < 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 < @@ -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 @@ -12470,7 +12603,7 @@ else rm -rf conftest* cat > conftest.$ac_ext < 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 < @@ -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 @@ -12593,7 +12726,7 @@ else rm -rf conftest* cat > conftest.$ac_ext < 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 @@ -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 @@ -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 @@ -12734,7 +12867,7 @@ if (eval "$ac_cpp conftest.$ac_ext") 2>&5 | rm -rf conftest* cat > conftest.$ac_ext < 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 @@ -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 @@ -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 < #include @@ -12871,7 +13004,7 @@ else #include 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 @@ -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 @@ -12927,7 +13060,7 @@ if test "$cross_compiling" = yes; then : else cat > conftest.$ac_ext <&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null +if { (eval echo configure: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 < #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 < #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 < #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 < #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 < @@ -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 < @@ -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 < @@ -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 < @@ -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 < @@ -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 < @@ -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 < @@ -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 < @@ -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 < @@ -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 < @@ -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 <&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 < @@ -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 < @@ -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 < @@ -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 < @@ -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 < @@ -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 < @@ -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 < @@ -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 < @@ -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 < @@ -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 < @@ -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 < @@ -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 < @@ -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 < @@ -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 < @@ -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 < @@ -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 < @@ -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 < @@ -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 < @@ -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 < @@ -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 < @@ -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 < @@ -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 < @@ -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 < @@ -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 < @@ -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 <&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 < @@ -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 < @@ -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 < @@ -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 < @@ -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 < @@ -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 < @@ -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 < @@ -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 <&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 < @@ -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 < @@ -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 <&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 <&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 <&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 < @@ -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 < @@ -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 <&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 <&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 <&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 < #include @@ -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 < #include @@ -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 <&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 <&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 <&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 <&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 <&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 <&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 <&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 <&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 <&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 <&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 < @@ -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 < @@ -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 < @@ -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 < @@ -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 <&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 < @@ -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 <&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 < @@ -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 < @@ -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 < @@ -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 < @@ -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 <&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 <&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 <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 <&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 <&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 <&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 <&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 <&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 <&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 < @@ -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 < @@ -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 < @@ -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 < 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 <&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 <&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 <&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 < @@ -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 <&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 <&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 <&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 < 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 <&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 <&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 <&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 <&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 < 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 <&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 <&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 <&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 <&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 <&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 <&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 <&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 <&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 <&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 <&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 <&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 <&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 <&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 <&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 <&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 <&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 <&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 <&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 <&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 @@ -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 <&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 @@ -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 <&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 <&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 <&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 <&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 <&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 < @@ -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 <&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 <&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 @@ -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 <&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 <&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 <&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 <&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 <&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 <&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 <&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 <&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 <&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 <&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 @@ -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 <&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 <&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 <&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 <&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 <&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 <&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 <&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 <&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 <&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 <&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 <&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 <&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 <&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 <&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 <&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 <&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 <&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 <&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 @@ -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 <&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 <&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 <&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 <&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 <&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 <&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 <&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 <&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 < @@ -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 <&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 <&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 <&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 <&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 <&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 <&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 <&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 <&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 <&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 <&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 <&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 <&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 <&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 <&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 <&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 <&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 <&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 <&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 <&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 <&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 <&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 <&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 <&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 <&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 <&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 <&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 <&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 <&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 <&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 <&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 <&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 <&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 <&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 <&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 <&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 <&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 <&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 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 <&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 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 <&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 <&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 <&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 <&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 <&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 <&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 <&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 <&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 <&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 <&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 <&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 <&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 <&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 <&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 <&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 <&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 <&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 <&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 <&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 <&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 <&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 <&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 <&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 <&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 <&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 <&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 <&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 <&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 <&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 < +#include 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 < +#include 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 < + +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 < + +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 < +#include 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 < +#include 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 < + +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 < + +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 <&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 <&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 <&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 <&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 <&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 <&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 <&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 <&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 <&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 <&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 <&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 <&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 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 <&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 <&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 < @@ -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 < @@ -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 < @@ -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 < @@ -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 < @@ -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 < @@ -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 < @@ -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 @@ -27503,7 +27750,7 @@ fi rm -f conftest* cat > conftest.$ac_ext < 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 @@ -27553,7 +27800,7 @@ fi rm -f conftest* cat > conftest.$ac_ext < 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 <&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 <&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 <&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 <&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 <&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 <&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 <&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 <&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 @@ -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 <&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 <&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 <&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 <&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 <&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 <&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 <&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 <&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 <&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 <&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 <&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 <&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 <&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 < @@ -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 < @@ -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 < @@ -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 <&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 <&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 < @@ -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 <&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 <&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 @@ -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 < @@ -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 @@ -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 <&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 <&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 <&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 <&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 <&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 <&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 <&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 <&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 <&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 < @@ -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 < @@ -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 < @@ -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 < @@ -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 < @@ -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 < @@ -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 < @@ -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 < @@ -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 < @@ -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 < @@ -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 < @@ -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 < @@ -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 < @@ -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 < @@ -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 < @@ -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 < @@ -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 < @@ -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 < @@ -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 < @@ -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 < @@ -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 < @@ -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 <&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 <&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 <&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 <&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 < @@ -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 < @@ -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 < @@ -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 < @@ -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 < @@ -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 < @@ -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 <&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 <&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 <&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 @@ -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 < conftest.$ac_ext <&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 <&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 <&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 < @@ -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 <&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 <&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 <&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 <&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 < @@ -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 < @@ -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 < @@ -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 < @@ -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 <&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 <&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 < @@ -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 <&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 <&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 <&5 | else cat > conftest.$ac_ext < +/* _THREAD_SAFE is defined in on some platforms. */ #ifndef _THREAD_SAFE #define _THREAD_SAFE -#endif +#endif -#include #include #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 < conftest.$ac_ext < +/* _THREAD_SAFE is defined in on some platforms. */ #ifndef _THREAD_SAFE #define _THREAD_SAFE -#endif +#endif -#include #include #include @@ -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 < conftest.$ac_ext < conftest.$ac_ext < conftest.$ac_ext < conftest.$ac_ext < conftest.$ac_ext <&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 <&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 <&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 <&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 <&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 <&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 <&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 <&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 <&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 /**/ +# elif defined (ACE_HAS_SYS_XTI_H) +# include /**/ +# else +# include /**/ +# 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 /**/ +# elif defined (ACE_HAS_SYS_XTI_H) +# define class ace_xti_class +# include /**/ +# 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 /**/ -# undef class -# else -# include /**/ -# endif /* ACE_HAS_SYS_XTI_H */ +# include /**/ # endif /* ACE_HAS_TIUSER_H */ #endif /* ACE_HAS_TIUSER_H || ACE_HAS_XTI */ @@ -1353,29 +1386,23 @@ 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 /**/ +# elif defined (ACE_HAS_SYS_XTI_H) +# define class ace_xti_class +# include /**/ +# 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 /**/ -# undef class -# else -# include /**/ -# endif /* ACE_HAS_SYS_XTI_H */ +# include /**/ # endif /* ACE_HAS_TIUSER_H */ #endif /* ACE_HAS_TIUSER_H || ACE_HAS_XTI */ #if defined (ACE_HAS_XLI) # include -#endif - -#ifndef _THREAD_SAFE -# define _THREAD_SAFE #endif ], [ @@ -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 +#endif + +#if defined (ACE_HAS_OSF_TIMOD_H) +# include +#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 /**/ +# elif defined (ACE_HAS_SYS_XTI_H) +# define class ace_xti_class +# include /**/ +# undef class +# else +# include /**/ +# endif /* ACE_HAS_TIUSER_H */ +#endif /* ACE_HAS_TIUSER_H || ACE_HAS_XTI */ + +#if defined (ACE_HAS_XLI) +# include +#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 + +/* _THREAD_SAFE is defined in on some platforms. */ #ifndef _THREAD_SAFE #define _THREAD_SAFE -#endif +#endif -#include #include #ifdef __cplusplus @@ -6940,13 +7059,15 @@ main (int argc, char *argv[]) [ #ifndef _REENTRANT #define _REENTRANT -#endif +#endif + +#include +/* _THREAD_SAFE is defined in on some platforms. */ #ifndef _THREAD_SAFE #define _THREAD_SAFE -#endif +#endif -#include #include #include 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 -- cgit v1.2.1