Changeset 551da5 in git


Ignore:
Timestamp:
Apr 19, 1999, 7:01:01 PM (24 years ago)
Author:
Hans Schönemann <hannes@…>
Branches:
(u'spielwiese', '828514cf6e480e4bafc26df99217bf2a1ed1ef45')
Children:
74759e660182cb1c2cdefe60698ceca530e27c14
Parents:
22b7de815538ed2908c8f0a8999f017f0885f194
Message:
*** empty log message ***


git-svn-id: file:///usr/local/Singular/svn/trunk@3000 2c84dea3-7e68-4137-9b89-c4e89433aadc
File:
1 edited

Legend:

Unmodified
Added
Removed
  • MP/configure

    r22b7de8 r551da5  
    6464ac_help="$ac_help
    6565\
    66   --with-malloc=HEADER    use external malloc routines declared in HEADER"
     66  --with-malloc=HEADER     use external malloc routines declared in HEADER"
    6767
    6868# Initialize some variables set by options.
     
    10261026echo "$ac_t""$CPP" 1>&6
    10271027
     1028for ac_prog in $CCC c++ g++ gcc CC cxx cc++
     1029do
     1030# Extract the first word of "$ac_prog", so it can be a program name with args.
     1031set dummy $ac_prog; ac_word=$2
     1032echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
     1033echo "configure:1034: checking for $ac_word" >&5
     1034if eval "test \"`echo '$''{'ac_cv_prog_CXX'+set}'`\" = set"; then
     1035  echo $ac_n "(cached) $ac_c" 1>&6
     1036else
     1037  if test -n "$CXX"; then
     1038  ac_cv_prog_CXX="$CXX" # Let the user override the test.
     1039else
     1040  IFS="${IFS=   }"; ac_save_ifs="$IFS"; IFS="${IFS}:"
     1041  for ac_dir in $PATH; do
     1042    test -z "$ac_dir" && ac_dir=.
     1043    if test -f $ac_dir/$ac_word; then
     1044      ac_cv_prog_CXX="$ac_prog"
     1045      break
     1046    fi
     1047  done
     1048  IFS="$ac_save_ifs"
     1049fi
     1050fi
     1051CXX="$ac_cv_prog_CXX"
     1052if test -n "$CXX"; then
     1053  echo "$ac_t""$CXX" 1>&6
     1054else
     1055  echo "$ac_t""no" 1>&6
     1056fi
     1057
     1058test -n "$CXX" && break
     1059done
     1060test -n "$CXX" || CXX="gcc"
     1061
     1062
     1063echo $ac_n "checking whether the C++ compiler ($CXX $CXXFLAGS $LDFLAGS) works""... $ac_c" 1>&6
     1064echo "configure:1065: checking whether the C++ compiler ($CXX $CXXFLAGS $LDFLAGS) works" >&5
     1065
     1066ac_ext=C
     1067# CXXFLAGS is not in ac_cpp because -g, -O, etc. are not valid cpp options.
     1068ac_cpp='$CXXCPP $CPPFLAGS'
     1069ac_compile='${CXX-g++} -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext 1>&5'
     1070ac_link='${CXX-g++} -o conftest $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&5'
     1071cross_compiling=$ac_cv_prog_cxx_cross
     1072
     1073cat > conftest.$ac_ext <<EOF
     1074#line 1075 "configure"
     1075#include "confdefs.h"
     1076main(){return(0);}
     1077EOF
     1078if { (eval echo configure:1079: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
     1079  ac_cv_prog_cxx_works=yes
     1080  # If we can't run a trivial program, we are probably using a cross compiler.
     1081  if (./conftest; exit) 2>/dev/null; then
     1082    ac_cv_prog_cxx_cross=no
     1083  else
     1084    ac_cv_prog_cxx_cross=yes
     1085  fi
     1086else
     1087  echo "configure: failed program was:" >&5
     1088  cat conftest.$ac_ext >&5
     1089  ac_cv_prog_cxx_works=no
     1090fi
     1091rm -fr conftest*
     1092ac_ext=c
     1093# CFLAGS is not in ac_cpp because -g, -O, etc. are not valid cpp options.
     1094ac_cpp='$CPP $CPPFLAGS'
     1095ac_compile='${CC-cc} -c $CFLAGS $CPPFLAGS conftest.$ac_ext 1>&5'
     1096ac_link='${CC-cc} -o conftest $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&5'
     1097cross_compiling=$ac_cv_prog_cc_cross
     1098
     1099echo "$ac_t""$ac_cv_prog_cxx_works" 1>&6
     1100if test $ac_cv_prog_cxx_works = no; then
     1101  { echo "configure: error: installation or configuration problem: C++ compiler cannot create executables." 1>&2; exit 1; }
     1102fi
     1103echo $ac_n "checking whether the C++ compiler ($CXX $CXXFLAGS $LDFLAGS) is a cross-compiler""... $ac_c" 1>&6
     1104echo "configure:1105: checking whether the C++ compiler ($CXX $CXXFLAGS $LDFLAGS) is a cross-compiler" >&5
     1105echo "$ac_t""$ac_cv_prog_cxx_cross" 1>&6
     1106cross_compiling=$ac_cv_prog_cxx_cross
     1107
     1108echo $ac_n "checking whether we are using GNU C++""... $ac_c" 1>&6
     1109echo "configure:1110: checking whether we are using GNU C++" >&5
     1110if eval "test \"`echo '$''{'ac_cv_prog_gxx'+set}'`\" = set"; then
     1111  echo $ac_n "(cached) $ac_c" 1>&6
     1112else
     1113  cat > conftest.C <<EOF
     1114#ifdef __GNUC__
     1115  yes;
     1116#endif
     1117EOF
     1118if { ac_try='${CXX-g++} -E conftest.C'; { (eval echo configure:1119: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }; } | egrep yes >/dev/null 2>&1; then
     1119  ac_cv_prog_gxx=yes
     1120else
     1121  ac_cv_prog_gxx=no
     1122fi
     1123fi
     1124
     1125echo "$ac_t""$ac_cv_prog_gxx" 1>&6
     1126
     1127if test $ac_cv_prog_gxx = yes; then
     1128  GXX=yes
     1129  ac_test_CXXFLAGS="${CXXFLAGS+set}"
     1130  ac_save_CXXFLAGS="$CXXFLAGS"
     1131  CXXFLAGS=
     1132  echo $ac_n "checking whether ${CXX-g++} accepts -g""... $ac_c" 1>&6
     1133echo "configure:1134: checking whether ${CXX-g++} accepts -g" >&5
     1134if eval "test \"`echo '$''{'ac_cv_prog_cxx_g'+set}'`\" = set"; then
     1135  echo $ac_n "(cached) $ac_c" 1>&6
     1136else
     1137  echo 'void f(){}' > conftest.cc
     1138if test -z "`${CXX-g++} -g -c conftest.cc 2>&1`"; then
     1139  ac_cv_prog_cxx_g=yes
     1140else
     1141  ac_cv_prog_cxx_g=no
     1142fi
     1143rm -f conftest*
     1144
     1145fi
     1146
     1147echo "$ac_t""$ac_cv_prog_cxx_g" 1>&6
     1148  if test "$ac_test_CXXFLAGS" = set; then
     1149    CXXFLAGS="$ac_save_CXXFLAGS"
     1150  elif test $ac_cv_prog_cxx_g = yes; then
     1151    CXXFLAGS="-g -O2"
     1152  else
     1153    CXXFLAGS="-O2"
     1154  fi
     1155else
     1156  GXX=
     1157  test "${CXXFLAGS+set}" = set || CXXFLAGS="-g"
     1158fi
     1159
    10281160echo $ac_n "checking for AIX""... $ac_c" 1>&6
    1029 echo "configure:1030: checking for AIX" >&5
     1161echo "configure:1162: checking for AIX" >&5
    10301162cat > conftest.$ac_ext <<EOF
    1031 #line 1032 "configure"
     1163#line 1164 "configure"
    10321164#include "confdefs.h"
    10331165#ifdef _AIX
     
    11031235
    11041236echo $ac_n "checking whether ${MAKE-make} sets \${MAKE}""... $ac_c" 1>&6
    1105 echo "configure:1106: checking whether ${MAKE-make} sets \${MAKE}" >&5
     1237echo "configure:1238: checking whether ${MAKE-make} sets \${MAKE}" >&5
    11061238set dummy ${MAKE-make}; ac_make=`echo "$2" | sed 'y%./+-%__p_%'`
    11071239if eval "test \"`echo '$''{'ac_cv_prog_make_${ac_make}_set'+set}'`\" = set"; then
     
    11301262
    11311263echo $ac_n "checking for ANSI C header files""... $ac_c" 1>&6
    1132 echo "configure:1133: checking for ANSI C header files" >&5
     1264echo "configure:1265: checking for ANSI C header files" >&5
    11331265if eval "test \"`echo '$''{'ac_cv_header_stdc'+set}'`\" = set"; then
    11341266  echo $ac_n "(cached) $ac_c" 1>&6
    11351267else
    11361268  cat > conftest.$ac_ext <<EOF
    1137 #line 1138 "configure"
     1269#line 1270 "configure"
    11381270#include "confdefs.h"
    11391271#include <stdlib.h>
     
    11431275EOF
    11441276ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
    1145 { (eval echo configure:1146: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
     1277{ (eval echo configure:1278: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
    11461278ac_err=`grep -v '^ *+' conftest.out`
    11471279if test -z "$ac_err"; then
     
    11601292  # SunOS 4.x string.h does not declare mem*, contrary to ANSI.
    11611293cat > conftest.$ac_ext <<EOF
    1162 #line 1163 "configure"
     1294#line 1295 "configure"
    11631295#include "confdefs.h"
    11641296#include <string.h>
     
    11781310  # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI.
    11791311cat > conftest.$ac_ext <<EOF
    1180 #line 1181 "configure"
     1312#line 1313 "configure"
    11811313#include "confdefs.h"
    11821314#include <stdlib.h>
     
    11991331else
    12001332  cat > conftest.$ac_ext <<EOF
    1201 #line 1202 "configure"
     1333#line 1334 "configure"
    12021334#include "confdefs.h"
    12031335#include <ctype.h>
     
    12101342
    12111343EOF
    1212 if { (eval echo configure:1213: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest && (./conftest; exit) 2>/dev/null
     1344if { (eval echo configure:1345: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest && (./conftest; exit) 2>/dev/null
    12131345then
    12141346  :
     
    12341366
    12351367echo $ac_n "checking for pid_t""... $ac_c" 1>&6
    1236 echo "configure:1237: checking for pid_t" >&5
     1368echo "configure:1369: checking for pid_t" >&5
    12371369if eval "test \"`echo '$''{'ac_cv_type_pid_t'+set}'`\" = set"; then
    12381370  echo $ac_n "(cached) $ac_c" 1>&6
    12391371else
    12401372  cat > conftest.$ac_ext <<EOF
    1241 #line 1242 "configure"
     1373#line 1374 "configure"
    12421374#include "confdefs.h"
    12431375#include <sys/types.h>
     
    12681400ac_safe=`echo "vfork.h" | sed 'y%./+-%__p_%'`
    12691401echo $ac_n "checking for vfork.h""... $ac_c" 1>&6
    1270 echo "configure:1271: checking for vfork.h" >&5
     1402echo "configure:1403: checking for vfork.h" >&5
    12711403if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then
    12721404  echo $ac_n "(cached) $ac_c" 1>&6
    12731405else
    12741406  cat > conftest.$ac_ext <<EOF
    1275 #line 1276 "configure"
     1407#line 1408 "configure"
    12761408#include "confdefs.h"
    12771409#include <vfork.h>
    12781410EOF
    12791411ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
    1280 { (eval echo configure:1281: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
     1412{ (eval echo configure:1413: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
    12811413ac_err=`grep -v '^ *+' conftest.out`
    12821414if test -z "$ac_err"; then
     
    13031435
    13041436echo $ac_n "checking for working vfork""... $ac_c" 1>&6
    1305 echo "configure:1306: checking for working vfork" >&5
     1437echo "configure:1438: checking for working vfork" >&5
    13061438if eval "test \"`echo '$''{'ac_cv_func_vfork_works'+set}'`\" = set"; then
    13071439  echo $ac_n "(cached) $ac_c" 1>&6
     
    13091441  if test "$cross_compiling" = yes; then
    13101442  echo $ac_n "checking for vfork""... $ac_c" 1>&6
    1311 echo "configure:1312: checking for vfork" >&5
     1443echo "configure:1444: checking for vfork" >&5
    13121444if eval "test \"`echo '$''{'ac_cv_func_vfork'+set}'`\" = set"; then
    13131445  echo $ac_n "(cached) $ac_c" 1>&6
    13141446else
    13151447  cat > conftest.$ac_ext <<EOF
    1316 #line 1317 "configure"
     1448#line 1449 "configure"
    13171449#include "confdefs.h"
    13181450/* System header to define __stub macros and hopefully few prototypes,
     
    13371469; return 0; }
    13381470EOF
    1339 if { (eval echo configure:1340: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
     1471if { (eval echo configure:1472: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
    13401472  rm -rf conftest*
    13411473  eval "ac_cv_func_vfork=yes"
     
    13581490else
    13591491  cat > conftest.$ac_ext <<EOF
    1360 #line 1361 "configure"
     1492#line 1493 "configure"
    13611493#include "confdefs.h"
    13621494/* Thanks to Paul Eggert for this test.  */
     
    14531585}
    14541586EOF
    1455 if { (eval echo configure:1456: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest && (./conftest; exit) 2>/dev/null
     1587if { (eval echo configure:1588: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest && (./conftest; exit) 2>/dev/null
    14561588then
    14571589  ac_cv_func_vfork_works=yes
     
    15431675if test "$ac_check_prog" = yes; then
    15441676  echo $ac_n "checking for atof in -lm""... $ac_c" 1>&6
    1545 echo "configure:1546: checking for atof in -lm" >&5
     1677echo "configure:1678: checking for atof in -lm" >&5
    15461678ac_lib_var=`echo m'_'atof | sed 'y%./+-%__p_%'`
    15471679if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
     
    15511683LIBS="-lm  $LIBS"
    15521684cat > conftest.$ac_ext <<EOF
    1553 #line 1554 "configure"
     1685#line 1686 "configure"
    15541686#include "confdefs.h"
    15551687/* Override any gcc2 internal prototype to avoid an error.  */
     
    15621694; return 0; }
    15631695EOF
    1564 if { (eval echo configure:1565: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
     1696if { (eval echo configure:1697: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
    15651697  rm -rf conftest*
    15661698  eval "ac_cv_lib_$ac_lib_var=yes"
     
    15901722
    15911723  echo $ac_n "checking for socket in -lbsd""... $ac_c" 1>&6
    1592 echo "configure:1593: checking for socket in -lbsd" >&5
     1724echo "configure:1725: checking for socket in -lbsd" >&5
    15931725ac_lib_var=`echo bsd'_'socket | sed 'y%./+-%__p_%'`
    15941726if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
     
    15981730LIBS="-lbsd  $LIBS"
    15991731cat > conftest.$ac_ext <<EOF
    1600 #line 1601 "configure"
     1732#line 1733 "configure"
    16011733#include "confdefs.h"
    16021734/* Override any gcc2 internal prototype to avoid an error.  */
     
    16091741; return 0; }
    16101742EOF
    1611 if { (eval echo configure:1612: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
     1743if { (eval echo configure:1744: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
    16121744  rm -rf conftest*
    16131745  eval "ac_cv_lib_$ac_lib_var=yes"
     
    16371769
    16381770  echo $ac_n "checking for mpz_init in -lgmp""... $ac_c" 1>&6
    1639 echo "configure:1640: checking for mpz_init in -lgmp" >&5
     1771echo "configure:1772: checking for mpz_init in -lgmp" >&5
    16401772ac_lib_var=`echo gmp'_'mpz_init | sed 'y%./+-%__p_%'`
    16411773if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
     
    16451777LIBS="-lgmp  $LIBS"
    16461778cat > conftest.$ac_ext <<EOF
    1647 #line 1648 "configure"
     1779#line 1780 "configure"
    16481780#include "confdefs.h"
    16491781/* Override any gcc2 internal prototype to avoid an error.  */
     
    16561788; return 0; }
    16571789EOF
    1658 if { (eval echo configure:1659: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
     1790if { (eval echo configure:1791: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
    16591791  rm -rf conftest*
    16601792  eval "ac_cv_lib_$ac_lib_var=yes"
     
    16941826do
    16951827echo $ac_n "checking for $ac_func""... $ac_c" 1>&6
    1696 echo "configure:1697: checking for $ac_func" >&5
     1828echo "configure:1829: checking for $ac_func" >&5
    16971829if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then
    16981830  echo $ac_n "(cached) $ac_c" 1>&6
    16991831else
    17001832  cat > conftest.$ac_ext <<EOF
    1701 #line 1702 "configure"
     1833#line 1834 "configure"
    17021834#include "confdefs.h"
    17031835/* System header to define __stub macros and hopefully few prototypes,
     
    17221854; return 0; }
    17231855EOF
    1724 if { (eval echo configure:1725: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
     1856if { (eval echo configure:1857: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
    17251857  rm -rf conftest*
    17261858  eval "ac_cv_func_$ac_func=yes"
     
    17571889  if test "$ac_cv_func_gethostbyname" != yes; then
    17581890    echo $ac_n "checking for gethostbyname in -lnsl""... $ac_c" 1>&6
    1759 echo "configure:1760: checking for gethostbyname in -lnsl" >&5
     1891echo "configure:1892: checking for gethostbyname in -lnsl" >&5
    17601892ac_lib_var=`echo nsl'_'gethostbyname | sed 'y%./+-%__p_%'`
    17611893if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
     
    17651897LIBS="-lnsl  $LIBS"
    17661898cat > conftest.$ac_ext <<EOF
    1767 #line 1768 "configure"
     1899#line 1900 "configure"
    17681900#include "confdefs.h"
    17691901/* Override any gcc2 internal prototype to avoid an error.  */
     
    17761908; return 0; }
    17771909EOF
    1778 if { (eval echo configure:1779: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
     1910if { (eval echo configure:1911: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
    17791911  rm -rf conftest*
    17801912  eval "ac_cv_lib_$ac_lib_var=yes"
     
    18111943  if test "$ac_cv_func_socket" != yes; then
    18121944    echo $ac_n "checking for socket in -lsocket""... $ac_c" 1>&6
    1813 echo "configure:1814: checking for socket in -lsocket" >&5
     1945echo "configure:1946: checking for socket in -lsocket" >&5
    18141946ac_lib_var=`echo socket'_'socket | sed 'y%./+-%__p_%'`
    18151947if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then
     
    18191951LIBS="-lsocket  $LIBS"
    18201952cat > conftest.$ac_ext <<EOF
    1821 #line 1822 "configure"
     1953#line 1954 "configure"
    18221954#include "confdefs.h"
    18231955/* Override any gcc2 internal prototype to avoid an error.  */
     
    18301962; return 0; }
    18311963EOF
    1832 if { (eval echo configure:1833: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
     1964if { (eval echo configure:1965: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then
    18331965  rm -rf conftest*
    18341966  eval "ac_cv_lib_$ac_lib_var=yes"
     
    18661998
    18671999echo $ac_n "checking for ANSI C header files""... $ac_c" 1>&6
    1868 echo "configure:1869: checking for ANSI C header files" >&5
     2000echo "configure:2001: checking for ANSI C header files" >&5
    18692001if eval "test \"`echo '$''{'ac_cv_header_stdc'+set}'`\" = set"; then
    18702002  echo $ac_n "(cached) $ac_c" 1>&6
    18712003else
    18722004  cat > conftest.$ac_ext <<EOF
    1873 #line 1874 "configure"
     2005#line 2006 "configure"
    18742006#include "confdefs.h"
    18752007#include <stdlib.h>
     
    18792011EOF
    18802012ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
    1881 { (eval echo configure:1882: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
     2013{ (eval echo configure:2014: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
    18822014ac_err=`grep -v '^ *+' conftest.out`
    18832015if test -z "$ac_err"; then
     
    18962028  # SunOS 4.x string.h does not declare mem*, contrary to ANSI.
    18972029cat > conftest.$ac_ext <<EOF
    1898 #line 1899 "configure"
     2030#line 2031 "configure"
    18992031#include "confdefs.h"
    19002032#include <string.h>
     
    19142046  # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI.
    19152047cat > conftest.$ac_ext <<EOF
    1916 #line 1917 "configure"
     2048#line 2049 "configure"
    19172049#include "confdefs.h"
    19182050#include <stdlib.h>
     
    19352067else
    19362068  cat > conftest.$ac_ext <<EOF
    1937 #line 1938 "configure"
     2069#line 2070 "configure"
    19382070#include "confdefs.h"
    19392071#include <ctype.h>
     
    19462078
    19472079EOF
    1948 if { (eval echo configure:1949: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest && (./conftest; exit) 2>/dev/null
     2080if { (eval echo configure:2081: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest && (./conftest; exit) 2>/dev/null
    19492081then
    19502082  :
     
    19712103ac_safe=`echo "arpa/inet.h" | sed 'y%./+-%__p_%'`
    19722104echo $ac_n "checking for arpa/inet.h""... $ac_c" 1>&6
    1973 echo "configure:1974: checking for arpa/inet.h" >&5
     2105echo "configure:2106: checking for arpa/inet.h" >&5
    19742106if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then
    19752107  echo $ac_n "(cached) $ac_c" 1>&6
    19762108else
    19772109  cat > conftest.$ac_ext <<EOF
    1978 #line 1979 "configure"
     2110#line 2111 "configure"
    19792111#include "confdefs.h"
    19802112#include <arpa/inet.h>
    19812113EOF
    19822114ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
    1983 { (eval echo configure:1984: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
     2115{ (eval echo configure:2116: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
    19842116ac_err=`grep -v '^ *+' conftest.out`
    19852117if test -z "$ac_err"; then
     
    20052137ac_safe=`echo "assert.h" | sed 'y%./+-%__p_%'`
    20062138echo $ac_n "checking for assert.h""... $ac_c" 1>&6
    2007 echo "configure:2008: checking for assert.h" >&5
     2139echo "configure:2140: checking for assert.h" >&5
    20082140if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then
    20092141  echo $ac_n "(cached) $ac_c" 1>&6
    20102142else
    20112143  cat > conftest.$ac_ext <<EOF
    2012 #line 2013 "configure"
     2144#line 2145 "configure"
    20132145#include "confdefs.h"
    20142146#include <assert.h>
    20152147EOF
    20162148ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
    2017 { (eval echo configure:2018: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
     2149{ (eval echo configure:2150: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
    20182150ac_err=`grep -v '^ *+' conftest.out`
    20192151if test -z "$ac_err"; then
     
    20392171ac_safe=`echo "ctype.h" | sed 'y%./+-%__p_%'`
    20402172echo $ac_n "checking for ctype.h""... $ac_c" 1>&6
    2041 echo "configure:2042: checking for ctype.h" >&5
     2173echo "configure:2174: checking for ctype.h" >&5
    20422174if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then
    20432175  echo $ac_n "(cached) $ac_c" 1>&6
    20442176else
    20452177  cat > conftest.$ac_ext <<EOF
    2046 #line 2047 "configure"
     2178#line 2179 "configure"
    20472179#include "confdefs.h"
    20482180#include <ctype.h>
    20492181EOF
    20502182ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
    2051 { (eval echo configure:2052: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
     2183{ (eval echo configure:2184: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
    20522184ac_err=`grep -v '^ *+' conftest.out`
    20532185if test -z "$ac_err"; then
     
    20732205ac_safe=`echo "errno.h" | sed 'y%./+-%__p_%'`
    20742206echo $ac_n "checking for errno.h""... $ac_c" 1>&6
    2075 echo "configure:2076: checking for errno.h" >&5
     2207echo "configure:2208: checking for errno.h" >&5
    20762208if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then
    20772209  echo $ac_n "(cached) $ac_c" 1>&6
    20782210else
    20792211  cat > conftest.$ac_ext <<EOF
    2080 #line 2081 "configure"
     2212#line 2213 "configure"
    20812213#include "confdefs.h"
    20822214#include <errno.h>
    20832215EOF
    20842216ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
    2085 { (eval echo configure:2086: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
     2217{ (eval echo configure:2218: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
    20862218ac_err=`grep -v '^ *+' conftest.out`
    20872219if test -z "$ac_err"; then
     
    21072239ac_safe=`echo "netdb.h" | sed 'y%./+-%__p_%'`
    21082240echo $ac_n "checking for netdb.h""... $ac_c" 1>&6
    2109 echo "configure:2110: checking for netdb.h" >&5
     2241echo "configure:2242: checking for netdb.h" >&5
    21102242if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then
    21112243  echo $ac_n "(cached) $ac_c" 1>&6
    21122244else
    21132245  cat > conftest.$ac_ext <<EOF
    2114 #line 2115 "configure"
     2246#line 2247 "configure"
    21152247#include "confdefs.h"
    21162248#include <netdb.h>
    21172249EOF
    21182250ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
    2119 { (eval echo configure:2120: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
     2251{ (eval echo configure:2252: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
    21202252ac_err=`grep -v '^ *+' conftest.out`
    21212253if test -z "$ac_err"; then
     
    21412273ac_safe=`echo "netinet/in.h" | sed 'y%./+-%__p_%'`
    21422274echo $ac_n "checking for netinet/in.h""... $ac_c" 1>&6
    2143 echo "configure:2144: checking for netinet/in.h" >&5
     2275echo "configure:2276: checking for netinet/in.h" >&5
    21442276if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then
    21452277  echo $ac_n "(cached) $ac_c" 1>&6
    21462278else
    21472279  cat > conftest.$ac_ext <<EOF
    2148 #line 2149 "configure"
     2280#line 2281 "configure"
    21492281#include "confdefs.h"
    21502282#include <netinet/in.h>
    21512283EOF
    21522284ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
    2153 { (eval echo configure:2154: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
     2285{ (eval echo configure:2286: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
    21542286ac_err=`grep -v '^ *+' conftest.out`
    21552287if test -z "$ac_err"; then
     
    21752307ac_safe=`echo "netinet/tcp.h" | sed 'y%./+-%__p_%'`
    21762308echo $ac_n "checking for netinet/tcp.h""... $ac_c" 1>&6
    2177 echo "configure:2178: checking for netinet/tcp.h" >&5
     2309echo "configure:2310: checking for netinet/tcp.h" >&5
    21782310if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then
    21792311  echo $ac_n "(cached) $ac_c" 1>&6
    21802312else
    21812313  cat > conftest.$ac_ext <<EOF
    2182 #line 2183 "configure"
     2314#line 2315 "configure"
    21832315#include "confdefs.h"
    21842316#include <netinet/tcp.h>
    21852317EOF
    21862318ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
    2187 { (eval echo configure:2188: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
     2319{ (eval echo configure:2320: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
    21882320ac_err=`grep -v '^ *+' conftest.out`
    21892321if test -z "$ac_err"; then
     
    22092341ac_safe=`echo "signal.h" | sed 'y%./+-%__p_%'`
    22102342echo $ac_n "checking for signal.h""... $ac_c" 1>&6
    2211 echo "configure:2212: checking for signal.h" >&5
     2343echo "configure:2344: checking for signal.h" >&5
    22122344if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then
    22132345  echo $ac_n "(cached) $ac_c" 1>&6
    22142346else
    22152347  cat > conftest.$ac_ext <<EOF
    2216 #line 2217 "configure"
     2348#line 2349 "configure"
    22172349#include "confdefs.h"
    22182350#include <signal.h>
    22192351EOF
    22202352ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
    2221 { (eval echo configure:2222: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
     2353{ (eval echo configure:2354: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
    22222354ac_err=`grep -v '^ *+' conftest.out`
    22232355if test -z "$ac_err"; then
     
    22432375ac_safe=`echo "stdarg.h" | sed 'y%./+-%__p_%'`
    22442376echo $ac_n "checking for stdarg.h""... $ac_c" 1>&6
    2245 echo "configure:2246: checking for stdarg.h" >&5
     2377echo "configure:2378: checking for stdarg.h" >&5
    22462378if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then
    22472379  echo $ac_n "(cached) $ac_c" 1>&6
    22482380else
    22492381  cat > conftest.$ac_ext <<EOF
    2250 #line 2251 "configure"
     2382#line 2383 "configure"
    22512383#include "confdefs.h"
    22522384#include <stdarg.h>
    22532385EOF
    22542386ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
    2255 { (eval echo configure:2256: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
     2387{ (eval echo configure:2388: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
    22562388ac_err=`grep -v '^ *+' conftest.out`
    22572389if test -z "$ac_err"; then
     
    22772409ac_safe=`echo "stdio.h" | sed 'y%./+-%__p_%'`
    22782410echo $ac_n "checking for stdio.h""... $ac_c" 1>&6
    2279 echo "configure:2280: checking for stdio.h" >&5
     2411echo "configure:2412: checking for stdio.h" >&5
    22802412if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then
    22812413  echo $ac_n "(cached) $ac_c" 1>&6
    22822414else
    22832415  cat > conftest.$ac_ext <<EOF
    2284 #line 2285 "configure"
     2416#line 2417 "configure"
    22852417#include "confdefs.h"
    22862418#include <stdio.h>
    22872419EOF
    22882420ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
    2289 { (eval echo configure:2290: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
     2421{ (eval echo configure:2422: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
    22902422ac_err=`grep -v '^ *+' conftest.out`
    22912423if test -z "$ac_err"; then
     
    23112443ac_safe=`echo "stdlib.h" | sed 'y%./+-%__p_%'`
    23122444echo $ac_n "checking for stdlib.h""... $ac_c" 1>&6
    2313 echo "configure:2314: checking for stdlib.h" >&5
     2445echo "configure:2446: checking for stdlib.h" >&5
    23142446if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then
    23152447  echo $ac_n "(cached) $ac_c" 1>&6
    23162448else
    23172449  cat > conftest.$ac_ext <<EOF
    2318 #line 2319 "configure"
     2450#line 2451 "configure"
    23192451#include "confdefs.h"
    23202452#include <stdlib.h>
    23212453EOF
    23222454ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
    2323 { (eval echo configure:2324: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
     2455{ (eval echo configure:2456: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
    23242456ac_err=`grep -v '^ *+' conftest.out`
    23252457if test -z "$ac_err"; then
     
    23452477ac_safe=`echo "string.h" | sed 'y%./+-%__p_%'`
    23462478echo $ac_n "checking for string.h""... $ac_c" 1>&6
    2347 echo "configure:2348: checking for string.h" >&5
     2479echo "configure:2480: checking for string.h" >&5
    23482480if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then
    23492481  echo $ac_n "(cached) $ac_c" 1>&6
    23502482else
    23512483  cat > conftest.$ac_ext <<EOF
    2352 #line 2353 "configure"
     2484#line 2485 "configure"
    23532485#include "confdefs.h"
    23542486#include <string.h>
    23552487EOF
    23562488ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
    2357 { (eval echo configure:2358: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
     2489{ (eval echo configure:2490: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
    23582490ac_err=`grep -v '^ *+' conftest.out`
    23592491if test -z "$ac_err"; then
     
    23792511ac_safe=`echo "stddef.h" | sed 'y%./+-%__p_%'`
    23802512echo $ac_n "checking for stddef.h""... $ac_c" 1>&6
    2381 echo "configure:2382: checking for stddef.h" >&5
     2513echo "configure:2514: checking for stddef.h" >&5
    23822514if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then
    23832515  echo $ac_n "(cached) $ac_c" 1>&6
    23842516else
    23852517  cat > conftest.$ac_ext <<EOF
    2386 #line 2387 "configure"
     2518#line 2519 "configure"
    23872519#include "confdefs.h"
    23882520#include <stddef.h>
    23892521EOF
    23902522ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
    2391 { (eval echo configure:2392: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
     2523{ (eval echo configure:2524: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
    23922524ac_err=`grep -v '^ *+' conftest.out`
    23932525if test -z "$ac_err"; then
     
    24132545ac_safe=`echo "values.h" | sed 'y%./+-%__p_%'`
    24142546echo $ac_n "checking for values.h""... $ac_c" 1>&6
    2415 echo "configure:2416: checking for values.h" >&5
     2547echo "configure:2548: checking for values.h" >&5
    24162548if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then
    24172549  echo $ac_n "(cached) $ac_c" 1>&6
    24182550else
    24192551  cat > conftest.$ac_ext <<EOF
    2420 #line 2421 "configure"
     2552#line 2553 "configure"
    24212553#include "confdefs.h"
    24222554#include <values.h>
    24232555EOF
    24242556ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
    2425 { (eval echo configure:2426: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
     2557{ (eval echo configure:2558: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
    24262558ac_err=`grep -v '^ *+' conftest.out`
    24272559if test -z "$ac_err"; then
     
    24482580ac_safe=`echo "fcntl.h" | sed 'y%./+-%__p_%'`
    24492581echo $ac_n "checking for fcntl.h""... $ac_c" 1>&6
    2450 echo "configure:2451: checking for fcntl.h" >&5
     2582echo "configure:2583: checking for fcntl.h" >&5
    24512583if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then
    24522584  echo $ac_n "(cached) $ac_c" 1>&6
    24532585else
    24542586  cat > conftest.$ac_ext <<EOF
    2455 #line 2456 "configure"
     2587#line 2588 "configure"
    24562588#include "confdefs.h"
    24572589#include <fcntl.h>
    24582590EOF
    24592591ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
    2460 { (eval echo configure:2461: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
     2592{ (eval echo configure:2593: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
    24612593ac_err=`grep -v '^ *+' conftest.out`
    24622594if test -z "$ac_err"; then
     
    24822614ac_safe=`echo "sys/ioctl.h" | sed 'y%./+-%__p_%'`
    24832615echo $ac_n "checking for sys/ioctl.h""... $ac_c" 1>&6
    2484 echo "configure:2485: checking for sys/ioctl.h" >&5
     2616echo "configure:2617: checking for sys/ioctl.h" >&5
    24852617if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then
    24862618  echo $ac_n "(cached) $ac_c" 1>&6
    24872619else
    24882620  cat > conftest.$ac_ext <<EOF
    2489 #line 2490 "configure"
     2621#line 2622 "configure"
    24902622#include "confdefs.h"
    24912623#include <sys/ioctl.h>
    24922624EOF
    24932625ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
    2494 { (eval echo configure:2495: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
     2626{ (eval echo configure:2627: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
    24952627ac_err=`grep -v '^ *+' conftest.out`
    24962628if test -z "$ac_err"; then
     
    25162648ac_safe=`echo "sys/param.h" | sed 'y%./+-%__p_%'`
    25172649echo $ac_n "checking for sys/param.h""... $ac_c" 1>&6
    2518 echo "configure:2519: checking for sys/param.h" >&5
     2650echo "configure:2651: checking for sys/param.h" >&5
    25192651if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then
    25202652  echo $ac_n "(cached) $ac_c" 1>&6
    25212653else
    25222654  cat > conftest.$ac_ext <<EOF
    2523 #line 2524 "configure"
     2655#line 2656 "configure"
    25242656#include "confdefs.h"
    25252657#include <sys/param.h>
    25262658EOF
    25272659ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
    2528 { (eval echo configure:2529: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
     2660{ (eval echo configure:2661: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
    25292661ac_err=`grep -v '^ *+' conftest.out`
    25302662if test -z "$ac_err"; then
     
    25502682ac_safe=`echo "sys/socket.h" | sed 'y%./+-%__p_%'`
    25512683echo $ac_n "checking for sys/socket.h""... $ac_c" 1>&6
    2552 echo "configure:2553: checking for sys/socket.h" >&5
     2684echo "configure:2685: checking for sys/socket.h" >&5
    25532685if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then
    25542686  echo $ac_n "(cached) $ac_c" 1>&6
    25552687else
    25562688  cat > conftest.$ac_ext <<EOF
    2557 #line 2558 "configure"
     2689#line 2690 "configure"
    25582690#include "confdefs.h"
    25592691#include <sys/socket.h>
    25602692EOF
    25612693ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
    2562 { (eval echo configure:2563: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
     2694{ (eval echo configure:2695: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
    25632695ac_err=`grep -v '^ *+' conftest.out`
    25642696if test -z "$ac_err"; then
     
    25842716ac_safe=`echo "sys/stat.h" | sed 'y%./+-%__p_%'`
    25852717echo $ac_n "checking for sys/stat.h""... $ac_c" 1>&6
    2586 echo "configure:2587: checking for sys/stat.h" >&5
     2718echo "configure:2719: checking for sys/stat.h" >&5
    25872719if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then
    25882720  echo $ac_n "(cached) $ac_c" 1>&6
    25892721else
    25902722  cat > conftest.$ac_ext <<EOF
    2591 #line 2592 "configure"
     2723#line 2724 "configure"
    25922724#include "confdefs.h"
    25932725#include <sys/stat.h>
    25942726EOF
    25952727ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
    2596 { (eval echo configure:2597: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
     2728{ (eval echo configure:2729: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
    25972729ac_err=`grep -v '^ *+' conftest.out`
    25982730if test -z "$ac_err"; then
     
    26182750ac_safe=`echo "sys/time.h" | sed 'y%./+-%__p_%'`
    26192751echo $ac_n "checking for sys/time.h""... $ac_c" 1>&6
    2620 echo "configure:2621: checking for sys/time.h" >&5
     2752echo "configure:2753: checking for sys/time.h" >&5
    26212753if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then
    26222754  echo $ac_n "(cached) $ac_c" 1>&6
    26232755else
    26242756  cat > conftest.$ac_ext <<EOF
    2625 #line 2626 "configure"
     2757#line 2758 "configure"
    26262758#include "confdefs.h"
    26272759#include <sys/time.h>
    26282760EOF
    26292761ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
    2630 { (eval echo configure:2631: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
     2762{ (eval echo configure:2763: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
    26312763ac_err=`grep -v '^ *+' conftest.out`
    26322764if test -z "$ac_err"; then
     
    26522784ac_safe=`echo "sys/types.h" | sed 'y%./+-%__p_%'`
    26532785echo $ac_n "checking for sys/types.h""... $ac_c" 1>&6
    2654 echo "configure:2655: checking for sys/types.h" >&5
     2786echo "configure:2787: checking for sys/types.h" >&5
    26552787if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then
    26562788  echo $ac_n "(cached) $ac_c" 1>&6
    26572789else
    26582790  cat > conftest.$ac_ext <<EOF
    2659 #line 2660 "configure"
     2791#line 2792 "configure"
    26602792#include "confdefs.h"
    26612793#include <sys/types.h>
    26622794EOF
    26632795ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
    2664 { (eval echo configure:2665: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
     2796{ (eval echo configure:2797: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
    26652797ac_err=`grep -v '^ *+' conftest.out`
    26662798if test -z "$ac_err"; then
     
    26862818ac_safe=`echo "sys/uio.h" | sed 'y%./+-%__p_%'`
    26872819echo $ac_n "checking for sys/uio.h""... $ac_c" 1>&6
    2688 echo "configure:2689: checking for sys/uio.h" >&5
     2820echo "configure:2821: checking for sys/uio.h" >&5
    26892821if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then
    26902822  echo $ac_n "(cached) $ac_c" 1>&6
    26912823else
    26922824  cat > conftest.$ac_ext <<EOF
    2693 #line 2694 "configure"
     2825#line 2826 "configure"
    26942826#include "confdefs.h"
    26952827#include <sys/uio.h>
    26962828EOF
    26972829ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
    2698 { (eval echo configure:2699: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
     2830{ (eval echo configure:2831: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
    26992831ac_err=`grep -v '^ *+' conftest.out`
    27002832if test -z "$ac_err"; then
     
    27202852ac_safe=`echo "sys/un.h" | sed 'y%./+-%__p_%'`
    27212853echo $ac_n "checking for sys/un.h""... $ac_c" 1>&6
    2722 echo "configure:2723: checking for sys/un.h" >&5
     2854echo "configure:2855: checking for sys/un.h" >&5
    27232855if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then
    27242856  echo $ac_n "(cached) $ac_c" 1>&6
    27252857else
    27262858  cat > conftest.$ac_ext <<EOF
    2727 #line 2728 "configure"
     2859#line 2860 "configure"
    27282860#include "confdefs.h"
    27292861#include <sys/un.h>
    27302862EOF
    27312863ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
    2732 { (eval echo configure:2733: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
     2864{ (eval echo configure:2865: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
    27332865ac_err=`grep -v '^ *+' conftest.out`
    27342866if test -z "$ac_err"; then
     
    27542886ac_safe=`echo "unistd.h" | sed 'y%./+-%__p_%'`
    27552887echo $ac_n "checking for unistd.h""... $ac_c" 1>&6
    2756 echo "configure:2757: checking for unistd.h" >&5
     2888echo "configure:2889: checking for unistd.h" >&5
    27572889if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then
    27582890  echo $ac_n "(cached) $ac_c" 1>&6
    27592891else
    27602892  cat > conftest.$ac_ext <<EOF
    2761 #line 2762 "configure"
     2893#line 2894 "configure"
    27622894#include "confdefs.h"
    27632895#include <unistd.h>
    27642896EOF
    27652897ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
    2766 { (eval echo configure:2767: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
     2898{ (eval echo configure:2899: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
    27672899ac_err=`grep -v '^ *+' conftest.out`
    27682900if test -z "$ac_err"; then
     
    27882920ac_safe=`echo "math.h" | sed 'y%./+-%__p_%'`
    27892921echo $ac_n "checking for math.h""... $ac_c" 1>&6
    2790 echo "configure:2791: checking for math.h" >&5
     2922echo "configure:2923: checking for math.h" >&5
    27912923if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then
    27922924  echo $ac_n "(cached) $ac_c" 1>&6
    27932925else
    27942926  cat > conftest.$ac_ext <<EOF
    2795 #line 2796 "configure"
     2927#line 2928 "configure"
    27962928#include "confdefs.h"
    27972929#include <math.h>
    27982930EOF
    27992931ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
    2800 { (eval echo configure:2801: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
     2932{ (eval echo configure:2933: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
    28012933ac_err=`grep -v '^ *+' conftest.out`
    28022934if test -z "$ac_err"; then
     
    28262958ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'`
    28272959echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6
    2828 echo "configure:2829: checking for $ac_hdr" >&5
     2960echo "configure:2961: checking for $ac_hdr" >&5
    28292961if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then
    28302962  echo $ac_n "(cached) $ac_c" 1>&6
    28312963else
    28322964  cat > conftest.$ac_ext <<EOF
    2833 #line 2834 "configure"
     2965#line 2966 "configure"
    28342966#include "confdefs.h"
    28352967#include <$ac_hdr>
    28362968EOF
    28372969ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
    2838 { (eval echo configure:2839: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
     2970{ (eval echo configure:2971: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
    28392971ac_err=`grep -v '^ *+' conftest.out`
    28402972if test -z "$ac_err"; then
     
    28652997if test "$ac_cv_header_gmp_h" = yes; then
    28662998  cat > conftest.$ac_ext <<EOF
    2867 #line 2868 "configure"
     2999#line 3000 "configure"
    28683000#include "confdefs.h"
    28693001#include <gmp.h>
     
    28783010  if test ! "$MPZ_PTR" = mpz_ptr; then
    28793011    cat > conftest.$ac_ext <<EOF
    2880 #line 2881 "configure"
     3012#line 3013 "configure"
    28813013#include "confdefs.h"
    28823014#include <gmp.h>
     
    29073039  fi
    29083040  cat > conftest.$ac_ext <<EOF
    2909 #line 2910 "configure"
     3041#line 3042 "configure"
    29103042#include "confdefs.h"
    29113043#include <gmp.h>
     
    31523284
    31533285    echo $ac_n "checking for ulong""... $ac_c" 1>&6
    3154 echo "configure:3155: checking for ulong" >&5
     3286echo "configure:3287: checking for ulong" >&5
    31553287if eval "test \"`echo '$''{'ac_cv_type_ulong'+set}'`\" = set"; then
    31563288  echo $ac_n "(cached) $ac_c" 1>&6
    31573289else
    31583290  cat > conftest.$ac_ext <<EOF
    3159 #line 3160 "configure"
     3291#line 3292 "configure"
    31603292#include "confdefs.h"
    31613293#include <sys/types.h>
     
    31983330  ac_safe=`echo "TB.h" | sed 'y%./+-%__p_%'`
    31993331echo $ac_n "checking for TB.h""... $ac_c" 1>&6
    3200 echo "configure:3201: checking for TB.h" >&5
     3332echo "configure:3333: checking for TB.h" >&5
    32013333if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then
    32023334  echo $ac_n "(cached) $ac_c" 1>&6
    32033335else
    32043336  cat > conftest.$ac_ext <<EOF
    3205 #line 3206 "configure"
     3337#line 3338 "configure"
    32063338#include "confdefs.h"
    32073339#include <TB.h>
    32083340EOF
    32093341ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
    3210 { (eval echo configure:3211: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
     3342{ (eval echo configure:3343: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
    32113343ac_err=`grep -v '^ *+' conftest.out`
    32123344if test -z "$ac_err"; then
     
    32423374 ac_safe=`echo "pvm3.h" | sed 'y%./+-%__p_%'`
    32433375echo $ac_n "checking for pvm3.h""... $ac_c" 1>&6
    3244 echo "configure:3245: checking for pvm3.h" >&5
     3376echo "configure:3377: checking for pvm3.h" >&5
    32453377if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then
    32463378  echo $ac_n "(cached) $ac_c" 1>&6
    32473379else
    32483380  cat > conftest.$ac_ext <<EOF
    3249 #line 3250 "configure"
     3381#line 3382 "configure"
    32503382#include "confdefs.h"
    32513383#include <pvm3.h>
    32523384EOF
    32533385ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
    3254 { (eval echo configure:3255: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
     3386{ (eval echo configure:3387: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
    32553387ac_err=`grep -v '^ *+' conftest.out`
    32563388if test -z "$ac_err"; then
     
    32913423set dummy ${with_rsh}; ac_word=$2
    32923424echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
    3293 echo "configure:3294: checking for $ac_word" >&5
     3425echo "configure:3426: checking for $ac_word" >&5
    32943426if eval "test \"`echo '$''{'ac_cv_prog_with_rsh'+set}'`\" = set"; then
    32953427  echo $ac_n "(cached) $ac_c" 1>&6
     
    33283460set dummy rsh; ac_word=$2
    33293461echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
    3330 echo "configure:3331: checking for $ac_word" >&5
     3462echo "configure:3463: checking for $ac_word" >&5
    33313463if eval "test \"`echo '$''{'ac_cv_prog_mp_rsh'+set}'`\" = set"; then
    33323464  echo $ac_n "(cached) $ac_c" 1>&6
     
    33613493set dummy remsh; ac_word=$2
    33623494echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
    3363 echo "configure:3364: checking for $ac_word" >&5
     3495echo "configure:3496: checking for $ac_word" >&5
    33643496if eval "test \"`echo '$''{'ac_cv_prog_mp_remsh'+set}'`\" = set"; then
    33653497  echo $ac_n "(cached) $ac_c" 1>&6
     
    33943526set dummy ssh; ac_word=$2
    33953527echo $ac_n "checking for $ac_word""... $ac_c" 1>&6
    3396 echo "configure:3397: checking for $ac_word" >&5
     3528echo "configure:3529: checking for $ac_word" >&5
    33973529if eval "test \"`echo '$''{'ac_cv_prog_mp_ssh'+set}'`\" = set"; then
    33983530  echo $ac_n "(cached) $ac_c" 1>&6
     
    34253557
    34263558echo $ac_n "checking which remote shell command to use""... $ac_c" 1>&6
    3427 echo "configure:3428: checking which remote shell command to use" >&5
     3559echo "configure:3560: checking which remote shell command to use" >&5
    34283560for mp_rsh in $ac_rsh_programs; do
    34293561    if $mp_rsh `hostname` -n uname \>\& /dev/null; then
     
    34543586  ac_safe=`echo "${with_malloc}" | sed 'y%./+-%__p_%'`
    34553587echo $ac_n "checking for ${with_malloc}""... $ac_c" 1>&6
    3456 echo "configure:3457: checking for ${with_malloc}" >&5
     3588echo "configure:3589: checking for ${with_malloc}" >&5
    34573589if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then
    34583590  echo $ac_n "(cached) $ac_c" 1>&6
    34593591else
    34603592  cat > conftest.$ac_ext <<EOF
    3461 #line 3462 "configure"
     3593#line 3594 "configure"
    34623594#include "confdefs.h"
    34633595#include <${with_malloc}>
    34643596EOF
    34653597ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out"
    3466 { (eval echo configure:3467: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
     3598{ (eval echo configure:3599: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }
    34673599ac_err=`grep -v '^ *+' conftest.out`
    34683600if test -z "$ac_err"; then
     
    34883620fi
    34893621echo $ac_n "checking where malloc rotuines come from""... $ac_c" 1>&6
    3490 echo "configure:3491: checking where malloc rotuines come from" >&5
     3622echo "configure:3623: checking where malloc rotuines come from" >&5
    34913623if test "${with_malloc+set}" = set; then
    34923624  echo "$ac_t""${with_malloc}" 1>&6
     
    35053637
    35063638echo $ac_n "checking whether byte ordering is bigendian""... $ac_c" 1>&6
    3507 echo "configure:3508: checking whether byte ordering is bigendian" >&5
     3639echo "configure:3640: checking whether byte ordering is bigendian" >&5
    35083640if eval "test \"`echo '$''{'ac_cv_c_bigendian'+set}'`\" = set"; then
    35093641  echo $ac_n "(cached) $ac_c" 1>&6
     
    35123644# See if sys/param.h defines the BYTE_ORDER macro.
    35133645cat > conftest.$ac_ext <<EOF
    3514 #line 3515 "configure"
     3646#line 3647 "configure"
    35153647#include "confdefs.h"
    35163648#include <sys/types.h>
     
    35233655; return 0; }
    35243656EOF
    3525 if { (eval echo configure:3526: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
     3657if { (eval echo configure:3658: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
    35263658  rm -rf conftest*
    35273659  # It does; now see whether it defined to BIG_ENDIAN or not.
    35283660cat > conftest.$ac_ext <<EOF
    3529 #line 3530 "configure"
     3661#line 3662 "configure"
    35303662#include "confdefs.h"
    35313663#include <sys/types.h>
     
    35383670; return 0; }
    35393671EOF
    3540 if { (eval echo configure:3541: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
     3672if { (eval echo configure:3673: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
    35413673  rm -rf conftest*
    35423674  ac_cv_c_bigendian=yes
     
    35583690else
    35593691  cat > conftest.$ac_ext <<EOF
    3560 #line 3561 "configure"
     3692#line 3693 "configure"
    35613693#include "confdefs.h"
    35623694main () {
     
    35713703}
    35723704EOF
    3573 if { (eval echo configure:3574: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest && (./conftest; exit) 2>/dev/null
     3705if { (eval echo configure:3706: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest && (./conftest; exit) 2>/dev/null
    35743706then
    35753707  ac_cv_c_bigendian=no
     
    35953727
    35963728echo $ac_n "checking for working const""... $ac_c" 1>&6
    3597 echo "configure:3598: checking for working const" >&5
     3729echo "configure:3730: checking for working const" >&5
    35983730if eval "test \"`echo '$''{'ac_cv_c_const'+set}'`\" = set"; then
    35993731  echo $ac_n "(cached) $ac_c" 1>&6
    36003732else
    36013733  cat > conftest.$ac_ext <<EOF
    3602 #line 3603 "configure"
     3734#line 3735 "configure"
    36033735#include "confdefs.h"
    36043736
     
    36493781; return 0; }
    36503782EOF
    3651 if { (eval echo configure:3652: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
     3783if { (eval echo configure:3784: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
    36523784  rm -rf conftest*
    36533785  ac_cv_c_const=yes
     
    36703802
    36713803echo $ac_n "checking for size_t""... $ac_c" 1>&6
    3672 echo "configure:3673: checking for size_t" >&5
     3804echo "configure:3805: checking for size_t" >&5
    36733805if eval "test \"`echo '$''{'ac_cv_type_size_t'+set}'`\" = set"; then
    36743806  echo $ac_n "(cached) $ac_c" 1>&6
    36753807else
    36763808  cat > conftest.$ac_ext <<EOF
    3677 #line 3678 "configure"
     3809#line 3810 "configure"
    36783810#include "confdefs.h"
    36793811#include <sys/types.h>
     
    37033835
    37043836echo $ac_n "checking whether time.h and sys/time.h may both be included""... $ac_c" 1>&6
    3705 echo "configure:3706: checking whether time.h and sys/time.h may both be included" >&5
     3837echo "configure:3838: checking whether time.h and sys/time.h may both be included" >&5
    37063838if eval "test \"`echo '$''{'ac_cv_header_time'+set}'`\" = set"; then
    37073839  echo $ac_n "(cached) $ac_c" 1>&6
    37083840else
    37093841  cat > conftest.$ac_ext <<EOF
    3710 #line 3711 "configure"
     3842#line 3843 "configure"
    37113843#include "confdefs.h"
    37123844#include <sys/types.h>
     
    37173849; return 0; }
    37183850EOF
    3719 if { (eval echo configure:3720: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
     3851if { (eval echo configure:3852: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then
    37203852  rm -rf conftest*
    37213853  ac_cv_header_time=yes
     
    37393871
    37403872echo $ac_n "checking size of long""... $ac_c" 1>&6
    3741 echo "configure:3742: checking size of long" >&5
     3873echo "configure:3874: checking size of long" >&5
    37423874if eval "test \"`echo '$''{'ac_cv_sizeof_long'+set}'`\" = set"; then
    37433875  echo $ac_n "(cached) $ac_c" 1>&6
     
    37473879else
    37483880  cat > conftest.$ac_ext <<EOF
    3749 #line 3750 "configure"
     3881#line 3882 "configure"
    37503882#include "confdefs.h"
    37513883#include <stdio.h>
     
    37583890}
    37593891EOF
    3760 if { (eval echo configure:3761: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest && (./conftest; exit) 2>/dev/null
     3892if { (eval echo configure:3893: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest && (./conftest; exit) 2>/dev/null
    37613893then
    37623894  ac_cv_sizeof_long=`cat conftestval`
     
    39524084s%@CC@%$CC%g
    39534085s%@CPP@%$CPP%g
     4086s%@CXX@%$CXX%g
    39544087s%@SET_MAKE@%$SET_MAKE%g
    39554088s%@BUILD_SUBDIRS@%$BUILD_SUBDIRS%g
Note: See TracChangeset for help on using the changeset viewer.