From 54b919fe5a53af375211ba19fce8deda8a09576d Mon Sep 17 00:00:00 2001 From: stasinos Date: Tue, 26 Feb 2002 18:58:35 +0000 Subject: [PATCH] do not fail when no MPI library is found git-svn-id: https://yap.svn.sf.net/svnroot/yap/trunk@381 b08c6af1-5177-4d33-ba66-4b1c6b8b522a --- Makefile.in | 5 +- configure | 1168 +++++++++++++++++++++++++------------------------- configure.in | 26 +- 3 files changed, 613 insertions(+), 586 deletions(-) diff --git a/Makefile.in b/Makefile.in index d5814dd57..bbf3a76f3 100644 --- a/Makefile.in +++ b/Makefile.in @@ -173,8 +173,7 @@ ENGINE_OBJECTS = \ exec.o grow.o heapgc.o index.o init.o \ iopreds.o depth_bound.o mavar.o modules.o other.o \ parser.o save.o scanner.o sort.o stdpreds.o sysbits.o tracer.o \ - unify.o userpreds.o utilpreds.o write.o ypsocks.o ypstdio.o \ - mpi.o mpe.o + unify.o userpreds.o utilpreds.o write.o ypsocks.o ypstdio.o @MPI_OBJS@ C_INTERFACE_OBJECTS = \ load_foreign.o load_dl.o load_dld.o \ @@ -459,7 +458,7 @@ startup: yap $(PL_SOURCES) echo "['$(srcdir)/pl/init.yap']. save_program(startup)." | @CROSS_SIMULATOR@ ./yap -b $(srcdir)/pl/boot.yap yap: $(HEADERS) yap.o @YAPLIB@ - $(MPI_CC) $(STANDARD_CFLAGS) $(LDFLAGS) -o yap yap.o @YAPLIB@ $(LIBS) + $(MPI_CC) $(STANDARD_CFLAGS) $(LDFLAGS) -o yap yap.o @YAPLIB@ $(LIBS) @MPI_LIBS@ libYap.a: $(LIB_OBJECTS) -rm -f libYap.a diff --git a/configure b/configure index 0a6fdd227..7ba7ca516 100755 --- a/configure +++ b/configure @@ -3164,8 +3164,8 @@ fi if test "$ac_cv_lib_mpi_MPI_Init" = yes then - #LIBS="$LIBS -lpmpich" - YAPMPILIB=YapMPI.a + #YAPMPILIB=YapMPI.a + MPI_OBJS=mpi.o else echo "$as_me:3170: checking for MPI_Init in -lmpich" >&5 echo $ECHO_N "checking for MPI_Init in -lmpich... $ECHO_C" >&6 @@ -3230,10 +3230,12 @@ fi if test "$ac_cv_lib_mpi_MPI_Init" = yes then - #LIBS="$LIBS -lpmpich" - YAPMPILIB=YapMPI.a + #YAPMPILIB=YapMPI.a + MPI_OBJS=mpi.o else - YAPMPILIB= + #YAPMPILIB= + MPI_OBJS= + MPI_CC='$(CC)' fi fi CC=${OLD_CC} @@ -3243,8 +3245,7 @@ if test "$yap_cv_mpe" != "no" then OLD_CC=${CC} CC=${MPI_CC} - -echo "$as_me:3247: checking for MPE_Init_log in -lmpe" >&5 + echo "$as_me:3248: checking for MPE_Init_log in -lmpe" >&5 echo $ECHO_N "checking for MPE_Init_log in -lmpe... $ECHO_C" >&6 if test "${ac_cv_lib_mpe_MPE_Init_log+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -3252,7 +3253,7 @@ else ac_check_lib_save_LIBS=$LIBS LIBS="-lmpe $LIBS" cat >conftest.$ac_ext <<_ACEOF -#line 3255 "configure" +#line 3256 "configure" #include "confdefs.h" /* Override any gcc2 internal prototype to avoid an error. */ @@ -3271,16 +3272,16 @@ MPE_Init_log (); } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:3274: \"$ac_link\"") >&5 +if { (eval echo "$as_me:3275: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:3277: \$? = $ac_status" >&5 + echo "$as_me:3278: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:3280: \"$ac_try\"") >&5 + { (eval echo "$as_me:3281: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:3283: \$? = $ac_status" >&5 + echo "$as_me:3284: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_lib_mpe_MPE_Init_log=yes else @@ -3291,17 +3292,28 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext LIBS=$ac_check_lib_save_LIBS fi -echo "$as_me:3294: result: $ac_cv_lib_mpe_MPE_Init_log" >&5 +echo "$as_me:3295: result: $ac_cv_lib_mpe_MPE_Init_log" >&5 echo "${ECHO_T}$ac_cv_lib_mpe_MPE_Init_log" >&6 if test $ac_cv_lib_mpe_MPE_Init_log = yes; then - cat >>confdefs.h <>confdefs.h <<\EOF #define HAVE_LIBMPE 1 EOF - LIBS="-lmpe $LIBS" +else + cat >>confdefs.h <<\EOF +#define HAVE_LIBMPE 0 +EOF fi + if test "$ac_cv_lib_mpe_MPE_Init_log" = yes + then + MPI_LIBS="-lmpe" + MPI_OBJS="$MPI_OBJS mpe.o" + else + MPI_LIBS= + MPI_OBJS= + fi CC=${OLD_CC} fi @@ -3310,7 +3322,7 @@ ac_cpp='$CPP $CPPFLAGS' ac_compile='$CC -c $CFLAGS $CPPFLAGS conftest.$ac_ext >&5' ac_link='$CC -o conftest$ac_exeext $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS >&5' ac_compiler_gnu=$ac_cv_c_compiler_gnu -echo "$as_me:3313: checking how to run the C preprocessor" >&5 +echo "$as_me:3325: checking how to run the C preprocessor" >&5 echo $ECHO_N "checking how to run the C preprocessor... $ECHO_C" >&6 # On Suns, sometimes $CPP names a directory. if test -n "$CPP" && test -d "$CPP"; then @@ -3331,18 +3343,18 @@ do # On the NeXT, cc -E runs the code through the compiler's parser, # not just through cpp. "Syntax error" is here to catch this case. cat >conftest.$ac_ext <<_ACEOF -#line 3334 "configure" +#line 3346 "configure" #include "confdefs.h" #include Syntax error _ACEOF -if { (eval echo "$as_me:3339: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:3351: \"$ac_cpp conftest.$ac_ext\"") >&5 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 ac_status=$? egrep -v '^ *\+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 - echo "$as_me:3345: \$? = $ac_status" >&5 + echo "$as_me:3357: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -3365,17 +3377,17 @@ rm -f conftest.err conftest.$ac_ext # OK, works on sane cases. Now check whether non-existent headers # can be detected and how. cat >conftest.$ac_ext <<_ACEOF -#line 3368 "configure" +#line 3380 "configure" #include "confdefs.h" #include _ACEOF -if { (eval echo "$as_me:3372: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:3384: \"$ac_cpp conftest.$ac_ext\"") >&5 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 ac_status=$? egrep -v '^ *\+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 - echo "$as_me:3378: \$? = $ac_status" >&5 + echo "$as_me:3390: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -3412,7 +3424,7 @@ fi else ac_cv_prog_CPP=$CPP fi -echo "$as_me:3415: result: $CPP" >&5 +echo "$as_me:3427: result: $CPP" >&5 echo "${ECHO_T}$CPP" >&6 ac_preproc_ok=false for ac_c_preproc_warn_flag in '' yes @@ -3422,18 +3434,18 @@ do # On the NeXT, cc -E runs the code through the compiler's parser, # not just through cpp. "Syntax error" is here to catch this case. cat >conftest.$ac_ext <<_ACEOF -#line 3425 "configure" +#line 3437 "configure" #include "confdefs.h" #include Syntax error _ACEOF -if { (eval echo "$as_me:3430: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:3442: \"$ac_cpp conftest.$ac_ext\"") >&5 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 ac_status=$? egrep -v '^ *\+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 - echo "$as_me:3436: \$? = $ac_status" >&5 + echo "$as_me:3448: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -3456,17 +3468,17 @@ rm -f conftest.err conftest.$ac_ext # OK, works on sane cases. Now check whether non-existent headers # can be detected and how. cat >conftest.$ac_ext <<_ACEOF -#line 3459 "configure" +#line 3471 "configure" #include "confdefs.h" #include _ACEOF -if { (eval echo "$as_me:3463: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:3475: \"$ac_cpp conftest.$ac_ext\"") >&5 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 ac_status=$? egrep -v '^ *\+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 - echo "$as_me:3469: \$? = $ac_status" >&5 + echo "$as_me:3481: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -3494,7 +3506,7 @@ rm -f conftest.err conftest.$ac_ext if $ac_preproc_ok; then : else - { { echo "$as_me:3497: error: C preprocessor \"$CPP\" fails sanity check" >&5 + { { echo "$as_me:3509: error: C preprocessor \"$CPP\" fails sanity check" >&5 echo "$as_me: error: C preprocessor \"$CPP\" fails sanity check" >&2;} { (exit 1); exit 1; }; } fi @@ -3509,13 +3521,13 @@ if test "$cross_compiling" = "yes" then YAP_EXTRAS= else - echo "$as_me:3512: checking for sys/wait.h that is POSIX.1 compatible" >&5 + echo "$as_me:3524: checking for sys/wait.h that is POSIX.1 compatible" >&5 echo $ECHO_N "checking for sys/wait.h that is POSIX.1 compatible... $ECHO_C" >&6 if test "${ac_cv_header_sys_wait_h+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 3518 "configure" +#line 3530 "configure" #include "confdefs.h" #include #include @@ -3537,16 +3549,16 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:3540: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:3552: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:3543: \$? = $ac_status" >&5 + echo "$as_me:3555: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:3546: \"$ac_try\"") >&5 + { (eval echo "$as_me:3558: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:3549: \$? = $ac_status" >&5 + echo "$as_me:3561: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_header_sys_wait_h=yes else @@ -3556,7 +3568,7 @@ ac_cv_header_sys_wait_h=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:3559: result: $ac_cv_header_sys_wait_h" >&5 +echo "$as_me:3571: result: $ac_cv_header_sys_wait_h" >&5 echo "${ECHO_T}$ac_cv_header_sys_wait_h" >&6 if test $ac_cv_header_sys_wait_h = yes; then @@ -3569,23 +3581,23 @@ fi for ac_header in unistd.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:3572: checking for $ac_header" >&5 +echo "$as_me:3584: checking for $ac_header" >&5 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 if eval "test \"\${$as_ac_Header+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 3578 "configure" +#line 3590 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:3582: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:3594: \"$ac_cpp conftest.$ac_ext\"") >&5 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 ac_status=$? egrep -v '^ *\+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 - echo "$as_me:3588: \$? = $ac_status" >&5 + echo "$as_me:3600: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -3604,7 +3616,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:3607: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:3619: result: `eval echo '${'$as_ac_Header'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 if test `eval echo '${'$as_ac_Header'}'` = yes; then cat >>confdefs.h <&5 +echo "$as_me:3629: checking for restartable system calls" >&5 echo $ECHO_N "checking for restartable system calls... $ECHO_C" >&6 if test "${ac_cv_sys_restartable_syscalls+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else if test "$cross_compiling" = yes; then - { { echo "$as_me:3623: error: cannot run test program while cross compiling" >&5 + { { echo "$as_me:3635: error: cannot run test program while cross compiling" >&5 echo "$as_me: error: cannot run test program while cross compiling" >&2;} { (exit 1); exit 1; }; } else cat >conftest.$ac_ext <<_ACEOF -#line 3628 "configure" +#line 3640 "configure" #include "confdefs.h" /* Exit 0 (true) if wait returns something other than -1, i.e. the pid of the child, which means that wait was restarted @@ -3671,15 +3683,15 @@ main () } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:3674: \"$ac_link\"") >&5 +if { (eval echo "$as_me:3686: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:3677: \$? = $ac_status" >&5 + echo "$as_me:3689: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:3679: \"$ac_try\"") >&5 + { (eval echo "$as_me:3691: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:3682: \$? = $ac_status" >&5 + echo "$as_me:3694: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_sys_restartable_syscalls=yes else @@ -3691,7 +3703,7 @@ fi rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi fi -echo "$as_me:3694: result: $ac_cv_sys_restartable_syscalls" >&5 +echo "$as_me:3706: result: $ac_cv_sys_restartable_syscalls" >&5 echo "${ECHO_T}$ac_cv_sys_restartable_syscalls" >&6 if test $ac_cv_sys_restartable_syscalls = yes; then @@ -3886,13 +3898,13 @@ case "$tabling" in ;; esac -echo "$as_me:3889: checking for ANSI C header files" >&5 +echo "$as_me:3901: checking for ANSI C header files" >&5 echo $ECHO_N "checking for ANSI C header files... $ECHO_C" >&6 if test "${ac_cv_header_stdc+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 3895 "configure" +#line 3907 "configure" #include "confdefs.h" #include #include @@ -3900,13 +3912,13 @@ else #include _ACEOF -if { (eval echo "$as_me:3903: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:3915: \"$ac_cpp conftest.$ac_ext\"") >&5 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 ac_status=$? egrep -v '^ *\+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 - echo "$as_me:3909: \$? = $ac_status" >&5 + echo "$as_me:3921: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -3928,7 +3940,7 @@ rm -f conftest.err conftest.$ac_ext if test $ac_cv_header_stdc = yes; then # SunOS 4.x string.h does not declare mem*, contrary to ANSI. cat >conftest.$ac_ext <<_ACEOF -#line 3931 "configure" +#line 3943 "configure" #include "confdefs.h" #include @@ -3946,7 +3958,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 <<_ACEOF -#line 3949 "configure" +#line 3961 "configure" #include "confdefs.h" #include @@ -3967,7 +3979,7 @@ if test $ac_cv_header_stdc = yes; then : else cat >conftest.$ac_ext <<_ACEOF -#line 3970 "configure" +#line 3982 "configure" #include "confdefs.h" #include #if ((' ' & 0x0FF) == 0x020) @@ -3993,15 +4005,15 @@ main () } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:3996: \"$ac_link\"") >&5 +if { (eval echo "$as_me:4008: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:3999: \$? = $ac_status" >&5 + echo "$as_me:4011: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:4001: \"$ac_try\"") >&5 + { (eval echo "$as_me:4013: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4004: \$? = $ac_status" >&5 + echo "$as_me:4016: \$? = $ac_status" >&5 (exit $ac_status); }; }; then : else @@ -4014,7 +4026,7 @@ rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi fi fi -echo "$as_me:4017: result: $ac_cv_header_stdc" >&5 +echo "$as_me:4029: result: $ac_cv_header_stdc" >&5 echo "${ECHO_T}$ac_cv_header_stdc" >&6 if test $ac_cv_header_stdc = yes; then @@ -4024,13 +4036,13 @@ EOF fi -echo "$as_me:4027: checking for sys/wait.h that is POSIX.1 compatible" >&5 +echo "$as_me:4039: checking for sys/wait.h that is POSIX.1 compatible" >&5 echo $ECHO_N "checking for sys/wait.h that is POSIX.1 compatible... $ECHO_C" >&6 if test "${ac_cv_header_sys_wait_h+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 4033 "configure" +#line 4045 "configure" #include "confdefs.h" #include #include @@ -4052,16 +4064,16 @@ main () } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:4055: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:4067: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:4058: \$? = $ac_status" >&5 + echo "$as_me:4070: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:4061: \"$ac_try\"") >&5 + { (eval echo "$as_me:4073: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4064: \$? = $ac_status" >&5 + echo "$as_me:4076: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_header_sys_wait_h=yes else @@ -4071,7 +4083,7 @@ ac_cv_header_sys_wait_h=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:4074: result: $ac_cv_header_sys_wait_h" >&5 +echo "$as_me:4086: result: $ac_cv_header_sys_wait_h" >&5 echo "${ECHO_T}$ac_cv_header_sys_wait_h" >&6 if test $ac_cv_header_sys_wait_h = yes; then @@ -4084,23 +4096,23 @@ fi for ac_header in arpa/inet.h ctype.h direct.h dirent.h errno.h fcntl.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:4087: checking for $ac_header" >&5 +echo "$as_me:4099: checking for $ac_header" >&5 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 if eval "test \"\${$as_ac_Header+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 4093 "configure" +#line 4105 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:4097: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:4109: \"$ac_cpp conftest.$ac_ext\"") >&5 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 ac_status=$? egrep -v '^ *\+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 - echo "$as_me:4103: \$? = $ac_status" >&5 + echo "$as_me:4115: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -4119,7 +4131,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:4122: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:4134: result: `eval echo '${'$as_ac_Header'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 if test `eval echo '${'$as_ac_Header'}'` = yes; then cat >>confdefs.h <&5 +echo "$as_me:4147: checking for $ac_header" >&5 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 if eval "test \"\${$as_ac_Header+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 4141 "configure" +#line 4153 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:4145: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:4157: \"$ac_cpp conftest.$ac_ext\"") >&5 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 ac_status=$? egrep -v '^ *\+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 - echo "$as_me:4151: \$? = $ac_status" >&5 + echo "$as_me:4163: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -4167,7 +4179,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:4170: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:4182: result: `eval echo '${'$as_ac_Header'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 if test `eval echo '${'$as_ac_Header'}'` = yes; then cat >>confdefs.h <&5 +echo "$as_me:4195: checking for $ac_header" >&5 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 if eval "test \"\${$as_ac_Header+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 4189 "configure" +#line 4201 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:4193: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:4205: \"$ac_cpp conftest.$ac_ext\"") >&5 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 ac_status=$? egrep -v '^ *\+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 - echo "$as_me:4199: \$? = $ac_status" >&5 + echo "$as_me:4211: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -4215,7 +4227,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:4218: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:4230: result: `eval echo '${'$as_ac_Header'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 if test `eval echo '${'$as_ac_Header'}'` = yes; then cat >>confdefs.h <&5 +echo "$as_me:4243: checking for $ac_header" >&5 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 if eval "test \"\${$as_ac_Header+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 4237 "configure" +#line 4249 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:4241: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:4253: \"$ac_cpp conftest.$ac_ext\"") >&5 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 ac_status=$? egrep -v '^ *\+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 - echo "$as_me:4247: \$? = $ac_status" >&5 + echo "$as_me:4259: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -4263,7 +4275,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:4266: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:4278: result: `eval echo '${'$as_ac_Header'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 if test `eval echo '${'$as_ac_Header'}'` = yes; then cat >>confdefs.h <&5 +echo "$as_me:4291: checking for $ac_header" >&5 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 if eval "test \"\${$as_ac_Header+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 4285 "configure" +#line 4297 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:4289: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:4301: \"$ac_cpp conftest.$ac_ext\"") >&5 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 ac_status=$? egrep -v '^ *\+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 - echo "$as_me:4295: \$? = $ac_status" >&5 + echo "$as_me:4307: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -4311,7 +4323,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:4314: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:4326: result: `eval echo '${'$as_ac_Header'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 if test `eval echo '${'$as_ac_Header'}'` = yes; then cat >>confdefs.h <&5 +echo "$as_me:4339: checking for $ac_header" >&5 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 if eval "test \"\${$as_ac_Header+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 4333 "configure" +#line 4345 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:4337: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:4349: \"$ac_cpp conftest.$ac_ext\"") >&5 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 ac_status=$? egrep -v '^ *\+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 - echo "$as_me:4343: \$? = $ac_status" >&5 + echo "$as_me:4355: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -4359,7 +4371,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:4362: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:4374: result: `eval echo '${'$as_ac_Header'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 if test `eval echo '${'$as_ac_Header'}'` = yes; then cat >>confdefs.h <&5 +echo "$as_me:4387: checking for $ac_header" >&5 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 if eval "test \"\${$as_ac_Header+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 4381 "configure" +#line 4393 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:4385: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:4397: \"$ac_cpp conftest.$ac_ext\"") >&5 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 ac_status=$? egrep -v '^ *\+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 - echo "$as_me:4391: \$? = $ac_status" >&5 + echo "$as_me:4403: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -4407,7 +4419,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:4410: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:4422: result: `eval echo '${'$as_ac_Header'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 if test `eval echo '${'$as_ac_Header'}'` = yes; then cat >>confdefs.h <&5 +echo "$as_me:4435: checking for $ac_header" >&5 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 if eval "test \"\${$as_ac_Header+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 4429 "configure" +#line 4441 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:4433: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:4445: \"$ac_cpp conftest.$ac_ext\"") >&5 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 ac_status=$? egrep -v '^ *\+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 - echo "$as_me:4439: \$? = $ac_status" >&5 + echo "$as_me:4451: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -4455,7 +4467,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:4458: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:4470: result: `eval echo '${'$as_ac_Header'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 if test `eval echo '${'$as_ac_Header'}'` = yes; then cat >>confdefs.h <&5 +echo "$as_me:4483: checking for $ac_header" >&5 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 if eval "test \"\${$as_ac_Header+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 4477 "configure" +#line 4489 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:4481: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:4493: \"$ac_cpp conftest.$ac_ext\"") >&5 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 ac_status=$? egrep -v '^ *\+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 - echo "$as_me:4487: \$? = $ac_status" >&5 + echo "$as_me:4499: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -4503,7 +4515,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:4506: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:4518: result: `eval echo '${'$as_ac_Header'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 if test `eval echo '${'$as_ac_Header'}'` = yes; then cat >>confdefs.h <&5 +echo "$as_me:4531: checking for $ac_header" >&5 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 if eval "test \"\${$as_ac_Header+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 4525 "configure" +#line 4537 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:4529: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:4541: \"$ac_cpp conftest.$ac_ext\"") >&5 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 ac_status=$? egrep -v '^ *\+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 - echo "$as_me:4535: \$? = $ac_status" >&5 + echo "$as_me:4547: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -4551,7 +4563,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:4554: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:4566: result: `eval echo '${'$as_ac_Header'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 if test `eval echo '${'$as_ac_Header'}'` = yes; then cat >>confdefs.h <&5 +echo "$as_me:4582: checking for $ac_header" >&5 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 if eval "test \"\${$as_ac_Header+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 4576 "configure" +#line 4588 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:4580: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:4592: \"$ac_cpp conftest.$ac_ext\"") >&5 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 ac_status=$? egrep -v '^ *\+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 - echo "$as_me:4586: \$? = $ac_status" >&5 + echo "$as_me:4598: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -4602,7 +4614,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:4605: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:4617: result: `eval echo '${'$as_ac_Header'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 if test `eval echo '${'$as_ac_Header'}'` = yes; then cat >>confdefs.h <&5 +echo "$as_me:4634: checking for $ac_header" >&5 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 if eval "test \"\${$as_ac_Header+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 4628 "configure" +#line 4640 "configure" #include "confdefs.h" #include <$ac_header> _ACEOF -if { (eval echo "$as_me:4632: \"$ac_cpp conftest.$ac_ext\"") >&5 +if { (eval echo "$as_me:4644: \"$ac_cpp conftest.$ac_ext\"") >&5 (eval $ac_cpp conftest.$ac_ext) 2>conftest.er1 ac_status=$? egrep -v '^ *\+' conftest.er1 >conftest.err rm -f conftest.er1 cat conftest.err >&5 - echo "$as_me:4638: \$? = $ac_status" >&5 + echo "$as_me:4650: \$? = $ac_status" >&5 (exit $ac_status); } >/dev/null; then if test -s conftest.err; then ac_cpp_err=$ac_c_preproc_warn_flag @@ -4654,7 +4666,7 @@ else fi rm -f conftest.err conftest.$ac_ext fi -echo "$as_me:4657: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:4669: result: `eval echo '${'$as_ac_Header'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 if test `eval echo '${'$as_ac_Header'}'` = yes; then cat >>confdefs.h <&5 +echo "$as_me:4681: checking for $CC option to accept ANSI C" >&5 echo $ECHO_N "checking for $CC option to accept ANSI C... $ECHO_C" >&6 if test "${ac_cv_prog_cc_stdc+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -4674,7 +4686,7 @@ else ac_cv_prog_cc_stdc=no ac_save_CC=$CC cat >conftest.$ac_ext <<_ACEOF -#line 4677 "configure" +#line 4689 "configure" #include "confdefs.h" #include #include @@ -4723,16 +4735,16 @@ for ac_arg in "" -qlanglvl=ansi -std1 -Ae "-Aa -D_HPUX_SOURCE" "-Xc -D__EXTENSIO do CC="$ac_save_CC $ac_arg" rm -f conftest.$ac_objext -if { (eval echo "$as_me:4726: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:4738: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:4729: \$? = $ac_status" >&5 + echo "$as_me:4741: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:4732: \"$ac_try\"") >&5 + { (eval echo "$as_me:4744: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4735: \$? = $ac_status" >&5 + echo "$as_me:4747: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_prog_cc_stdc=$ac_arg break @@ -4749,15 +4761,15 @@ fi case "x$ac_cv_prog_cc_stdc" in x|xno) - echo "$as_me:4752: result: none needed" >&5 + echo "$as_me:4764: result: none needed" >&5 echo "${ECHO_T}none needed" >&6 ;; *) - echo "$as_me:4755: result: $ac_cv_prog_cc_stdc" >&5 + echo "$as_me:4767: result: $ac_cv_prog_cc_stdc" >&5 echo "${ECHO_T}$ac_cv_prog_cc_stdc" >&6 CC="$CC $ac_cv_prog_cc_stdc" ;; esac -echo "$as_me:4760: checking for inline" >&5 +echo "$as_me:4772: checking for inline" >&5 echo $ECHO_N "checking for inline... $ECHO_C" >&6 if test "${ac_cv_c_inline+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -4765,7 +4777,7 @@ else ac_cv_c_inline=no for ac_kw in inline __inline__ __inline; do cat >conftest.$ac_ext <<_ACEOF -#line 4768 "configure" +#line 4780 "configure" #include "confdefs.h" #ifndef __cplusplus static $ac_kw int static_foo () {return 0; } @@ -4774,16 +4786,16 @@ $ac_kw int foo () {return 0; } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:4777: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:4789: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:4780: \$? = $ac_status" >&5 + echo "$as_me:4792: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:4783: \"$ac_try\"") >&5 + { (eval echo "$as_me:4795: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4786: \$? = $ac_status" >&5 + echo "$as_me:4798: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_c_inline=$ac_kw; break else @@ -4794,7 +4806,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext done fi -echo "$as_me:4797: result: $ac_cv_c_inline" >&5 +echo "$as_me:4809: result: $ac_cv_c_inline" >&5 echo "${ECHO_T}$ac_cv_c_inline" >&6 case $ac_cv_c_inline in inline | yes) ;; @@ -4809,13 +4821,13 @@ EOF ;; esac -echo "$as_me:4812: checking whether struct tm is in sys/time.h or time.h" >&5 +echo "$as_me:4824: checking whether struct tm is in sys/time.h or time.h" >&5 echo $ECHO_N "checking whether struct tm is in sys/time.h or time.h... $ECHO_C" >&6 if test "${ac_cv_struct_tm+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 4818 "configure" +#line 4830 "configure" #include "confdefs.h" #include #include @@ -4829,16 +4841,16 @@ struct tm *tp; tp->tm_sec; } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:4832: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:4844: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:4835: \$? = $ac_status" >&5 + echo "$as_me:4847: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:4838: \"$ac_try\"") >&5 + { (eval echo "$as_me:4850: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4841: \$? = $ac_status" >&5 + echo "$as_me:4853: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_struct_tm=time.h else @@ -4848,7 +4860,7 @@ ac_cv_struct_tm=sys/time.h fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:4851: result: $ac_cv_struct_tm" >&5 +echo "$as_me:4863: result: $ac_cv_struct_tm" >&5 echo "${ECHO_T}$ac_cv_struct_tm" >&6 if test $ac_cv_struct_tm = sys/time.h; then @@ -4864,28 +4876,28 @@ for ac_header in sys/types.h sys/stat.h stdlib.h string.h memory.h strings.h \ inttypes.h stdint.h unistd.h do as_ac_Header=`echo "ac_cv_header_$ac_header" | $as_tr_sh` -echo "$as_me:4867: checking for $ac_header" >&5 +echo "$as_me:4879: checking for $ac_header" >&5 echo $ECHO_N "checking for $ac_header... $ECHO_C" >&6 if eval "test \"\${$as_ac_Header+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 4873 "configure" +#line 4885 "configure" #include "confdefs.h" $ac_includes_default #include <$ac_header> _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:4879: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:4891: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:4882: \$? = $ac_status" >&5 + echo "$as_me:4894: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:4885: \"$ac_try\"") >&5 + { (eval echo "$as_me:4897: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4888: \$? = $ac_status" >&5 + echo "$as_me:4900: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_Header=yes" else @@ -4895,7 +4907,7 @@ eval "$as_ac_Header=no" fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:4898: result: `eval echo '${'$as_ac_Header'}'`" >&5 +echo "$as_me:4910: result: `eval echo '${'$as_ac_Header'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_Header'}'`" >&6 if test `eval echo '${'$as_ac_Header'}'` = yes; then cat >>confdefs.h <&5 +echo "$as_me:4920: checking for int *" >&5 echo $ECHO_N "checking for int *... $ECHO_C" >&6 if test "${ac_cv_type_int_p+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 4914 "configure" +#line 4926 "configure" #include "confdefs.h" $ac_includes_default int @@ -4926,16 +4938,16 @@ if (sizeof (int *)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:4929: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:4941: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:4932: \$? = $ac_status" >&5 + echo "$as_me:4944: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:4935: \"$ac_try\"") >&5 + { (eval echo "$as_me:4947: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4938: \$? = $ac_status" >&5 + echo "$as_me:4950: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_int_p=yes else @@ -4945,10 +4957,10 @@ ac_cv_type_int_p=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:4948: result: $ac_cv_type_int_p" >&5 +echo "$as_me:4960: result: $ac_cv_type_int_p" >&5 echo "${ECHO_T}$ac_cv_type_int_p" >&6 -echo "$as_me:4951: checking size of int *" >&5 +echo "$as_me:4963: checking size of int *" >&5 echo $ECHO_N "checking size of int *... $ECHO_C" >&6 if test "${ac_cv_sizeof_int_p+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -4957,7 +4969,7 @@ else if test "$cross_compiling" = yes; then # Depending upon the size, compute the lo and hi bounds. cat >conftest.$ac_ext <<_ACEOF -#line 4960 "configure" +#line 4972 "configure" #include "confdefs.h" $ac_includes_default int @@ -4969,21 +4981,21 @@ int _array_ [1 - 2 * !((sizeof (int *)) >= 0)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:4972: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:4984: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:4975: \$? = $ac_status" >&5 + echo "$as_me:4987: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:4978: \"$ac_try\"") >&5 + { (eval echo "$as_me:4990: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:4981: \$? = $ac_status" >&5 + echo "$as_me:4993: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=0 ac_mid=0 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 4986 "configure" +#line 4998 "configure" #include "confdefs.h" $ac_includes_default int @@ -4995,16 +5007,16 @@ int _array_ [1 - 2 * !((sizeof (int *)) <= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:4998: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:5010: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:5001: \$? = $ac_status" >&5 + echo "$as_me:5013: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:5004: \"$ac_try\"") >&5 + { (eval echo "$as_me:5016: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5007: \$? = $ac_status" >&5 + echo "$as_me:5019: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid; break else @@ -5020,7 +5032,7 @@ cat conftest.$ac_ext >&5 ac_hi=-1 ac_mid=-1 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 5023 "configure" +#line 5035 "configure" #include "confdefs.h" $ac_includes_default int @@ -5032,16 +5044,16 @@ int _array_ [1 - 2 * !((sizeof (int *)) >= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:5035: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:5047: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:5038: \$? = $ac_status" >&5 + echo "$as_me:5050: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:5041: \"$ac_try\"") >&5 + { (eval echo "$as_me:5053: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5044: \$? = $ac_status" >&5 + echo "$as_me:5056: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=$ac_mid; break else @@ -5057,7 +5069,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext while test "x$ac_lo" != "x$ac_hi"; do ac_mid=`expr '(' $ac_hi - $ac_lo ')' / 2 + $ac_lo` cat >conftest.$ac_ext <<_ACEOF -#line 5060 "configure" +#line 5072 "configure" #include "confdefs.h" $ac_includes_default int @@ -5069,16 +5081,16 @@ int _array_ [1 - 2 * !((sizeof (int *)) <= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:5072: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:5084: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:5075: \$? = $ac_status" >&5 + echo "$as_me:5087: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:5078: \"$ac_try\"") >&5 + { (eval echo "$as_me:5090: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5081: \$? = $ac_status" >&5 + echo "$as_me:5093: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid else @@ -5091,12 +5103,12 @@ done ac_cv_sizeof_int_p=$ac_lo else if test "$cross_compiling" = yes; then - { { echo "$as_me:5094: error: cannot run test program while cross compiling" >&5 + { { echo "$as_me:5106: error: cannot run test program while cross compiling" >&5 echo "$as_me: error: cannot run test program while cross compiling" >&2;} { (exit 1); exit 1; }; } else cat >conftest.$ac_ext <<_ACEOF -#line 5099 "configure" +#line 5111 "configure" #include "confdefs.h" $ac_includes_default int @@ -5112,15 +5124,15 @@ fclose (f); } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:5115: \"$ac_link\"") >&5 +if { (eval echo "$as_me:5127: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:5118: \$? = $ac_status" >&5 + echo "$as_me:5130: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:5120: \"$ac_try\"") >&5 + { (eval echo "$as_me:5132: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5123: \$? = $ac_status" >&5 + echo "$as_me:5135: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_sizeof_int_p=`cat conftest.val` else @@ -5136,19 +5148,19 @@ else ac_cv_sizeof_int_p=0 fi fi -echo "$as_me:5139: result: $ac_cv_sizeof_int_p" >&5 +echo "$as_me:5151: result: $ac_cv_sizeof_int_p" >&5 echo "${ECHO_T}$ac_cv_sizeof_int_p" >&6 cat >>confdefs.h <&5 +echo "$as_me:5157: checking for short int" >&5 echo $ECHO_N "checking for short int... $ECHO_C" >&6 if test "${ac_cv_type_short_int+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 5151 "configure" +#line 5163 "configure" #include "confdefs.h" $ac_includes_default int @@ -5163,16 +5175,16 @@ if (sizeof (short int)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:5166: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:5178: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:5169: \$? = $ac_status" >&5 + echo "$as_me:5181: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:5172: \"$ac_try\"") >&5 + { (eval echo "$as_me:5184: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5175: \$? = $ac_status" >&5 + echo "$as_me:5187: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_short_int=yes else @@ -5182,10 +5194,10 @@ ac_cv_type_short_int=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:5185: result: $ac_cv_type_short_int" >&5 +echo "$as_me:5197: result: $ac_cv_type_short_int" >&5 echo "${ECHO_T}$ac_cv_type_short_int" >&6 -echo "$as_me:5188: checking size of short int" >&5 +echo "$as_me:5200: checking size of short int" >&5 echo $ECHO_N "checking size of short int... $ECHO_C" >&6 if test "${ac_cv_sizeof_short_int+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -5194,7 +5206,7 @@ else if test "$cross_compiling" = yes; then # Depending upon the size, compute the lo and hi bounds. cat >conftest.$ac_ext <<_ACEOF -#line 5197 "configure" +#line 5209 "configure" #include "confdefs.h" $ac_includes_default int @@ -5206,21 +5218,21 @@ int _array_ [1 - 2 * !((sizeof (short int)) >= 0)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:5209: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:5221: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:5212: \$? = $ac_status" >&5 + echo "$as_me:5224: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:5215: \"$ac_try\"") >&5 + { (eval echo "$as_me:5227: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5218: \$? = $ac_status" >&5 + echo "$as_me:5230: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=0 ac_mid=0 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 5223 "configure" +#line 5235 "configure" #include "confdefs.h" $ac_includes_default int @@ -5232,16 +5244,16 @@ int _array_ [1 - 2 * !((sizeof (short int)) <= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:5235: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:5247: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:5238: \$? = $ac_status" >&5 + echo "$as_me:5250: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:5241: \"$ac_try\"") >&5 + { (eval echo "$as_me:5253: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5244: \$? = $ac_status" >&5 + echo "$as_me:5256: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid; break else @@ -5257,7 +5269,7 @@ cat conftest.$ac_ext >&5 ac_hi=-1 ac_mid=-1 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 5260 "configure" +#line 5272 "configure" #include "confdefs.h" $ac_includes_default int @@ -5269,16 +5281,16 @@ int _array_ [1 - 2 * !((sizeof (short int)) >= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:5272: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:5284: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:5275: \$? = $ac_status" >&5 + echo "$as_me:5287: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:5278: \"$ac_try\"") >&5 + { (eval echo "$as_me:5290: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5281: \$? = $ac_status" >&5 + echo "$as_me:5293: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=$ac_mid; break else @@ -5294,7 +5306,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext while test "x$ac_lo" != "x$ac_hi"; do ac_mid=`expr '(' $ac_hi - $ac_lo ')' / 2 + $ac_lo` cat >conftest.$ac_ext <<_ACEOF -#line 5297 "configure" +#line 5309 "configure" #include "confdefs.h" $ac_includes_default int @@ -5306,16 +5318,16 @@ int _array_ [1 - 2 * !((sizeof (short int)) <= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:5309: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:5321: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:5312: \$? = $ac_status" >&5 + echo "$as_me:5324: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:5315: \"$ac_try\"") >&5 + { (eval echo "$as_me:5327: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5318: \$? = $ac_status" >&5 + echo "$as_me:5330: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid else @@ -5328,12 +5340,12 @@ done ac_cv_sizeof_short_int=$ac_lo else if test "$cross_compiling" = yes; then - { { echo "$as_me:5331: error: cannot run test program while cross compiling" >&5 + { { echo "$as_me:5343: error: cannot run test program while cross compiling" >&5 echo "$as_me: error: cannot run test program while cross compiling" >&2;} { (exit 1); exit 1; }; } else cat >conftest.$ac_ext <<_ACEOF -#line 5336 "configure" +#line 5348 "configure" #include "confdefs.h" $ac_includes_default int @@ -5349,15 +5361,15 @@ fclose (f); } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:5352: \"$ac_link\"") >&5 +if { (eval echo "$as_me:5364: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:5355: \$? = $ac_status" >&5 + echo "$as_me:5367: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:5357: \"$ac_try\"") >&5 + { (eval echo "$as_me:5369: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5360: \$? = $ac_status" >&5 + echo "$as_me:5372: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_sizeof_short_int=`cat conftest.val` else @@ -5373,19 +5385,19 @@ else ac_cv_sizeof_short_int=0 fi fi -echo "$as_me:5376: result: $ac_cv_sizeof_short_int" >&5 +echo "$as_me:5388: result: $ac_cv_sizeof_short_int" >&5 echo "${ECHO_T}$ac_cv_sizeof_short_int" >&6 cat >>confdefs.h <&5 +echo "$as_me:5394: checking for int" >&5 echo $ECHO_N "checking for int... $ECHO_C" >&6 if test "${ac_cv_type_int+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 5388 "configure" +#line 5400 "configure" #include "confdefs.h" $ac_includes_default int @@ -5400,16 +5412,16 @@ if (sizeof (int)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:5403: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:5415: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:5406: \$? = $ac_status" >&5 + echo "$as_me:5418: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:5409: \"$ac_try\"") >&5 + { (eval echo "$as_me:5421: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5412: \$? = $ac_status" >&5 + echo "$as_me:5424: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_int=yes else @@ -5419,10 +5431,10 @@ ac_cv_type_int=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:5422: result: $ac_cv_type_int" >&5 +echo "$as_me:5434: result: $ac_cv_type_int" >&5 echo "${ECHO_T}$ac_cv_type_int" >&6 -echo "$as_me:5425: checking size of int" >&5 +echo "$as_me:5437: checking size of int" >&5 echo $ECHO_N "checking size of int... $ECHO_C" >&6 if test "${ac_cv_sizeof_int+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -5431,7 +5443,7 @@ else if test "$cross_compiling" = yes; then # Depending upon the size, compute the lo and hi bounds. cat >conftest.$ac_ext <<_ACEOF -#line 5434 "configure" +#line 5446 "configure" #include "confdefs.h" $ac_includes_default int @@ -5443,21 +5455,21 @@ int _array_ [1 - 2 * !((sizeof (int)) >= 0)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:5446: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:5458: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:5449: \$? = $ac_status" >&5 + echo "$as_me:5461: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:5452: \"$ac_try\"") >&5 + { (eval echo "$as_me:5464: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5455: \$? = $ac_status" >&5 + echo "$as_me:5467: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=0 ac_mid=0 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 5460 "configure" +#line 5472 "configure" #include "confdefs.h" $ac_includes_default int @@ -5469,16 +5481,16 @@ int _array_ [1 - 2 * !((sizeof (int)) <= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:5472: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:5484: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:5475: \$? = $ac_status" >&5 + echo "$as_me:5487: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:5478: \"$ac_try\"") >&5 + { (eval echo "$as_me:5490: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5481: \$? = $ac_status" >&5 + echo "$as_me:5493: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid; break else @@ -5494,7 +5506,7 @@ cat conftest.$ac_ext >&5 ac_hi=-1 ac_mid=-1 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 5497 "configure" +#line 5509 "configure" #include "confdefs.h" $ac_includes_default int @@ -5506,16 +5518,16 @@ int _array_ [1 - 2 * !((sizeof (int)) >= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:5509: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:5521: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:5512: \$? = $ac_status" >&5 + echo "$as_me:5524: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:5515: \"$ac_try\"") >&5 + { (eval echo "$as_me:5527: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5518: \$? = $ac_status" >&5 + echo "$as_me:5530: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=$ac_mid; break else @@ -5531,7 +5543,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext while test "x$ac_lo" != "x$ac_hi"; do ac_mid=`expr '(' $ac_hi - $ac_lo ')' / 2 + $ac_lo` cat >conftest.$ac_ext <<_ACEOF -#line 5534 "configure" +#line 5546 "configure" #include "confdefs.h" $ac_includes_default int @@ -5543,16 +5555,16 @@ int _array_ [1 - 2 * !((sizeof (int)) <= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:5546: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:5558: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:5549: \$? = $ac_status" >&5 + echo "$as_me:5561: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:5552: \"$ac_try\"") >&5 + { (eval echo "$as_me:5564: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5555: \$? = $ac_status" >&5 + echo "$as_me:5567: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid else @@ -5565,12 +5577,12 @@ done ac_cv_sizeof_int=$ac_lo else if test "$cross_compiling" = yes; then - { { echo "$as_me:5568: error: cannot run test program while cross compiling" >&5 + { { echo "$as_me:5580: error: cannot run test program while cross compiling" >&5 echo "$as_me: error: cannot run test program while cross compiling" >&2;} { (exit 1); exit 1; }; } else cat >conftest.$ac_ext <<_ACEOF -#line 5573 "configure" +#line 5585 "configure" #include "confdefs.h" $ac_includes_default int @@ -5586,15 +5598,15 @@ fclose (f); } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:5589: \"$ac_link\"") >&5 +if { (eval echo "$as_me:5601: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:5592: \$? = $ac_status" >&5 + echo "$as_me:5604: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:5594: \"$ac_try\"") >&5 + { (eval echo "$as_me:5606: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5597: \$? = $ac_status" >&5 + echo "$as_me:5609: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_sizeof_int=`cat conftest.val` else @@ -5610,19 +5622,19 @@ else ac_cv_sizeof_int=0 fi fi -echo "$as_me:5613: result: $ac_cv_sizeof_int" >&5 +echo "$as_me:5625: result: $ac_cv_sizeof_int" >&5 echo "${ECHO_T}$ac_cv_sizeof_int" >&6 cat >>confdefs.h <&5 +echo "$as_me:5631: checking for long int" >&5 echo $ECHO_N "checking for long int... $ECHO_C" >&6 if test "${ac_cv_type_long_int+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 5625 "configure" +#line 5637 "configure" #include "confdefs.h" $ac_includes_default int @@ -5637,16 +5649,16 @@ if (sizeof (long int)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:5640: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:5652: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:5643: \$? = $ac_status" >&5 + echo "$as_me:5655: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:5646: \"$ac_try\"") >&5 + { (eval echo "$as_me:5658: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5649: \$? = $ac_status" >&5 + echo "$as_me:5661: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_long_int=yes else @@ -5656,10 +5668,10 @@ ac_cv_type_long_int=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:5659: result: $ac_cv_type_long_int" >&5 +echo "$as_me:5671: result: $ac_cv_type_long_int" >&5 echo "${ECHO_T}$ac_cv_type_long_int" >&6 -echo "$as_me:5662: checking size of long int" >&5 +echo "$as_me:5674: checking size of long int" >&5 echo $ECHO_N "checking size of long int... $ECHO_C" >&6 if test "${ac_cv_sizeof_long_int+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -5668,7 +5680,7 @@ else if test "$cross_compiling" = yes; then # Depending upon the size, compute the lo and hi bounds. cat >conftest.$ac_ext <<_ACEOF -#line 5671 "configure" +#line 5683 "configure" #include "confdefs.h" $ac_includes_default int @@ -5680,21 +5692,21 @@ int _array_ [1 - 2 * !((sizeof (long int)) >= 0)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:5683: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:5695: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:5686: \$? = $ac_status" >&5 + echo "$as_me:5698: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:5689: \"$ac_try\"") >&5 + { (eval echo "$as_me:5701: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5692: \$? = $ac_status" >&5 + echo "$as_me:5704: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=0 ac_mid=0 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 5697 "configure" +#line 5709 "configure" #include "confdefs.h" $ac_includes_default int @@ -5706,16 +5718,16 @@ int _array_ [1 - 2 * !((sizeof (long int)) <= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:5709: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:5721: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:5712: \$? = $ac_status" >&5 + echo "$as_me:5724: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:5715: \"$ac_try\"") >&5 + { (eval echo "$as_me:5727: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5718: \$? = $ac_status" >&5 + echo "$as_me:5730: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid; break else @@ -5731,7 +5743,7 @@ cat conftest.$ac_ext >&5 ac_hi=-1 ac_mid=-1 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 5734 "configure" +#line 5746 "configure" #include "confdefs.h" $ac_includes_default int @@ -5743,16 +5755,16 @@ int _array_ [1 - 2 * !((sizeof (long int)) >= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:5746: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:5758: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:5749: \$? = $ac_status" >&5 + echo "$as_me:5761: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:5752: \"$ac_try\"") >&5 + { (eval echo "$as_me:5764: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5755: \$? = $ac_status" >&5 + echo "$as_me:5767: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=$ac_mid; break else @@ -5768,7 +5780,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext while test "x$ac_lo" != "x$ac_hi"; do ac_mid=`expr '(' $ac_hi - $ac_lo ')' / 2 + $ac_lo` cat >conftest.$ac_ext <<_ACEOF -#line 5771 "configure" +#line 5783 "configure" #include "confdefs.h" $ac_includes_default int @@ -5780,16 +5792,16 @@ int _array_ [1 - 2 * !((sizeof (long int)) <= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:5783: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:5795: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:5786: \$? = $ac_status" >&5 + echo "$as_me:5798: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:5789: \"$ac_try\"") >&5 + { (eval echo "$as_me:5801: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5792: \$? = $ac_status" >&5 + echo "$as_me:5804: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid else @@ -5802,12 +5814,12 @@ done ac_cv_sizeof_long_int=$ac_lo else if test "$cross_compiling" = yes; then - { { echo "$as_me:5805: error: cannot run test program while cross compiling" >&5 + { { echo "$as_me:5817: error: cannot run test program while cross compiling" >&5 echo "$as_me: error: cannot run test program while cross compiling" >&2;} { (exit 1); exit 1; }; } else cat >conftest.$ac_ext <<_ACEOF -#line 5810 "configure" +#line 5822 "configure" #include "confdefs.h" $ac_includes_default int @@ -5823,15 +5835,15 @@ fclose (f); } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:5826: \"$ac_link\"") >&5 +if { (eval echo "$as_me:5838: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:5829: \$? = $ac_status" >&5 + echo "$as_me:5841: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:5831: \"$ac_try\"") >&5 + { (eval echo "$as_me:5843: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5834: \$? = $ac_status" >&5 + echo "$as_me:5846: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_sizeof_long_int=`cat conftest.val` else @@ -5847,19 +5859,19 @@ else ac_cv_sizeof_long_int=0 fi fi -echo "$as_me:5850: result: $ac_cv_sizeof_long_int" >&5 +echo "$as_me:5862: result: $ac_cv_sizeof_long_int" >&5 echo "${ECHO_T}$ac_cv_sizeof_long_int" >&6 cat >>confdefs.h <&5 +echo "$as_me:5868: checking for long long int" >&5 echo $ECHO_N "checking for long long int... $ECHO_C" >&6 if test "${ac_cv_type_long_long_int+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 5862 "configure" +#line 5874 "configure" #include "confdefs.h" $ac_includes_default int @@ -5874,16 +5886,16 @@ if (sizeof (long long int)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:5877: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:5889: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:5880: \$? = $ac_status" >&5 + echo "$as_me:5892: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:5883: \"$ac_try\"") >&5 + { (eval echo "$as_me:5895: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5886: \$? = $ac_status" >&5 + echo "$as_me:5898: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_long_long_int=yes else @@ -5893,10 +5905,10 @@ ac_cv_type_long_long_int=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:5896: result: $ac_cv_type_long_long_int" >&5 +echo "$as_me:5908: result: $ac_cv_type_long_long_int" >&5 echo "${ECHO_T}$ac_cv_type_long_long_int" >&6 -echo "$as_me:5899: checking size of long long int" >&5 +echo "$as_me:5911: checking size of long long int" >&5 echo $ECHO_N "checking size of long long int... $ECHO_C" >&6 if test "${ac_cv_sizeof_long_long_int+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -5905,7 +5917,7 @@ else if test "$cross_compiling" = yes; then # Depending upon the size, compute the lo and hi bounds. cat >conftest.$ac_ext <<_ACEOF -#line 5908 "configure" +#line 5920 "configure" #include "confdefs.h" $ac_includes_default int @@ -5917,21 +5929,21 @@ int _array_ [1 - 2 * !((sizeof (long long int)) >= 0)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:5920: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:5932: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:5923: \$? = $ac_status" >&5 + echo "$as_me:5935: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:5926: \"$ac_try\"") >&5 + { (eval echo "$as_me:5938: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5929: \$? = $ac_status" >&5 + echo "$as_me:5941: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=0 ac_mid=0 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 5934 "configure" +#line 5946 "configure" #include "confdefs.h" $ac_includes_default int @@ -5943,16 +5955,16 @@ int _array_ [1 - 2 * !((sizeof (long long int)) <= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:5946: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:5958: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:5949: \$? = $ac_status" >&5 + echo "$as_me:5961: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:5952: \"$ac_try\"") >&5 + { (eval echo "$as_me:5964: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5955: \$? = $ac_status" >&5 + echo "$as_me:5967: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid; break else @@ -5968,7 +5980,7 @@ cat conftest.$ac_ext >&5 ac_hi=-1 ac_mid=-1 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 5971 "configure" +#line 5983 "configure" #include "confdefs.h" $ac_includes_default int @@ -5980,16 +5992,16 @@ int _array_ [1 - 2 * !((sizeof (long long int)) >= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:5983: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:5995: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:5986: \$? = $ac_status" >&5 + echo "$as_me:5998: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:5989: \"$ac_try\"") >&5 + { (eval echo "$as_me:6001: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:5992: \$? = $ac_status" >&5 + echo "$as_me:6004: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=$ac_mid; break else @@ -6005,7 +6017,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext while test "x$ac_lo" != "x$ac_hi"; do ac_mid=`expr '(' $ac_hi - $ac_lo ')' / 2 + $ac_lo` cat >conftest.$ac_ext <<_ACEOF -#line 6008 "configure" +#line 6020 "configure" #include "confdefs.h" $ac_includes_default int @@ -6017,16 +6029,16 @@ int _array_ [1 - 2 * !((sizeof (long long int)) <= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:6020: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:6032: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:6023: \$? = $ac_status" >&5 + echo "$as_me:6035: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:6026: \"$ac_try\"") >&5 + { (eval echo "$as_me:6038: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:6029: \$? = $ac_status" >&5 + echo "$as_me:6041: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid else @@ -6039,12 +6051,12 @@ done ac_cv_sizeof_long_long_int=$ac_lo else if test "$cross_compiling" = yes; then - { { echo "$as_me:6042: error: cannot run test program while cross compiling" >&5 + { { echo "$as_me:6054: error: cannot run test program while cross compiling" >&5 echo "$as_me: error: cannot run test program while cross compiling" >&2;} { (exit 1); exit 1; }; } else cat >conftest.$ac_ext <<_ACEOF -#line 6047 "configure" +#line 6059 "configure" #include "confdefs.h" $ac_includes_default int @@ -6060,15 +6072,15 @@ fclose (f); } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:6063: \"$ac_link\"") >&5 +if { (eval echo "$as_me:6075: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:6066: \$? = $ac_status" >&5 + echo "$as_me:6078: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:6068: \"$ac_try\"") >&5 + { (eval echo "$as_me:6080: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:6071: \$? = $ac_status" >&5 + echo "$as_me:6083: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_sizeof_long_long_int=`cat conftest.val` else @@ -6084,19 +6096,19 @@ else ac_cv_sizeof_long_long_int=0 fi fi -echo "$as_me:6087: result: $ac_cv_sizeof_long_long_int" >&5 +echo "$as_me:6099: result: $ac_cv_sizeof_long_long_int" >&5 echo "${ECHO_T}$ac_cv_sizeof_long_long_int" >&6 cat >>confdefs.h <&5 +echo "$as_me:6105: checking for float" >&5 echo $ECHO_N "checking for float... $ECHO_C" >&6 if test "${ac_cv_type_float+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 6099 "configure" +#line 6111 "configure" #include "confdefs.h" $ac_includes_default int @@ -6111,16 +6123,16 @@ if (sizeof (float)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:6114: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:6126: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:6117: \$? = $ac_status" >&5 + echo "$as_me:6129: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:6120: \"$ac_try\"") >&5 + { (eval echo "$as_me:6132: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:6123: \$? = $ac_status" >&5 + echo "$as_me:6135: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_float=yes else @@ -6130,10 +6142,10 @@ ac_cv_type_float=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:6133: result: $ac_cv_type_float" >&5 +echo "$as_me:6145: result: $ac_cv_type_float" >&5 echo "${ECHO_T}$ac_cv_type_float" >&6 -echo "$as_me:6136: checking size of float" >&5 +echo "$as_me:6148: checking size of float" >&5 echo $ECHO_N "checking size of float... $ECHO_C" >&6 if test "${ac_cv_sizeof_float+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -6142,7 +6154,7 @@ else if test "$cross_compiling" = yes; then # Depending upon the size, compute the lo and hi bounds. cat >conftest.$ac_ext <<_ACEOF -#line 6145 "configure" +#line 6157 "configure" #include "confdefs.h" $ac_includes_default int @@ -6154,21 +6166,21 @@ int _array_ [1 - 2 * !((sizeof (float)) >= 0)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:6157: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:6169: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:6160: \$? = $ac_status" >&5 + echo "$as_me:6172: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:6163: \"$ac_try\"") >&5 + { (eval echo "$as_me:6175: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:6166: \$? = $ac_status" >&5 + echo "$as_me:6178: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=0 ac_mid=0 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 6171 "configure" +#line 6183 "configure" #include "confdefs.h" $ac_includes_default int @@ -6180,16 +6192,16 @@ int _array_ [1 - 2 * !((sizeof (float)) <= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:6183: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:6195: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:6186: \$? = $ac_status" >&5 + echo "$as_me:6198: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:6189: \"$ac_try\"") >&5 + { (eval echo "$as_me:6201: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:6192: \$? = $ac_status" >&5 + echo "$as_me:6204: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid; break else @@ -6205,7 +6217,7 @@ cat conftest.$ac_ext >&5 ac_hi=-1 ac_mid=-1 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 6208 "configure" +#line 6220 "configure" #include "confdefs.h" $ac_includes_default int @@ -6217,16 +6229,16 @@ int _array_ [1 - 2 * !((sizeof (float)) >= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:6220: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:6232: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:6223: \$? = $ac_status" >&5 + echo "$as_me:6235: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:6226: \"$ac_try\"") >&5 + { (eval echo "$as_me:6238: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:6229: \$? = $ac_status" >&5 + echo "$as_me:6241: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=$ac_mid; break else @@ -6242,7 +6254,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext while test "x$ac_lo" != "x$ac_hi"; do ac_mid=`expr '(' $ac_hi - $ac_lo ')' / 2 + $ac_lo` cat >conftest.$ac_ext <<_ACEOF -#line 6245 "configure" +#line 6257 "configure" #include "confdefs.h" $ac_includes_default int @@ -6254,16 +6266,16 @@ int _array_ [1 - 2 * !((sizeof (float)) <= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:6257: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:6269: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:6260: \$? = $ac_status" >&5 + echo "$as_me:6272: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:6263: \"$ac_try\"") >&5 + { (eval echo "$as_me:6275: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:6266: \$? = $ac_status" >&5 + echo "$as_me:6278: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid else @@ -6276,12 +6288,12 @@ done ac_cv_sizeof_float=$ac_lo else if test "$cross_compiling" = yes; then - { { echo "$as_me:6279: error: cannot run test program while cross compiling" >&5 + { { echo "$as_me:6291: error: cannot run test program while cross compiling" >&5 echo "$as_me: error: cannot run test program while cross compiling" >&2;} { (exit 1); exit 1; }; } else cat >conftest.$ac_ext <<_ACEOF -#line 6284 "configure" +#line 6296 "configure" #include "confdefs.h" $ac_includes_default int @@ -6297,15 +6309,15 @@ fclose (f); } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:6300: \"$ac_link\"") >&5 +if { (eval echo "$as_me:6312: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:6303: \$? = $ac_status" >&5 + echo "$as_me:6315: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:6305: \"$ac_try\"") >&5 + { (eval echo "$as_me:6317: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:6308: \$? = $ac_status" >&5 + echo "$as_me:6320: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_sizeof_float=`cat conftest.val` else @@ -6321,19 +6333,19 @@ else ac_cv_sizeof_float=0 fi fi -echo "$as_me:6324: result: $ac_cv_sizeof_float" >&5 +echo "$as_me:6336: result: $ac_cv_sizeof_float" >&5 echo "${ECHO_T}$ac_cv_sizeof_float" >&6 cat >>confdefs.h <&5 +echo "$as_me:6342: checking for double" >&5 echo $ECHO_N "checking for double... $ECHO_C" >&6 if test "${ac_cv_type_double+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 6336 "configure" +#line 6348 "configure" #include "confdefs.h" $ac_includes_default int @@ -6348,16 +6360,16 @@ if (sizeof (double)) } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:6351: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:6363: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:6354: \$? = $ac_status" >&5 + echo "$as_me:6366: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:6357: \"$ac_try\"") >&5 + { (eval echo "$as_me:6369: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:6360: \$? = $ac_status" >&5 + echo "$as_me:6372: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_double=yes else @@ -6367,10 +6379,10 @@ ac_cv_type_double=no fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:6370: result: $ac_cv_type_double" >&5 +echo "$as_me:6382: result: $ac_cv_type_double" >&5 echo "${ECHO_T}$ac_cv_type_double" >&6 -echo "$as_me:6373: checking size of double" >&5 +echo "$as_me:6385: checking size of double" >&5 echo $ECHO_N "checking size of double... $ECHO_C" >&6 if test "${ac_cv_sizeof_double+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -6379,7 +6391,7 @@ else if test "$cross_compiling" = yes; then # Depending upon the size, compute the lo and hi bounds. cat >conftest.$ac_ext <<_ACEOF -#line 6382 "configure" +#line 6394 "configure" #include "confdefs.h" $ac_includes_default int @@ -6391,21 +6403,21 @@ int _array_ [1 - 2 * !((sizeof (double)) >= 0)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:6394: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:6406: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:6397: \$? = $ac_status" >&5 + echo "$as_me:6409: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:6400: \"$ac_try\"") >&5 + { (eval echo "$as_me:6412: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:6403: \$? = $ac_status" >&5 + echo "$as_me:6415: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=0 ac_mid=0 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 6408 "configure" +#line 6420 "configure" #include "confdefs.h" $ac_includes_default int @@ -6417,16 +6429,16 @@ int _array_ [1 - 2 * !((sizeof (double)) <= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:6420: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:6432: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:6423: \$? = $ac_status" >&5 + echo "$as_me:6435: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:6426: \"$ac_try\"") >&5 + { (eval echo "$as_me:6438: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:6429: \$? = $ac_status" >&5 + echo "$as_me:6441: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid; break else @@ -6442,7 +6454,7 @@ cat conftest.$ac_ext >&5 ac_hi=-1 ac_mid=-1 while :; do cat >conftest.$ac_ext <<_ACEOF -#line 6445 "configure" +#line 6457 "configure" #include "confdefs.h" $ac_includes_default int @@ -6454,16 +6466,16 @@ int _array_ [1 - 2 * !((sizeof (double)) >= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:6457: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:6469: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:6460: \$? = $ac_status" >&5 + echo "$as_me:6472: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:6463: \"$ac_try\"") >&5 + { (eval echo "$as_me:6475: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:6466: \$? = $ac_status" >&5 + echo "$as_me:6478: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_lo=$ac_mid; break else @@ -6479,7 +6491,7 @@ rm -f conftest.$ac_objext conftest.$ac_ext while test "x$ac_lo" != "x$ac_hi"; do ac_mid=`expr '(' $ac_hi - $ac_lo ')' / 2 + $ac_lo` cat >conftest.$ac_ext <<_ACEOF -#line 6482 "configure" +#line 6494 "configure" #include "confdefs.h" $ac_includes_default int @@ -6491,16 +6503,16 @@ int _array_ [1 - 2 * !((sizeof (double)) <= $ac_mid)] } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:6494: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:6506: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:6497: \$? = $ac_status" >&5 + echo "$as_me:6509: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:6500: \"$ac_try\"") >&5 + { (eval echo "$as_me:6512: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:6503: \$? = $ac_status" >&5 + echo "$as_me:6515: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_hi=$ac_mid else @@ -6513,12 +6525,12 @@ done ac_cv_sizeof_double=$ac_lo else if test "$cross_compiling" = yes; then - { { echo "$as_me:6516: error: cannot run test program while cross compiling" >&5 + { { echo "$as_me:6528: error: cannot run test program while cross compiling" >&5 echo "$as_me: error: cannot run test program while cross compiling" >&2;} { (exit 1); exit 1; }; } else cat >conftest.$ac_ext <<_ACEOF -#line 6521 "configure" +#line 6533 "configure" #include "confdefs.h" $ac_includes_default int @@ -6534,15 +6546,15 @@ fclose (f); } _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:6537: \"$ac_link\"") >&5 +if { (eval echo "$as_me:6549: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:6540: \$? = $ac_status" >&5 + echo "$as_me:6552: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:6542: \"$ac_try\"") >&5 + { (eval echo "$as_me:6554: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:6545: \$? = $ac_status" >&5 + echo "$as_me:6557: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_sizeof_double=`cat conftest.val` else @@ -6558,13 +6570,13 @@ else ac_cv_sizeof_double=0 fi fi -echo "$as_me:6561: result: $ac_cv_sizeof_double" >&5 +echo "$as_me:6573: result: $ac_cv_sizeof_double" >&5 echo "${ECHO_T}$ac_cv_sizeof_double" >&6 cat >>confdefs.h <&5 +echo "$as_me:6579: checking for type of malloc" >&5 echo $ECHO_N "checking for type of malloc... $ECHO_C" >&6 if test "${yap_cv_malloct+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -6574,7 +6586,7 @@ if test "$cross_compiling" = yes; then yap_cv_malloct=void else cat >conftest.$ac_ext <<_ACEOF -#line 6577 "configure" +#line 6589 "configure" #include "confdefs.h" #include char *malloc(size_t); @@ -6585,15 +6597,15 @@ else _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:6588: \"$ac_link\"") >&5 +if { (eval echo "$as_me:6600: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:6591: \$? = $ac_status" >&5 + echo "$as_me:6603: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:6593: \"$ac_try\"") >&5 + { (eval echo "$as_me:6605: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:6596: \$? = $ac_status" >&5 + echo "$as_me:6608: \$? = $ac_status" >&5 (exit $ac_status); }; }; then yap_cv_malloct=char else @@ -6606,7 +6618,7 @@ rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi fi -echo "$as_me:6609: result: $yap_cv_malloct *" >&5 +echo "$as_me:6621: result: $yap_cv_malloct *" >&5 echo "${ECHO_T}$yap_cv_malloct *" >&6 if test $yap_cv_malloct = void then cat >>confdefs.h <<\EOF @@ -6619,7 +6631,7 @@ EOF fi -echo "$as_me:6622: checking for gcc inline" >&5 +echo "$as_me:6634: checking for gcc inline" >&5 echo $ECHO_N "checking for gcc inline... $ECHO_C" >&6 if test "${yap_cv_gcc+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -6629,7 +6641,7 @@ if test "$cross_compiling" = yes; then yap_cv_gcc=yes else cat >conftest.$ac_ext <<_ACEOF -#line 6632 "configure" +#line 6644 "configure" #include "confdefs.h" #undef inline inline int f(int x) {return x+1;} @@ -6637,15 +6649,15 @@ else _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:6640: \"$ac_link\"") >&5 +if { (eval echo "$as_me:6652: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:6643: \$? = $ac_status" >&5 + echo "$as_me:6655: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:6645: \"$ac_try\"") >&5 + { (eval echo "$as_me:6657: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:6648: \$? = $ac_status" >&5 + echo "$as_me:6660: \$? = $ac_status" >&5 (exit $ac_status); }; }; then yap_cv_gcc=yes else @@ -6658,7 +6670,7 @@ rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi fi -echo "$as_me:6661: result: $yap_cv_gcc" >&5 +echo "$as_me:6673: result: $yap_cv_gcc" >&5 echo "${ECHO_T}$yap_cv_gcc" >&6 if test $yap_cv_gcc = yes then @@ -6675,7 +6687,7 @@ EOF fi -echo "$as_me:6678: checking for gcc threaded code" >&5 +echo "$as_me:6690: checking for gcc threaded code" >&5 echo $ECHO_N "checking for gcc threaded code... $ECHO_C" >&6 if test "${yap_cv_threaded_code+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -6685,7 +6697,7 @@ if test "$cross_compiling" = yes; then yap_cv_threaded_code=yes else cat >conftest.$ac_ext <<_ACEOF -#line 6688 "configure" +#line 6700 "configure" #include "confdefs.h" int main() { void *t = &&l2; @@ -6695,15 +6707,15 @@ int main() { _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:6698: \"$ac_link\"") >&5 +if { (eval echo "$as_me:6710: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:6701: \$? = $ac_status" >&5 + echo "$as_me:6713: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:6703: \"$ac_try\"") >&5 + { (eval echo "$as_me:6715: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:6706: \$? = $ac_status" >&5 + echo "$as_me:6718: \$? = $ac_status" >&5 (exit $ac_status); }; }; then yap_cv_threaded_code=yes else @@ -6716,7 +6728,7 @@ rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi fi -echo "$as_me:6719: result: $yap_cv_threaded_code" >&5 +echo "$as_me:6731: result: $yap_cv_threaded_code" >&5 echo "${ECHO_T}$yap_cv_threaded_code" >&6 if test $yap_cv_threaded_code = yes && test $yap_cv_gcc = yes then @@ -6733,7 +6745,7 @@ EOF M4GENABSMI=gen_ansi.m4 fi -echo "$as_me:6736: checking for IEEE floats" >&5 +echo "$as_me:6748: checking for IEEE floats" >&5 echo $ECHO_N "checking for IEEE floats... $ECHO_C" >&6 if test "${yap_cv_ffieee+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -6743,7 +6755,7 @@ if test "$cross_compiling" = yes; then yap_cv_ffieee=yes else cat >conftest.$ac_ext <<_ACEOF -#line 6746 "configure" +#line 6758 "configure" #include "confdefs.h" int main() { union { float f; int i} a; @@ -6754,15 +6766,15 @@ int main() { _ACEOF rm -f conftest$ac_exeext -if { (eval echo "$as_me:6757: \"$ac_link\"") >&5 +if { (eval echo "$as_me:6769: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:6760: \$? = $ac_status" >&5 + echo "$as_me:6772: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='./conftest$ac_exeext' - { (eval echo "$as_me:6762: \"$ac_try\"") >&5 + { (eval echo "$as_me:6774: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:6765: \$? = $ac_status" >&5 + echo "$as_me:6777: \$? = $ac_status" >&5 (exit $ac_status); }; }; then yap_cv_ffieee=yes else @@ -6775,7 +6787,7 @@ rm -f core core.* *.core conftest$ac_exeext conftest.$ac_objext conftest.$ac_ext fi fi -echo "$as_me:6778: result: $yap_cv_ffieee" >&5 +echo "$as_me:6790: result: $yap_cv_ffieee" >&5 echo "${ECHO_T}$yap_cv_ffieee" >&6 if test $yap_cv_ffieee = yes then @@ -6790,14 +6802,14 @@ EOF fi -echo "$as_me:6793: checking for sigsetjmp" >&5 +echo "$as_me:6805: checking for sigsetjmp" >&5 echo $ECHO_N "checking for sigsetjmp... $ECHO_C" >&6 if test "${yap_sigsetjmp+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 6800 "configure" +#line 6812 "configure" #include "confdefs.h" #include @@ -6813,16 +6825,16 @@ sigjmp_buf RestartEnv; } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:6816: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:6828: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:6819: \$? = $ac_status" >&5 + echo "$as_me:6831: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:6822: \"$ac_try\"") >&5 + { (eval echo "$as_me:6834: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:6825: \$? = $ac_status" >&5 + echo "$as_me:6837: \$? = $ac_status" >&5 (exit $ac_status); }; }; then yap_sigsetjmp=yes else @@ -6833,7 +6845,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:6836: result: $yap_sigsetjmp" >&5 +echo "$as_me:6848: result: $yap_sigsetjmp" >&5 echo "${ECHO_T}$yap_sigsetjmp" >&6 if test $yap_sigsetjmp = yes then @@ -6848,14 +6860,14 @@ EOF fi -echo "$as_me:6851: checking for sigsegv" >&5 +echo "$as_me:6863: checking for sigsegv" >&5 echo $ECHO_N "checking for sigsegv... $ECHO_C" >&6 if test "${yap_sigsegv+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 6858 "configure" +#line 6870 "configure" #include "confdefs.h" #include #include @@ -6870,16 +6882,16 @@ printf("Signal value is %d\n", SIGSEGV); } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:6873: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:6885: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:6876: \$? = $ac_status" >&5 + echo "$as_me:6888: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:6879: \"$ac_try\"") >&5 + { (eval echo "$as_me:6891: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:6882: \$? = $ac_status" >&5 + echo "$as_me:6894: \$? = $ac_status" >&5 (exit $ac_status); }; }; then yap_sigsegv=yes else @@ -6890,7 +6902,7 @@ fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:6893: result: $yap_sigsegv" >&5 +echo "$as_me:6905: result: $yap_sigsegv" >&5 echo "${ECHO_T}$yap_sigsegv" >&6 if test $yap_sigsegv = yes then @@ -6905,10 +6917,10 @@ EOF fi -echo "$as_me:6908: checking union wait" >&5 +echo "$as_me:6920: checking union wait" >&5 echo $ECHO_N "checking union wait... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF -#line 6911 "configure" +#line 6923 "configure" #include "confdefs.h" #include #include @@ -6926,16 +6938,16 @@ WIFEXITED(x); /* Generates compiler error if WIFEXITED } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:6929: \"$ac_link\"") >&5 +if { (eval echo "$as_me:6941: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:6932: \$? = $ac_status" >&5 + echo "$as_me:6944: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:6935: \"$ac_try\"") >&5 + { (eval echo "$as_me:6947: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:6938: \$? = $ac_status" >&5 + echo "$as_me:6950: \$? = $ac_status" >&5 (exit $ac_status); }; }; then union_wait_ok=yes else @@ -6944,7 +6956,7 @@ cat conftest.$ac_ext >&5 union_wait_ok=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext -echo "$as_me:6947: result: $union_wait_ok" >&5 +echo "$as_me:6959: result: $union_wait_ok" >&5 echo "${ECHO_T}$union_wait_ok" >&6 if test $union_wait_ok = no; then cat >>confdefs.h <<\EOF @@ -6953,10 +6965,10 @@ EOF fi -echo "$as_me:6956: checking environ" >&5 +echo "$as_me:6968: checking environ" >&5 echo $ECHO_N "checking environ... $ECHO_C" >&6 cat >conftest.$ac_ext <<_ACEOF -#line 6959 "configure" +#line 6971 "configure" #include "confdefs.h" int @@ -6970,16 +6982,16 @@ extern char **environ; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:6973: \"$ac_link\"") >&5 +if { (eval echo "$as_me:6985: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:6976: \$? = $ac_status" >&5 + echo "$as_me:6988: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:6979: \"$ac_try\"") >&5 + { (eval echo "$as_me:6991: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:6982: \$? = $ac_status" >&5 + echo "$as_me:6994: \$? = $ac_status" >&5 (exit $ac_status); }; }; then environ_ok=yes else @@ -6988,7 +7000,7 @@ cat conftest.$ac_ext >&5 environ_ok=no fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext -echo "$as_me:6991: result: $environ_ok" >&5 +echo "$as_me:7003: result: $environ_ok" >&5 echo "${ECHO_T}$environ_ok" >&6 if test $environ_ok = yes; then cat >>confdefs.h <<\EOF @@ -6997,13 +7009,13 @@ EOF fi -echo "$as_me:7000: checking return type of signal handlers" >&5 +echo "$as_me:7012: checking return type of signal handlers" >&5 echo $ECHO_N "checking return type of signal handlers... $ECHO_C" >&6 if test "${ac_cv_type_signal+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 7006 "configure" +#line 7018 "configure" #include "confdefs.h" #include #include @@ -7025,16 +7037,16 @@ int i; } _ACEOF rm -f conftest.$ac_objext -if { (eval echo "$as_me:7028: \"$ac_compile\"") >&5 +if { (eval echo "$as_me:7040: \"$ac_compile\"") >&5 (eval $ac_compile) 2>&5 ac_status=$? - echo "$as_me:7031: \$? = $ac_status" >&5 + echo "$as_me:7043: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest.$ac_objext' - { (eval echo "$as_me:7034: \"$ac_try\"") >&5 + { (eval echo "$as_me:7046: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7037: \$? = $ac_status" >&5 + echo "$as_me:7049: \$? = $ac_status" >&5 (exit $ac_status); }; }; then ac_cv_type_signal=void else @@ -7044,7 +7056,7 @@ ac_cv_type_signal=int fi rm -f conftest.$ac_objext conftest.$ac_ext fi -echo "$as_me:7047: result: $ac_cv_type_signal" >&5 +echo "$as_me:7059: result: $ac_cv_type_signal" >&5 echo "${ECHO_T}$ac_cv_type_signal" >&6 cat >>confdefs.h <&5 +echo "$as_me:7069: checking for $ac_func" >&5 echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6 if eval "test \"\${$as_ac_var+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 7063 "configure" +#line 7075 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -7091,16 +7103,16 @@ f = $ac_func; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:7094: \"$ac_link\"") >&5 +if { (eval echo "$as_me:7106: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:7097: \$? = $ac_status" >&5 + echo "$as_me:7109: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:7100: \"$ac_try\"") >&5 + { (eval echo "$as_me:7112: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7103: \$? = $ac_status" >&5 + echo "$as_me:7115: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -7110,7 +7122,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:7113: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:7125: result: `eval echo '${'$as_ac_var'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6 if test `eval echo '${'$as_ac_var'}'` = yes; then cat >>confdefs.h <&5 +echo "$as_me:7138: checking for $ac_func" >&5 echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6 if eval "test \"\${$as_ac_var+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 7132 "configure" +#line 7144 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -7160,16 +7172,16 @@ f = $ac_func; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:7163: \"$ac_link\"") >&5 +if { (eval echo "$as_me:7175: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:7166: \$? = $ac_status" >&5 + echo "$as_me:7178: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:7169: \"$ac_try\"") >&5 + { (eval echo "$as_me:7181: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7172: \$? = $ac_status" >&5 + echo "$as_me:7184: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -7179,7 +7191,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:7182: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:7194: result: `eval echo '${'$as_ac_var'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6 if test `eval echo '${'$as_ac_var'}'` = yes; then cat >>confdefs.h <&5 +echo "$as_me:7207: checking for $ac_func" >&5 echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6 if eval "test \"\${$as_ac_var+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 7201 "configure" +#line 7213 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -7229,16 +7241,16 @@ f = $ac_func; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:7232: \"$ac_link\"") >&5 +if { (eval echo "$as_me:7244: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:7235: \$? = $ac_status" >&5 + echo "$as_me:7247: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:7238: \"$ac_try\"") >&5 + { (eval echo "$as_me:7250: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7241: \$? = $ac_status" >&5 + echo "$as_me:7253: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -7248,7 +7260,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:7251: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:7263: result: `eval echo '${'$as_ac_var'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6 if test `eval echo '${'$as_ac_var'}'` = yes; then cat >>confdefs.h <&5 +echo "$as_me:7276: checking for $ac_func" >&5 echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6 if eval "test \"\${$as_ac_var+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 7270 "configure" +#line 7282 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -7298,16 +7310,16 @@ f = $ac_func; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:7301: \"$ac_link\"") >&5 +if { (eval echo "$as_me:7313: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:7304: \$? = $ac_status" >&5 + echo "$as_me:7316: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:7307: \"$ac_try\"") >&5 + { (eval echo "$as_me:7319: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7310: \$? = $ac_status" >&5 + echo "$as_me:7322: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -7317,7 +7329,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:7320: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:7332: result: `eval echo '${'$as_ac_var'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6 if test `eval echo '${'$as_ac_var'}'` = yes; then cat >>confdefs.h <&5 +echo "$as_me:7345: checking for $ac_func" >&5 echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6 if eval "test \"\${$as_ac_var+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 7339 "configure" +#line 7351 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -7367,16 +7379,16 @@ f = $ac_func; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:7370: \"$ac_link\"") >&5 +if { (eval echo "$as_me:7382: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:7373: \$? = $ac_status" >&5 + echo "$as_me:7385: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:7376: \"$ac_try\"") >&5 + { (eval echo "$as_me:7388: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7379: \$? = $ac_status" >&5 + echo "$as_me:7391: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -7386,7 +7398,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:7389: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:7401: result: `eval echo '${'$as_ac_var'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6 if test `eval echo '${'$as_ac_var'}'` = yes; then cat >>confdefs.h <&5 +echo "$as_me:7414: checking for $ac_func" >&5 echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6 if eval "test \"\${$as_ac_var+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 7408 "configure" +#line 7420 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -7436,16 +7448,16 @@ f = $ac_func; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:7439: \"$ac_link\"") >&5 +if { (eval echo "$as_me:7451: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:7442: \$? = $ac_status" >&5 + echo "$as_me:7454: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:7445: \"$ac_try\"") >&5 + { (eval echo "$as_me:7457: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7448: \$? = $ac_status" >&5 + echo "$as_me:7460: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -7455,7 +7467,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:7458: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:7470: result: `eval echo '${'$as_ac_var'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6 if test `eval echo '${'$as_ac_var'}'` = yes; then cat >>confdefs.h <&5 +echo "$as_me:7483: checking for $ac_func" >&5 echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6 if eval "test \"\${$as_ac_var+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 7477 "configure" +#line 7489 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -7505,16 +7517,16 @@ f = $ac_func; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:7508: \"$ac_link\"") >&5 +if { (eval echo "$as_me:7520: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:7511: \$? = $ac_status" >&5 + echo "$as_me:7523: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:7514: \"$ac_try\"") >&5 + { (eval echo "$as_me:7526: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7517: \$? = $ac_status" >&5 + echo "$as_me:7529: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -7524,7 +7536,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:7527: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:7539: result: `eval echo '${'$as_ac_var'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6 if test `eval echo '${'$as_ac_var'}'` = yes; then cat >>confdefs.h <&5 +echo "$as_me:7552: checking for $ac_func" >&5 echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6 if eval "test \"\${$as_ac_var+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 7546 "configure" +#line 7558 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -7574,16 +7586,16 @@ f = $ac_func; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:7577: \"$ac_link\"") >&5 +if { (eval echo "$as_me:7589: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:7580: \$? = $ac_status" >&5 + echo "$as_me:7592: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:7583: \"$ac_try\"") >&5 + { (eval echo "$as_me:7595: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7586: \$? = $ac_status" >&5 + echo "$as_me:7598: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -7593,7 +7605,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:7596: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:7608: result: `eval echo '${'$as_ac_var'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6 if test `eval echo '${'$as_ac_var'}'` = yes; then cat >>confdefs.h <&5 +echo "$as_me:7621: checking for $ac_func" >&5 echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6 if eval "test \"\${$as_ac_var+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 7615 "configure" +#line 7627 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -7643,16 +7655,16 @@ f = $ac_func; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:7646: \"$ac_link\"") >&5 +if { (eval echo "$as_me:7658: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:7649: \$? = $ac_status" >&5 + echo "$as_me:7661: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:7652: \"$ac_try\"") >&5 + { (eval echo "$as_me:7664: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7655: \$? = $ac_status" >&5 + echo "$as_me:7667: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -7662,7 +7674,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:7665: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:7677: result: `eval echo '${'$as_ac_var'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6 if test `eval echo '${'$as_ac_var'}'` = yes; then cat >>confdefs.h <&5 +echo "$as_me:7690: checking for $ac_func" >&5 echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6 if eval "test \"\${$as_ac_var+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 7684 "configure" +#line 7696 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -7712,16 +7724,16 @@ f = $ac_func; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:7715: \"$ac_link\"") >&5 +if { (eval echo "$as_me:7727: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:7718: \$? = $ac_status" >&5 + echo "$as_me:7730: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:7721: \"$ac_try\"") >&5 + { (eval echo "$as_me:7733: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7724: \$? = $ac_status" >&5 + echo "$as_me:7736: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -7731,7 +7743,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:7734: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:7746: result: `eval echo '${'$as_ac_var'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6 if test `eval echo '${'$as_ac_var'}'` = yes; then cat >>confdefs.h <&5 +echo "$as_me:7759: checking for $ac_func" >&5 echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6 if eval "test \"\${$as_ac_var+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 7753 "configure" +#line 7765 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -7781,16 +7793,16 @@ f = $ac_func; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:7784: \"$ac_link\"") >&5 +if { (eval echo "$as_me:7796: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:7787: \$? = $ac_status" >&5 + echo "$as_me:7799: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:7790: \"$ac_try\"") >&5 + { (eval echo "$as_me:7802: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7793: \$? = $ac_status" >&5 + echo "$as_me:7805: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -7800,7 +7812,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:7803: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:7815: result: `eval echo '${'$as_ac_var'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6 if test `eval echo '${'$as_ac_var'}'` = yes; then cat >>confdefs.h <&5 +echo "$as_me:7828: checking for $ac_func" >&5 echo $ECHO_N "checking for $ac_func... $ECHO_C" >&6 if eval "test \"\${$as_ac_var+set}\" = set"; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 7822 "configure" +#line 7834 "configure" #include "confdefs.h" /* System header to define __stub macros and hopefully few prototypes, which can conflict with char $ac_func (); below. */ @@ -7850,16 +7862,16 @@ f = $ac_func; } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:7853: \"$ac_link\"") >&5 +if { (eval echo "$as_me:7865: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:7856: \$? = $ac_status" >&5 + echo "$as_me:7868: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:7859: \"$ac_try\"") >&5 + { (eval echo "$as_me:7871: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7862: \$? = $ac_status" >&5 + echo "$as_me:7874: \$? = $ac_status" >&5 (exit $ac_status); }; }; then eval "$as_ac_var=yes" else @@ -7869,7 +7881,7 @@ eval "$as_ac_var=no" fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:7872: result: `eval echo '${'$as_ac_var'}'`" >&5 +echo "$as_me:7884: result: `eval echo '${'$as_ac_var'}'`" >&5 echo "${ECHO_T}`eval echo '${'$as_ac_var'}'`" >&6 if test `eval echo '${'$as_ac_var'}'` = yes; then cat >>confdefs.h <&5 +echo "$as_me:7894: checking for mpz_xor" >&5 echo $ECHO_N "checking for mpz_xor... $ECHO_C" >&6 if test "${yap_mpz_xor+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 else cat >conftest.$ac_ext <<_ACEOF -#line 7889 "configure" +#line 7901 "configure" #include "confdefs.h" #include void check(mpz_t rop,mpz_t op1,mpz_t op2) { @@ -7902,16 +7914,16 @@ main () } _ACEOF rm -f conftest.$ac_objext conftest$ac_exeext -if { (eval echo "$as_me:7905: \"$ac_link\"") >&5 +if { (eval echo "$as_me:7917: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:7908: \$? = $ac_status" >&5 + echo "$as_me:7920: \$? = $ac_status" >&5 (exit $ac_status); } && { ac_try='test -s conftest$ac_exeext' - { (eval echo "$as_me:7911: \"$ac_try\"") >&5 + { (eval echo "$as_me:7923: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7914: \$? = $ac_status" >&5 + echo "$as_me:7926: \$? = $ac_status" >&5 (exit $ac_status); }; }; then yap_mpz_xor=yes else @@ -7922,7 +7934,7 @@ fi rm -f conftest.$ac_objext conftest$ac_exeext conftest.$ac_ext fi -echo "$as_me:7925: result: $yap_mpz_xor" >&5 +echo "$as_me:7937: result: $yap_mpz_xor" >&5 echo "${ECHO_T}$yap_mpz_xor" >&6 if test $yap_mpz_xor = yes then @@ -7937,7 +7949,7 @@ EOF fi -echo "$as_me:7940: checking if fflush(NULL) clobbers input pipes" >&5 +echo "$as_me:7952: checking if fflush(NULL) clobbers input pipes" >&5 echo $ECHO_N "checking if fflush(NULL) clobbers input pipes... $ECHO_C" >&6 if test "${yap_cv_broken_fflush_null+set}" = set; then echo $ECHO_N "(cached) $ECHO_C" >&6 @@ -7964,38 +7976,38 @@ else } } EOF - { (eval echo "$as_me:7967: \"$ac_link\"") >&5 + { (eval echo "$as_me:7979: \"$ac_link\"") >&5 (eval $ac_link) 2>&5 ac_status=$? - echo "$as_me:7970: \$? = $ac_status" >&5 + echo "$as_me:7982: \$? = $ac_status" >&5 (exit $ac_status); } if test "$?" = 0 then cat conftest.$ac_ext | ./conftest$ac_exeext > conftest.out { ac_try='cmp conftest.$ac_ext conftest.out' - { (eval echo "$as_me:7976: \"$ac_try\"") >&5 + { (eval echo "$as_me:7988: \"$ac_try\"") >&5 (eval $ac_try) 2>&5 ac_status=$? - echo "$as_me:7979: \$? = $ac_status" >&5 + echo "$as_me:7991: \$? = $ac_status" >&5 (exit $ac_status); }; } if test "$?" = 0 then - echo "$as_me:7983: result: no" >&5 + echo "$as_me:7995: result: no" >&5 echo "${ECHO_T}no" >&6 yap_cv_broken_fflush_null=no else - echo "$as_me:7987: result: yes" >&5 + echo "$as_me:7999: result: yes" >&5 echo "${ECHO_T}yes" >&6 yap_cv_broken_fflush_null=yes fi else - echo "$as_me:7992: result: failed" >&5 + echo "$as_me:8004: result: failed" >&5 echo "${ECHO_T}failed" >&6 yap_cv_broken_fflush_null=failed fi rm -f conftest.$ac_ext conftest.$ac_objext conftest$ac_exeext conftest.out fi -echo "$as_me:7998: result: $yap_cv_broken_fflush_null" >&5 +echo "$as_me:8010: result: $yap_cv_broken_fflush_null" >&5 echo "${ECHO_T}$yap_cv_broken_fflush_null" >&6 if test "$yap_cv_broken_fflush_null" = no then @@ -8096,7 +8108,7 @@ DEFS=-DHAVE_CONFIG_H : ${CONFIG_STATUS=./config.status} ac_clean_files_save=$ac_clean_files ac_clean_files="$ac_clean_files $CONFIG_STATUS" -{ echo "$as_me:8099: creating $CONFIG_STATUS" >&5 +{ echo "$as_me:8111: creating $CONFIG_STATUS" >&5 echo "$as_me: creating $CONFIG_STATUS" >&6;} cat >$CONFIG_STATUS <<_ACEOF #! $SHELL @@ -8269,7 +8281,7 @@ cat >>$CONFIG_STATUS <<\EOF echo "$ac_cs_version"; exit 0 ;; --he | --h) # Conflict between --help and --header - { { echo "$as_me:8272: error: ambiguous option: $1 + { { echo "$as_me:8284: error: ambiguous option: $1 Try \`$0 --help' for more information." >&5 echo "$as_me: error: ambiguous option: $1 Try \`$0 --help' for more information." >&2;} @@ -8288,7 +8300,7 @@ Try \`$0 --help' for more information." >&2;} ac_need_defaults=false;; # This is an error. - -*) { { echo "$as_me:8291: error: unrecognized option: $1 + -*) { { echo "$as_me:8303: error: unrecognized option: $1 Try \`$0 --help' for more information." >&5 echo "$as_me: error: unrecognized option: $1 Try \`$0 --help' for more information." >&2;} @@ -8333,7 +8345,7 @@ do "CHR/Makefile" ) CONFIG_FILES="$CONFIG_FILES CHR/Makefile" ;; "CLPQR/Makefile" ) CONFIG_FILES="$CONFIG_FILES CLPQR/Makefile" ;; "config.h" ) CONFIG_HEADERS="$CONFIG_HEADERS config.h" ;; - *) { { echo "$as_me:8336: error: invalid argument: $ac_config_target" >&5 + *) { { echo "$as_me:8348: error: invalid argument: $ac_config_target" >&5 echo "$as_me: error: invalid argument: $ac_config_target" >&2;} { (exit 1); exit 1; }; };; esac @@ -8452,6 +8464,8 @@ s,@INSTALL_INFO@,$INSTALL_INFO,;t t s,@INSTALL_COMMAND@,$INSTALL_COMMAND,;t t s,@CROSS_SIMULATOR@,$CROSS_SIMULATOR,;t t s,@YAPMPILIB@,$YAPMPILIB,;t t +s,@MPI_OBJS@,$MPI_OBJS,;t t +s,@MPI_LIBS@,$MPI_LIBS,;t t s,@CPP@,$CPP,;t t s,@INSTALL_DLLS@,$INSTALL_DLLS,;t t s,@SHLIB_CFLAGS@,$SHLIB_CFLAGS,;t t @@ -8578,7 +8592,7 @@ done; } esac if test x"$ac_file" != x-; then - { echo "$as_me:8581: creating $ac_file" >&5 + { echo "$as_me:8595: creating $ac_file" >&5 echo "$as_me: creating $ac_file" >&6;} rm -f "$ac_file" fi @@ -8596,7 +8610,7 @@ echo "$as_me: creating $ac_file" >&6;} -) echo $tmp/stdin ;; [\\/$]*) # Absolute (can't be DOS-style, as IFS=:) - test -f "$f" || { { echo "$as_me:8599: error: cannot find input file: $f" >&5 + test -f "$f" || { { echo "$as_me:8613: error: cannot find input file: $f" >&5 echo "$as_me: error: cannot find input file: $f" >&2;} { (exit 1); exit 1; }; } echo $f;; @@ -8609,7 +8623,7 @@ echo "$as_me: error: cannot find input file: $f" >&2;} echo $srcdir/$f else # /dev/null tree - { { echo "$as_me:8612: error: cannot find input file: $f" >&5 + { { echo "$as_me:8626: error: cannot find input file: $f" >&5 echo "$as_me: error: cannot find input file: $f" >&2;} { (exit 1); exit 1; }; } fi;; @@ -8670,7 +8684,7 @@ for ac_file in : $CONFIG_HEADERS; do test "x$ac_file" = x: && continue * ) ac_file_in=$ac_file.in ;; esac - test x"$ac_file" != x- && { echo "$as_me:8673: creating $ac_file" >&5 + test x"$ac_file" != x- && { echo "$as_me:8687: creating $ac_file" >&5 echo "$as_me: creating $ac_file" >&6;} # First look for the input files in the build tree, otherwise in the @@ -8681,7 +8695,7 @@ echo "$as_me: creating $ac_file" >&6;} -) echo $tmp/stdin ;; [\\/$]*) # Absolute (can't be DOS-style, as IFS=:) - test -f "$f" || { { echo "$as_me:8684: error: cannot find input file: $f" >&5 + test -f "$f" || { { echo "$as_me:8698: error: cannot find input file: $f" >&5 echo "$as_me: error: cannot find input file: $f" >&2;} { (exit 1); exit 1; }; } echo $f;; @@ -8694,7 +8708,7 @@ echo "$as_me: error: cannot find input file: $f" >&2;} echo $srcdir/$f else # /dev/null tree - { { echo "$as_me:8697: error: cannot find input file: $f" >&5 + { { echo "$as_me:8711: error: cannot find input file: $f" >&5 echo "$as_me: error: cannot find input file: $f" >&2;} { (exit 1); exit 1; }; } fi;; @@ -8811,7 +8825,7 @@ cat >>$CONFIG_STATUS <<\EOF rm -f $tmp/in if test x"$ac_file" != x-; then if cmp -s $ac_file $tmp/config.h 2>/dev/null; then - { echo "$as_me:8814: $ac_file is unchanged" >&5 + { echo "$as_me:8828: $ac_file is unchanged" >&5 echo "$as_me: $ac_file is unchanged" >&6;} else ac_dir=`$as_expr X"$ac_file" : 'X\(.*[^/]\)//*[^/][^/]*/*$' \| \ diff --git a/configure.in b/configure.in index c54fdd7bc..50378d4a9 100644 --- a/configure.in +++ b/configure.in @@ -287,18 +287,20 @@ then [AC_DEFINE(HAVE_LIBMPI, 0)]) if test "$ac_cv_lib_mpi_MPI_Init" = yes then - #LIBS="$LIBS -lpmpich" - YAPMPILIB=YapMPI.a + #YAPMPILIB=YapMPI.a + MPI_OBJS=mpi.o else AC_CHECK_LIB(mpich,MPI_Init, [AC_DEFINE(HAVE_LIBMPICH, 1)], [AC_DEFINE(HAVE_LIBMPICH, 0)]) if test "$ac_cv_lib_mpi_MPI_Init" = yes then - #LIBS="$LIBS -lpmpich" - YAPMPILIB=YapMPI.a + #YAPMPILIB=YapMPI.a + MPI_OBJS=mpi.o else - YAPMPILIB= + #YAPMPILIB= + MPI_OBJS= + MPI_CC='$(CC)' fi fi CC=${OLD_CC} @@ -308,11 +310,23 @@ if test "$yap_cv_mpe" != "no" then OLD_CC=${CC} CC=${MPI_CC} - AC_CHECK_LIB(mpe,MPE_Init_log) + AC_CHECK_LIB(mpe,MPE_Init_log, + [AC_DEFINE(HAVE_LIBMPE, 1)], + [AC_DEFINE(HAVE_LIBMPE, 0)]) + if test "$ac_cv_lib_mpe_MPE_Init_log" = yes + then + MPI_LIBS="-lmpe" + MPI_OBJS="$MPI_OBJS mpe.o" + else + MPI_LIBS= + MPI_OBJS= + fi CC=${OLD_CC} fi AC_SUBST(YAPMPILIB) +AC_SUBST(MPI_OBJS) +AC_SUBST(MPI_LIBS) AC_PROG_CPP