Changeset 551da5 in git
- Timestamp:
- Apr 19, 1999, 7:01:01 PM (24 years ago)
- Branches:
- (u'spielwiese', '828514cf6e480e4bafc26df99217bf2a1ed1ef45')
- Children:
- 74759e660182cb1c2cdefe60698ceca530e27c14
- Parents:
- 22b7de815538ed2908c8f0a8999f017f0885f194
- File:
-
- 1 edited
Legend:
- Unmodified
- Added
- Removed
-
MP/configure
r22b7de8 r551da5 64 64 ac_help="$ac_help 65 65 \ 66 --with-malloc=HEADER use external malloc routines declared in HEADER"66 --with-malloc=HEADER use external malloc routines declared in HEADER" 67 67 68 68 # Initialize some variables set by options. … … 1026 1026 echo "$ac_t""$CPP" 1>&6 1027 1027 1028 for ac_prog in $CCC c++ g++ gcc CC cxx cc++ 1029 do 1030 # Extract the first word of "$ac_prog", so it can be a program name with args. 1031 set dummy $ac_prog; ac_word=$2 1032 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 1033 echo "configure:1034: checking for $ac_word" >&5 1034 if eval "test \"`echo '$''{'ac_cv_prog_CXX'+set}'`\" = set"; then 1035 echo $ac_n "(cached) $ac_c" 1>&6 1036 else 1037 if test -n "$CXX"; then 1038 ac_cv_prog_CXX="$CXX" # Let the user override the test. 1039 else 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" 1049 fi 1050 fi 1051 CXX="$ac_cv_prog_CXX" 1052 if test -n "$CXX"; then 1053 echo "$ac_t""$CXX" 1>&6 1054 else 1055 echo "$ac_t""no" 1>&6 1056 fi 1057 1058 test -n "$CXX" && break 1059 done 1060 test -n "$CXX" || CXX="gcc" 1061 1062 1063 echo $ac_n "checking whether the C++ compiler ($CXX $CXXFLAGS $LDFLAGS) works""... $ac_c" 1>&6 1064 echo "configure:1065: checking whether the C++ compiler ($CXX $CXXFLAGS $LDFLAGS) works" >&5 1065 1066 ac_ext=C 1067 # CXXFLAGS is not in ac_cpp because -g, -O, etc. are not valid cpp options. 1068 ac_cpp='$CXXCPP $CPPFLAGS' 1069 ac_compile='${CXX-g++} -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext 1>&5' 1070 ac_link='${CXX-g++} -o conftest $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&5' 1071 cross_compiling=$ac_cv_prog_cxx_cross 1072 1073 cat > conftest.$ac_ext <<EOF 1074 #line 1075 "configure" 1075 #include "confdefs.h" 1076 main(){return(0);} 1077 EOF 1078 if { (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 1086 else 1087 echo "configure: failed program was:" >&5 1088 cat conftest.$ac_ext >&5 1089 ac_cv_prog_cxx_works=no 1090 fi 1091 rm -fr conftest* 1092 ac_ext=c 1093 # CFLAGS is not in ac_cpp because -g, -O, etc. are not valid cpp options. 1094 ac_cpp='$CPP $CPPFLAGS' 1095 ac_compile='${CC-cc} -c $CFLAGS $CPPFLAGS conftest.$ac_ext 1>&5' 1096 ac_link='${CC-cc} -o conftest $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&5' 1097 cross_compiling=$ac_cv_prog_cc_cross 1098 1099 echo "$ac_t""$ac_cv_prog_cxx_works" 1>&6 1100 if 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; } 1102 fi 1103 echo $ac_n "checking whether the C++ compiler ($CXX $CXXFLAGS $LDFLAGS) is a cross-compiler""... $ac_c" 1>&6 1104 echo "configure:1105: checking whether the C++ compiler ($CXX $CXXFLAGS $LDFLAGS) is a cross-compiler" >&5 1105 echo "$ac_t""$ac_cv_prog_cxx_cross" 1>&6 1106 cross_compiling=$ac_cv_prog_cxx_cross 1107 1108 echo $ac_n "checking whether we are using GNU C++""... $ac_c" 1>&6 1109 echo "configure:1110: checking whether we are using GNU C++" >&5 1110 if eval "test \"`echo '$''{'ac_cv_prog_gxx'+set}'`\" = set"; then 1111 echo $ac_n "(cached) $ac_c" 1>&6 1112 else 1113 cat > conftest.C <<EOF 1114 #ifdef __GNUC__ 1115 yes; 1116 #endif 1117 EOF 1118 if { 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 1120 else 1121 ac_cv_prog_gxx=no 1122 fi 1123 fi 1124 1125 echo "$ac_t""$ac_cv_prog_gxx" 1>&6 1126 1127 if 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 1133 echo "configure:1134: checking whether ${CXX-g++} accepts -g" >&5 1134 if eval "test \"`echo '$''{'ac_cv_prog_cxx_g'+set}'`\" = set"; then 1135 echo $ac_n "(cached) $ac_c" 1>&6 1136 else 1137 echo 'void f(){}' > conftest.cc 1138 if test -z "`${CXX-g++} -g -c conftest.cc 2>&1`"; then 1139 ac_cv_prog_cxx_g=yes 1140 else 1141 ac_cv_prog_cxx_g=no 1142 fi 1143 rm -f conftest* 1144 1145 fi 1146 1147 echo "$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 1155 else 1156 GXX= 1157 test "${CXXFLAGS+set}" = set || CXXFLAGS="-g" 1158 fi 1159 1028 1160 echo $ac_n "checking for AIX""... $ac_c" 1>&6 1029 echo "configure:1 030: checking for AIX" >&51161 echo "configure:1162: checking for AIX" >&5 1030 1162 cat > conftest.$ac_ext <<EOF 1031 #line 1 032"configure"1163 #line 1164 "configure" 1032 1164 #include "confdefs.h" 1033 1165 #ifdef _AIX … … 1103 1235 1104 1236 echo $ac_n "checking whether ${MAKE-make} sets \${MAKE}""... $ac_c" 1>&6 1105 echo "configure:1 106: checking whether ${MAKE-make} sets \${MAKE}" >&51237 echo "configure:1238: checking whether ${MAKE-make} sets \${MAKE}" >&5 1106 1238 set dummy ${MAKE-make}; ac_make=`echo "$2" | sed 'y%./+-%__p_%'` 1107 1239 if eval "test \"`echo '$''{'ac_cv_prog_make_${ac_make}_set'+set}'`\" = set"; then … … 1130 1262 1131 1263 echo $ac_n "checking for ANSI C header files""... $ac_c" 1>&6 1132 echo "configure:1 133: checking for ANSI C header files" >&51264 echo "configure:1265: checking for ANSI C header files" >&5 1133 1265 if eval "test \"`echo '$''{'ac_cv_header_stdc'+set}'`\" = set"; then 1134 1266 echo $ac_n "(cached) $ac_c" 1>&6 1135 1267 else 1136 1268 cat > conftest.$ac_ext <<EOF 1137 #line 1 138"configure"1269 #line 1270 "configure" 1138 1270 #include "confdefs.h" 1139 1271 #include <stdlib.h> … … 1143 1275 EOF 1144 1276 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 1145 { (eval echo configure:1 146: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }1277 { (eval echo configure:1278: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 1146 1278 ac_err=`grep -v '^ *+' conftest.out` 1147 1279 if test -z "$ac_err"; then … … 1160 1292 # SunOS 4.x string.h does not declare mem*, contrary to ANSI. 1161 1293 cat > conftest.$ac_ext <<EOF 1162 #line 1 163"configure"1294 #line 1295 "configure" 1163 1295 #include "confdefs.h" 1164 1296 #include <string.h> … … 1178 1310 # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI. 1179 1311 cat > conftest.$ac_ext <<EOF 1180 #line 1 181"configure"1312 #line 1313 "configure" 1181 1313 #include "confdefs.h" 1182 1314 #include <stdlib.h> … … 1199 1331 else 1200 1332 cat > conftest.$ac_ext <<EOF 1201 #line 1 202"configure"1333 #line 1334 "configure" 1202 1334 #include "confdefs.h" 1203 1335 #include <ctype.h> … … 1210 1342 1211 1343 EOF 1212 if { (eval echo configure:1 213: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest && (./conftest; exit) 2>/dev/null1344 if { (eval echo configure:1345: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest && (./conftest; exit) 2>/dev/null 1213 1345 then 1214 1346 : … … 1234 1366 1235 1367 echo $ac_n "checking for pid_t""... $ac_c" 1>&6 1236 echo "configure:1 237: checking for pid_t" >&51368 echo "configure:1369: checking for pid_t" >&5 1237 1369 if eval "test \"`echo '$''{'ac_cv_type_pid_t'+set}'`\" = set"; then 1238 1370 echo $ac_n "(cached) $ac_c" 1>&6 1239 1371 else 1240 1372 cat > conftest.$ac_ext <<EOF 1241 #line 1 242"configure"1373 #line 1374 "configure" 1242 1374 #include "confdefs.h" 1243 1375 #include <sys/types.h> … … 1268 1400 ac_safe=`echo "vfork.h" | sed 'y%./+-%__p_%'` 1269 1401 echo $ac_n "checking for vfork.h""... $ac_c" 1>&6 1270 echo "configure:1 271: checking for vfork.h" >&51402 echo "configure:1403: checking for vfork.h" >&5 1271 1403 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then 1272 1404 echo $ac_n "(cached) $ac_c" 1>&6 1273 1405 else 1274 1406 cat > conftest.$ac_ext <<EOF 1275 #line 1 276"configure"1407 #line 1408 "configure" 1276 1408 #include "confdefs.h" 1277 1409 #include <vfork.h> 1278 1410 EOF 1279 1411 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 1280 { (eval echo configure:1 281: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }1412 { (eval echo configure:1413: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 1281 1413 ac_err=`grep -v '^ *+' conftest.out` 1282 1414 if test -z "$ac_err"; then … … 1303 1435 1304 1436 echo $ac_n "checking for working vfork""... $ac_c" 1>&6 1305 echo "configure:1 306: checking for working vfork" >&51437 echo "configure:1438: checking for working vfork" >&5 1306 1438 if eval "test \"`echo '$''{'ac_cv_func_vfork_works'+set}'`\" = set"; then 1307 1439 echo $ac_n "(cached) $ac_c" 1>&6 … … 1309 1441 if test "$cross_compiling" = yes; then 1310 1442 echo $ac_n "checking for vfork""... $ac_c" 1>&6 1311 echo "configure:1 312: checking for vfork" >&51443 echo "configure:1444: checking for vfork" >&5 1312 1444 if eval "test \"`echo '$''{'ac_cv_func_vfork'+set}'`\" = set"; then 1313 1445 echo $ac_n "(cached) $ac_c" 1>&6 1314 1446 else 1315 1447 cat > conftest.$ac_ext <<EOF 1316 #line 1 317"configure"1448 #line 1449 "configure" 1317 1449 #include "confdefs.h" 1318 1450 /* System header to define __stub macros and hopefully few prototypes, … … 1337 1469 ; return 0; } 1338 1470 EOF 1339 if { (eval echo configure:1 340: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then1471 if { (eval echo configure:1472: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then 1340 1472 rm -rf conftest* 1341 1473 eval "ac_cv_func_vfork=yes" … … 1358 1490 else 1359 1491 cat > conftest.$ac_ext <<EOF 1360 #line 1 361"configure"1492 #line 1493 "configure" 1361 1493 #include "confdefs.h" 1362 1494 /* Thanks to Paul Eggert for this test. */ … … 1453 1585 } 1454 1586 EOF 1455 if { (eval echo configure:1 456: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest && (./conftest; exit) 2>/dev/null1587 if { (eval echo configure:1588: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest && (./conftest; exit) 2>/dev/null 1456 1588 then 1457 1589 ac_cv_func_vfork_works=yes … … 1543 1675 if test "$ac_check_prog" = yes; then 1544 1676 echo $ac_n "checking for atof in -lm""... $ac_c" 1>&6 1545 echo "configure:1 546: checking for atof in -lm" >&51677 echo "configure:1678: checking for atof in -lm" >&5 1546 1678 ac_lib_var=`echo m'_'atof | sed 'y%./+-%__p_%'` 1547 1679 if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then … … 1551 1683 LIBS="-lm $LIBS" 1552 1684 cat > conftest.$ac_ext <<EOF 1553 #line 1 554"configure"1685 #line 1686 "configure" 1554 1686 #include "confdefs.h" 1555 1687 /* Override any gcc2 internal prototype to avoid an error. */ … … 1562 1694 ; return 0; } 1563 1695 EOF 1564 if { (eval echo configure:1 565: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then1696 if { (eval echo configure:1697: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then 1565 1697 rm -rf conftest* 1566 1698 eval "ac_cv_lib_$ac_lib_var=yes" … … 1590 1722 1591 1723 echo $ac_n "checking for socket in -lbsd""... $ac_c" 1>&6 1592 echo "configure:1 593: checking for socket in -lbsd" >&51724 echo "configure:1725: checking for socket in -lbsd" >&5 1593 1725 ac_lib_var=`echo bsd'_'socket | sed 'y%./+-%__p_%'` 1594 1726 if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then … … 1598 1730 LIBS="-lbsd $LIBS" 1599 1731 cat > conftest.$ac_ext <<EOF 1600 #line 1 601"configure"1732 #line 1733 "configure" 1601 1733 #include "confdefs.h" 1602 1734 /* Override any gcc2 internal prototype to avoid an error. */ … … 1609 1741 ; return 0; } 1610 1742 EOF 1611 if { (eval echo configure:1 612: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then1743 if { (eval echo configure:1744: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then 1612 1744 rm -rf conftest* 1613 1745 eval "ac_cv_lib_$ac_lib_var=yes" … … 1637 1769 1638 1770 echo $ac_n "checking for mpz_init in -lgmp""... $ac_c" 1>&6 1639 echo "configure:1 640: checking for mpz_init in -lgmp" >&51771 echo "configure:1772: checking for mpz_init in -lgmp" >&5 1640 1772 ac_lib_var=`echo gmp'_'mpz_init | sed 'y%./+-%__p_%'` 1641 1773 if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then … … 1645 1777 LIBS="-lgmp $LIBS" 1646 1778 cat > conftest.$ac_ext <<EOF 1647 #line 1 648"configure"1779 #line 1780 "configure" 1648 1780 #include "confdefs.h" 1649 1781 /* Override any gcc2 internal prototype to avoid an error. */ … … 1656 1788 ; return 0; } 1657 1789 EOF 1658 if { (eval echo configure:1 659: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then1790 if { (eval echo configure:1791: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then 1659 1791 rm -rf conftest* 1660 1792 eval "ac_cv_lib_$ac_lib_var=yes" … … 1694 1826 do 1695 1827 echo $ac_n "checking for $ac_func""... $ac_c" 1>&6 1696 echo "configure:1 697: checking for $ac_func" >&51828 echo "configure:1829: checking for $ac_func" >&5 1697 1829 if eval "test \"`echo '$''{'ac_cv_func_$ac_func'+set}'`\" = set"; then 1698 1830 echo $ac_n "(cached) $ac_c" 1>&6 1699 1831 else 1700 1832 cat > conftest.$ac_ext <<EOF 1701 #line 1 702"configure"1833 #line 1834 "configure" 1702 1834 #include "confdefs.h" 1703 1835 /* System header to define __stub macros and hopefully few prototypes, … … 1722 1854 ; return 0; } 1723 1855 EOF 1724 if { (eval echo configure:1 725: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then1856 if { (eval echo configure:1857: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then 1725 1857 rm -rf conftest* 1726 1858 eval "ac_cv_func_$ac_func=yes" … … 1757 1889 if test "$ac_cv_func_gethostbyname" != yes; then 1758 1890 echo $ac_n "checking for gethostbyname in -lnsl""... $ac_c" 1>&6 1759 echo "configure:1 760: checking for gethostbyname in -lnsl" >&51891 echo "configure:1892: checking for gethostbyname in -lnsl" >&5 1760 1892 ac_lib_var=`echo nsl'_'gethostbyname | sed 'y%./+-%__p_%'` 1761 1893 if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then … … 1765 1897 LIBS="-lnsl $LIBS" 1766 1898 cat > conftest.$ac_ext <<EOF 1767 #line 1 768"configure"1899 #line 1900 "configure" 1768 1900 #include "confdefs.h" 1769 1901 /* Override any gcc2 internal prototype to avoid an error. */ … … 1776 1908 ; return 0; } 1777 1909 EOF 1778 if { (eval echo configure:1 779: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then1910 if { (eval echo configure:1911: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then 1779 1911 rm -rf conftest* 1780 1912 eval "ac_cv_lib_$ac_lib_var=yes" … … 1811 1943 if test "$ac_cv_func_socket" != yes; then 1812 1944 echo $ac_n "checking for socket in -lsocket""... $ac_c" 1>&6 1813 echo "configure:1 814: checking for socket in -lsocket" >&51945 echo "configure:1946: checking for socket in -lsocket" >&5 1814 1946 ac_lib_var=`echo socket'_'socket | sed 'y%./+-%__p_%'` 1815 1947 if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then … … 1819 1951 LIBS="-lsocket $LIBS" 1820 1952 cat > conftest.$ac_ext <<EOF 1821 #line 1 822"configure"1953 #line 1954 "configure" 1822 1954 #include "confdefs.h" 1823 1955 /* Override any gcc2 internal prototype to avoid an error. */ … … 1830 1962 ; return 0; } 1831 1963 EOF 1832 if { (eval echo configure:1 833: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then1964 if { (eval echo configure:1965: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest; then 1833 1965 rm -rf conftest* 1834 1966 eval "ac_cv_lib_$ac_lib_var=yes" … … 1866 1998 1867 1999 echo $ac_n "checking for ANSI C header files""... $ac_c" 1>&6 1868 echo "configure: 1869: checking for ANSI C header files" >&52000 echo "configure:2001: checking for ANSI C header files" >&5 1869 2001 if eval "test \"`echo '$''{'ac_cv_header_stdc'+set}'`\" = set"; then 1870 2002 echo $ac_n "(cached) $ac_c" 1>&6 1871 2003 else 1872 2004 cat > conftest.$ac_ext <<EOF 1873 #line 1874"configure"2005 #line 2006 "configure" 1874 2006 #include "confdefs.h" 1875 2007 #include <stdlib.h> … … 1879 2011 EOF 1880 2012 ac_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; } 1882 2014 ac_err=`grep -v '^ *+' conftest.out` 1883 2015 if test -z "$ac_err"; then … … 1896 2028 # SunOS 4.x string.h does not declare mem*, contrary to ANSI. 1897 2029 cat > conftest.$ac_ext <<EOF 1898 #line 1899"configure"2030 #line 2031 "configure" 1899 2031 #include "confdefs.h" 1900 2032 #include <string.h> … … 1914 2046 # ISC 2.0.2 stdlib.h does not declare free, contrary to ANSI. 1915 2047 cat > conftest.$ac_ext <<EOF 1916 #line 1917"configure"2048 #line 2049 "configure" 1917 2049 #include "confdefs.h" 1918 2050 #include <stdlib.h> … … 1935 2067 else 1936 2068 cat > conftest.$ac_ext <<EOF 1937 #line 1938"configure"2069 #line 2070 "configure" 1938 2070 #include "confdefs.h" 1939 2071 #include <ctype.h> … … 1946 2078 1947 2079 EOF 1948 if { (eval echo configure: 1949: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest && (./conftest; exit) 2>/dev/null2080 if { (eval echo configure:2081: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest && (./conftest; exit) 2>/dev/null 1949 2081 then 1950 2082 : … … 1971 2103 ac_safe=`echo "arpa/inet.h" | sed 'y%./+-%__p_%'` 1972 2104 echo $ac_n "checking for arpa/inet.h""... $ac_c" 1>&6 1973 echo "configure: 1974: checking for arpa/inet.h" >&52105 echo "configure:2106: checking for arpa/inet.h" >&5 1974 2106 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then 1975 2107 echo $ac_n "(cached) $ac_c" 1>&6 1976 2108 else 1977 2109 cat > conftest.$ac_ext <<EOF 1978 #line 1979"configure"2110 #line 2111 "configure" 1979 2111 #include "confdefs.h" 1980 2112 #include <arpa/inet.h> 1981 2113 EOF 1982 2114 ac_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; } 1984 2116 ac_err=`grep -v '^ *+' conftest.out` 1985 2117 if test -z "$ac_err"; then … … 2005 2137 ac_safe=`echo "assert.h" | sed 'y%./+-%__p_%'` 2006 2138 echo $ac_n "checking for assert.h""... $ac_c" 1>&6 2007 echo "configure:2 008: checking for assert.h" >&52139 echo "configure:2140: checking for assert.h" >&5 2008 2140 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then 2009 2141 echo $ac_n "(cached) $ac_c" 1>&6 2010 2142 else 2011 2143 cat > conftest.$ac_ext <<EOF 2012 #line 2 013"configure"2144 #line 2145 "configure" 2013 2145 #include "confdefs.h" 2014 2146 #include <assert.h> 2015 2147 EOF 2016 2148 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 2017 { (eval echo configure:2 018: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }2149 { (eval echo configure:2150: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 2018 2150 ac_err=`grep -v '^ *+' conftest.out` 2019 2151 if test -z "$ac_err"; then … … 2039 2171 ac_safe=`echo "ctype.h" | sed 'y%./+-%__p_%'` 2040 2172 echo $ac_n "checking for ctype.h""... $ac_c" 1>&6 2041 echo "configure:2 042: checking for ctype.h" >&52173 echo "configure:2174: checking for ctype.h" >&5 2042 2174 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then 2043 2175 echo $ac_n "(cached) $ac_c" 1>&6 2044 2176 else 2045 2177 cat > conftest.$ac_ext <<EOF 2046 #line 2 047"configure"2178 #line 2179 "configure" 2047 2179 #include "confdefs.h" 2048 2180 #include <ctype.h> 2049 2181 EOF 2050 2182 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 2051 { (eval echo configure:2 052: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }2183 { (eval echo configure:2184: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 2052 2184 ac_err=`grep -v '^ *+' conftest.out` 2053 2185 if test -z "$ac_err"; then … … 2073 2205 ac_safe=`echo "errno.h" | sed 'y%./+-%__p_%'` 2074 2206 echo $ac_n "checking for errno.h""... $ac_c" 1>&6 2075 echo "configure:2 076: checking for errno.h" >&52207 echo "configure:2208: checking for errno.h" >&5 2076 2208 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then 2077 2209 echo $ac_n "(cached) $ac_c" 1>&6 2078 2210 else 2079 2211 cat > conftest.$ac_ext <<EOF 2080 #line 2 081"configure"2212 #line 2213 "configure" 2081 2213 #include "confdefs.h" 2082 2214 #include <errno.h> 2083 2215 EOF 2084 2216 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 2085 { (eval echo configure:2 086: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }2217 { (eval echo configure:2218: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 2086 2218 ac_err=`grep -v '^ *+' conftest.out` 2087 2219 if test -z "$ac_err"; then … … 2107 2239 ac_safe=`echo "netdb.h" | sed 'y%./+-%__p_%'` 2108 2240 echo $ac_n "checking for netdb.h""... $ac_c" 1>&6 2109 echo "configure:2 110: checking for netdb.h" >&52241 echo "configure:2242: checking for netdb.h" >&5 2110 2242 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then 2111 2243 echo $ac_n "(cached) $ac_c" 1>&6 2112 2244 else 2113 2245 cat > conftest.$ac_ext <<EOF 2114 #line 2 115"configure"2246 #line 2247 "configure" 2115 2247 #include "confdefs.h" 2116 2248 #include <netdb.h> 2117 2249 EOF 2118 2250 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 2119 { (eval echo configure:2 120: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }2251 { (eval echo configure:2252: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 2120 2252 ac_err=`grep -v '^ *+' conftest.out` 2121 2253 if test -z "$ac_err"; then … … 2141 2273 ac_safe=`echo "netinet/in.h" | sed 'y%./+-%__p_%'` 2142 2274 echo $ac_n "checking for netinet/in.h""... $ac_c" 1>&6 2143 echo "configure:2 144: checking for netinet/in.h" >&52275 echo "configure:2276: checking for netinet/in.h" >&5 2144 2276 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then 2145 2277 echo $ac_n "(cached) $ac_c" 1>&6 2146 2278 else 2147 2279 cat > conftest.$ac_ext <<EOF 2148 #line 2 149"configure"2280 #line 2281 "configure" 2149 2281 #include "confdefs.h" 2150 2282 #include <netinet/in.h> 2151 2283 EOF 2152 2284 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 2153 { (eval echo configure:2 154: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }2285 { (eval echo configure:2286: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 2154 2286 ac_err=`grep -v '^ *+' conftest.out` 2155 2287 if test -z "$ac_err"; then … … 2175 2307 ac_safe=`echo "netinet/tcp.h" | sed 'y%./+-%__p_%'` 2176 2308 echo $ac_n "checking for netinet/tcp.h""... $ac_c" 1>&6 2177 echo "configure:2 178: checking for netinet/tcp.h" >&52309 echo "configure:2310: checking for netinet/tcp.h" >&5 2178 2310 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then 2179 2311 echo $ac_n "(cached) $ac_c" 1>&6 2180 2312 else 2181 2313 cat > conftest.$ac_ext <<EOF 2182 #line 2 183"configure"2314 #line 2315 "configure" 2183 2315 #include "confdefs.h" 2184 2316 #include <netinet/tcp.h> 2185 2317 EOF 2186 2318 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 2187 { (eval echo configure:2 188: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }2319 { (eval echo configure:2320: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 2188 2320 ac_err=`grep -v '^ *+' conftest.out` 2189 2321 if test -z "$ac_err"; then … … 2209 2341 ac_safe=`echo "signal.h" | sed 'y%./+-%__p_%'` 2210 2342 echo $ac_n "checking for signal.h""... $ac_c" 1>&6 2211 echo "configure:2 212: checking for signal.h" >&52343 echo "configure:2344: checking for signal.h" >&5 2212 2344 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then 2213 2345 echo $ac_n "(cached) $ac_c" 1>&6 2214 2346 else 2215 2347 cat > conftest.$ac_ext <<EOF 2216 #line 2 217"configure"2348 #line 2349 "configure" 2217 2349 #include "confdefs.h" 2218 2350 #include <signal.h> 2219 2351 EOF 2220 2352 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 2221 { (eval echo configure:2 222: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }2353 { (eval echo configure:2354: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 2222 2354 ac_err=`grep -v '^ *+' conftest.out` 2223 2355 if test -z "$ac_err"; then … … 2243 2375 ac_safe=`echo "stdarg.h" | sed 'y%./+-%__p_%'` 2244 2376 echo $ac_n "checking for stdarg.h""... $ac_c" 1>&6 2245 echo "configure:2 246: checking for stdarg.h" >&52377 echo "configure:2378: checking for stdarg.h" >&5 2246 2378 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then 2247 2379 echo $ac_n "(cached) $ac_c" 1>&6 2248 2380 else 2249 2381 cat > conftest.$ac_ext <<EOF 2250 #line 2 251"configure"2382 #line 2383 "configure" 2251 2383 #include "confdefs.h" 2252 2384 #include <stdarg.h> 2253 2385 EOF 2254 2386 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 2255 { (eval echo configure:2 256: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }2387 { (eval echo configure:2388: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 2256 2388 ac_err=`grep -v '^ *+' conftest.out` 2257 2389 if test -z "$ac_err"; then … … 2277 2409 ac_safe=`echo "stdio.h" | sed 'y%./+-%__p_%'` 2278 2410 echo $ac_n "checking for stdio.h""... $ac_c" 1>&6 2279 echo "configure:2 280: checking for stdio.h" >&52411 echo "configure:2412: checking for stdio.h" >&5 2280 2412 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then 2281 2413 echo $ac_n "(cached) $ac_c" 1>&6 2282 2414 else 2283 2415 cat > conftest.$ac_ext <<EOF 2284 #line 2 285"configure"2416 #line 2417 "configure" 2285 2417 #include "confdefs.h" 2286 2418 #include <stdio.h> 2287 2419 EOF 2288 2420 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 2289 { (eval echo configure:2 290: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }2421 { (eval echo configure:2422: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 2290 2422 ac_err=`grep -v '^ *+' conftest.out` 2291 2423 if test -z "$ac_err"; then … … 2311 2443 ac_safe=`echo "stdlib.h" | sed 'y%./+-%__p_%'` 2312 2444 echo $ac_n "checking for stdlib.h""... $ac_c" 1>&6 2313 echo "configure:2 314: checking for stdlib.h" >&52445 echo "configure:2446: checking for stdlib.h" >&5 2314 2446 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then 2315 2447 echo $ac_n "(cached) $ac_c" 1>&6 2316 2448 else 2317 2449 cat > conftest.$ac_ext <<EOF 2318 #line 2 319"configure"2450 #line 2451 "configure" 2319 2451 #include "confdefs.h" 2320 2452 #include <stdlib.h> 2321 2453 EOF 2322 2454 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 2323 { (eval echo configure:2 324: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }2455 { (eval echo configure:2456: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 2324 2456 ac_err=`grep -v '^ *+' conftest.out` 2325 2457 if test -z "$ac_err"; then … … 2345 2477 ac_safe=`echo "string.h" | sed 'y%./+-%__p_%'` 2346 2478 echo $ac_n "checking for string.h""... $ac_c" 1>&6 2347 echo "configure:2 348: checking for string.h" >&52479 echo "configure:2480: checking for string.h" >&5 2348 2480 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then 2349 2481 echo $ac_n "(cached) $ac_c" 1>&6 2350 2482 else 2351 2483 cat > conftest.$ac_ext <<EOF 2352 #line 2 353"configure"2484 #line 2485 "configure" 2353 2485 #include "confdefs.h" 2354 2486 #include <string.h> 2355 2487 EOF 2356 2488 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 2357 { (eval echo configure:2 358: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }2489 { (eval echo configure:2490: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 2358 2490 ac_err=`grep -v '^ *+' conftest.out` 2359 2491 if test -z "$ac_err"; then … … 2379 2511 ac_safe=`echo "stddef.h" | sed 'y%./+-%__p_%'` 2380 2512 echo $ac_n "checking for stddef.h""... $ac_c" 1>&6 2381 echo "configure:2 382: checking for stddef.h" >&52513 echo "configure:2514: checking for stddef.h" >&5 2382 2514 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then 2383 2515 echo $ac_n "(cached) $ac_c" 1>&6 2384 2516 else 2385 2517 cat > conftest.$ac_ext <<EOF 2386 #line 2 387"configure"2518 #line 2519 "configure" 2387 2519 #include "confdefs.h" 2388 2520 #include <stddef.h> 2389 2521 EOF 2390 2522 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 2391 { (eval echo configure:2 392: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }2523 { (eval echo configure:2524: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 2392 2524 ac_err=`grep -v '^ *+' conftest.out` 2393 2525 if test -z "$ac_err"; then … … 2413 2545 ac_safe=`echo "values.h" | sed 'y%./+-%__p_%'` 2414 2546 echo $ac_n "checking for values.h""... $ac_c" 1>&6 2415 echo "configure:2 416: checking for values.h" >&52547 echo "configure:2548: checking for values.h" >&5 2416 2548 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then 2417 2549 echo $ac_n "(cached) $ac_c" 1>&6 2418 2550 else 2419 2551 cat > conftest.$ac_ext <<EOF 2420 #line 2 421"configure"2552 #line 2553 "configure" 2421 2553 #include "confdefs.h" 2422 2554 #include <values.h> 2423 2555 EOF 2424 2556 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 2425 { (eval echo configure:2 426: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }2557 { (eval echo configure:2558: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 2426 2558 ac_err=`grep -v '^ *+' conftest.out` 2427 2559 if test -z "$ac_err"; then … … 2448 2580 ac_safe=`echo "fcntl.h" | sed 'y%./+-%__p_%'` 2449 2581 echo $ac_n "checking for fcntl.h""... $ac_c" 1>&6 2450 echo "configure:2 451: checking for fcntl.h" >&52582 echo "configure:2583: checking for fcntl.h" >&5 2451 2583 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then 2452 2584 echo $ac_n "(cached) $ac_c" 1>&6 2453 2585 else 2454 2586 cat > conftest.$ac_ext <<EOF 2455 #line 2 456"configure"2587 #line 2588 "configure" 2456 2588 #include "confdefs.h" 2457 2589 #include <fcntl.h> 2458 2590 EOF 2459 2591 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 2460 { (eval echo configure:2 461: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }2592 { (eval echo configure:2593: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 2461 2593 ac_err=`grep -v '^ *+' conftest.out` 2462 2594 if test -z "$ac_err"; then … … 2482 2614 ac_safe=`echo "sys/ioctl.h" | sed 'y%./+-%__p_%'` 2483 2615 echo $ac_n "checking for sys/ioctl.h""... $ac_c" 1>&6 2484 echo "configure:2 485: checking for sys/ioctl.h" >&52616 echo "configure:2617: checking for sys/ioctl.h" >&5 2485 2617 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then 2486 2618 echo $ac_n "(cached) $ac_c" 1>&6 2487 2619 else 2488 2620 cat > conftest.$ac_ext <<EOF 2489 #line 2 490"configure"2621 #line 2622 "configure" 2490 2622 #include "confdefs.h" 2491 2623 #include <sys/ioctl.h> 2492 2624 EOF 2493 2625 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 2494 { (eval echo configure:2 495: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }2626 { (eval echo configure:2627: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 2495 2627 ac_err=`grep -v '^ *+' conftest.out` 2496 2628 if test -z "$ac_err"; then … … 2516 2648 ac_safe=`echo "sys/param.h" | sed 'y%./+-%__p_%'` 2517 2649 echo $ac_n "checking for sys/param.h""... $ac_c" 1>&6 2518 echo "configure:2 519: checking for sys/param.h" >&52650 echo "configure:2651: checking for sys/param.h" >&5 2519 2651 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then 2520 2652 echo $ac_n "(cached) $ac_c" 1>&6 2521 2653 else 2522 2654 cat > conftest.$ac_ext <<EOF 2523 #line 2 524"configure"2655 #line 2656 "configure" 2524 2656 #include "confdefs.h" 2525 2657 #include <sys/param.h> 2526 2658 EOF 2527 2659 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 2528 { (eval echo configure:2 529: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }2660 { (eval echo configure:2661: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 2529 2661 ac_err=`grep -v '^ *+' conftest.out` 2530 2662 if test -z "$ac_err"; then … … 2550 2682 ac_safe=`echo "sys/socket.h" | sed 'y%./+-%__p_%'` 2551 2683 echo $ac_n "checking for sys/socket.h""... $ac_c" 1>&6 2552 echo "configure:2 553: checking for sys/socket.h" >&52684 echo "configure:2685: checking for sys/socket.h" >&5 2553 2685 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then 2554 2686 echo $ac_n "(cached) $ac_c" 1>&6 2555 2687 else 2556 2688 cat > conftest.$ac_ext <<EOF 2557 #line 2 558"configure"2689 #line 2690 "configure" 2558 2690 #include "confdefs.h" 2559 2691 #include <sys/socket.h> 2560 2692 EOF 2561 2693 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 2562 { (eval echo configure:2 563: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }2694 { (eval echo configure:2695: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 2563 2695 ac_err=`grep -v '^ *+' conftest.out` 2564 2696 if test -z "$ac_err"; then … … 2584 2716 ac_safe=`echo "sys/stat.h" | sed 'y%./+-%__p_%'` 2585 2717 echo $ac_n "checking for sys/stat.h""... $ac_c" 1>&6 2586 echo "configure:2 587: checking for sys/stat.h" >&52718 echo "configure:2719: checking for sys/stat.h" >&5 2587 2719 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then 2588 2720 echo $ac_n "(cached) $ac_c" 1>&6 2589 2721 else 2590 2722 cat > conftest.$ac_ext <<EOF 2591 #line 2 592"configure"2723 #line 2724 "configure" 2592 2724 #include "confdefs.h" 2593 2725 #include <sys/stat.h> 2594 2726 EOF 2595 2727 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 2596 { (eval echo configure:2 597: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }2728 { (eval echo configure:2729: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 2597 2729 ac_err=`grep -v '^ *+' conftest.out` 2598 2730 if test -z "$ac_err"; then … … 2618 2750 ac_safe=`echo "sys/time.h" | sed 'y%./+-%__p_%'` 2619 2751 echo $ac_n "checking for sys/time.h""... $ac_c" 1>&6 2620 echo "configure:2 621: checking for sys/time.h" >&52752 echo "configure:2753: checking for sys/time.h" >&5 2621 2753 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then 2622 2754 echo $ac_n "(cached) $ac_c" 1>&6 2623 2755 else 2624 2756 cat > conftest.$ac_ext <<EOF 2625 #line 2 626"configure"2757 #line 2758 "configure" 2626 2758 #include "confdefs.h" 2627 2759 #include <sys/time.h> 2628 2760 EOF 2629 2761 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 2630 { (eval echo configure:2 631: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }2762 { (eval echo configure:2763: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 2631 2763 ac_err=`grep -v '^ *+' conftest.out` 2632 2764 if test -z "$ac_err"; then … … 2652 2784 ac_safe=`echo "sys/types.h" | sed 'y%./+-%__p_%'` 2653 2785 echo $ac_n "checking for sys/types.h""... $ac_c" 1>&6 2654 echo "configure:2 655: checking for sys/types.h" >&52786 echo "configure:2787: checking for sys/types.h" >&5 2655 2787 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then 2656 2788 echo $ac_n "(cached) $ac_c" 1>&6 2657 2789 else 2658 2790 cat > conftest.$ac_ext <<EOF 2659 #line 2 660"configure"2791 #line 2792 "configure" 2660 2792 #include "confdefs.h" 2661 2793 #include <sys/types.h> 2662 2794 EOF 2663 2795 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 2664 { (eval echo configure:2 665: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }2796 { (eval echo configure:2797: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 2665 2797 ac_err=`grep -v '^ *+' conftest.out` 2666 2798 if test -z "$ac_err"; then … … 2686 2818 ac_safe=`echo "sys/uio.h" | sed 'y%./+-%__p_%'` 2687 2819 echo $ac_n "checking for sys/uio.h""... $ac_c" 1>&6 2688 echo "configure:2 689: checking for sys/uio.h" >&52820 echo "configure:2821: checking for sys/uio.h" >&5 2689 2821 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then 2690 2822 echo $ac_n "(cached) $ac_c" 1>&6 2691 2823 else 2692 2824 cat > conftest.$ac_ext <<EOF 2693 #line 2 694"configure"2825 #line 2826 "configure" 2694 2826 #include "confdefs.h" 2695 2827 #include <sys/uio.h> 2696 2828 EOF 2697 2829 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 2698 { (eval echo configure:2 699: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }2830 { (eval echo configure:2831: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 2699 2831 ac_err=`grep -v '^ *+' conftest.out` 2700 2832 if test -z "$ac_err"; then … … 2720 2852 ac_safe=`echo "sys/un.h" | sed 'y%./+-%__p_%'` 2721 2853 echo $ac_n "checking for sys/un.h""... $ac_c" 1>&6 2722 echo "configure:2 723: checking for sys/un.h" >&52854 echo "configure:2855: checking for sys/un.h" >&5 2723 2855 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then 2724 2856 echo $ac_n "(cached) $ac_c" 1>&6 2725 2857 else 2726 2858 cat > conftest.$ac_ext <<EOF 2727 #line 2 728"configure"2859 #line 2860 "configure" 2728 2860 #include "confdefs.h" 2729 2861 #include <sys/un.h> 2730 2862 EOF 2731 2863 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 2732 { (eval echo configure:2 733: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }2864 { (eval echo configure:2865: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 2733 2865 ac_err=`grep -v '^ *+' conftest.out` 2734 2866 if test -z "$ac_err"; then … … 2754 2886 ac_safe=`echo "unistd.h" | sed 'y%./+-%__p_%'` 2755 2887 echo $ac_n "checking for unistd.h""... $ac_c" 1>&6 2756 echo "configure:2 757: checking for unistd.h" >&52888 echo "configure:2889: checking for unistd.h" >&5 2757 2889 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then 2758 2890 echo $ac_n "(cached) $ac_c" 1>&6 2759 2891 else 2760 2892 cat > conftest.$ac_ext <<EOF 2761 #line 2 762"configure"2893 #line 2894 "configure" 2762 2894 #include "confdefs.h" 2763 2895 #include <unistd.h> 2764 2896 EOF 2765 2897 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 2766 { (eval echo configure:2 767: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }2898 { (eval echo configure:2899: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 2767 2899 ac_err=`grep -v '^ *+' conftest.out` 2768 2900 if test -z "$ac_err"; then … … 2788 2920 ac_safe=`echo "math.h" | sed 'y%./+-%__p_%'` 2789 2921 echo $ac_n "checking for math.h""... $ac_c" 1>&6 2790 echo "configure:2 791: checking for math.h" >&52922 echo "configure:2923: checking for math.h" >&5 2791 2923 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then 2792 2924 echo $ac_n "(cached) $ac_c" 1>&6 2793 2925 else 2794 2926 cat > conftest.$ac_ext <<EOF 2795 #line 2 796"configure"2927 #line 2928 "configure" 2796 2928 #include "confdefs.h" 2797 2929 #include <math.h> 2798 2930 EOF 2799 2931 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 2800 { (eval echo configure:2 801: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }2932 { (eval echo configure:2933: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 2801 2933 ac_err=`grep -v '^ *+' conftest.out` 2802 2934 if test -z "$ac_err"; then … … 2826 2958 ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` 2827 2959 echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 2828 echo "configure:2 829: checking for $ac_hdr" >&52960 echo "configure:2961: checking for $ac_hdr" >&5 2829 2961 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then 2830 2962 echo $ac_n "(cached) $ac_c" 1>&6 2831 2963 else 2832 2964 cat > conftest.$ac_ext <<EOF 2833 #line 2 834"configure"2965 #line 2966 "configure" 2834 2966 #include "confdefs.h" 2835 2967 #include <$ac_hdr> 2836 2968 EOF 2837 2969 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 2838 { (eval echo configure:2 839: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }2970 { (eval echo configure:2971: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 2839 2971 ac_err=`grep -v '^ *+' conftest.out` 2840 2972 if test -z "$ac_err"; then … … 2865 2997 if test "$ac_cv_header_gmp_h" = yes; then 2866 2998 cat > conftest.$ac_ext <<EOF 2867 #line 2868"configure"2999 #line 3000 "configure" 2868 3000 #include "confdefs.h" 2869 3001 #include <gmp.h> … … 2878 3010 if test ! "$MPZ_PTR" = mpz_ptr; then 2879 3011 cat > conftest.$ac_ext <<EOF 2880 #line 2881"configure"3012 #line 3013 "configure" 2881 3013 #include "confdefs.h" 2882 3014 #include <gmp.h> … … 2907 3039 fi 2908 3040 cat > conftest.$ac_ext <<EOF 2909 #line 2910"configure"3041 #line 3042 "configure" 2910 3042 #include "confdefs.h" 2911 3043 #include <gmp.h> … … 3152 3284 3153 3285 echo $ac_n "checking for ulong""... $ac_c" 1>&6 3154 echo "configure:3 155: checking for ulong" >&53286 echo "configure:3287: checking for ulong" >&5 3155 3287 if eval "test \"`echo '$''{'ac_cv_type_ulong'+set}'`\" = set"; then 3156 3288 echo $ac_n "(cached) $ac_c" 1>&6 3157 3289 else 3158 3290 cat > conftest.$ac_ext <<EOF 3159 #line 3 160"configure"3291 #line 3292 "configure" 3160 3292 #include "confdefs.h" 3161 3293 #include <sys/types.h> … … 3198 3330 ac_safe=`echo "TB.h" | sed 'y%./+-%__p_%'` 3199 3331 echo $ac_n "checking for TB.h""... $ac_c" 1>&6 3200 echo "configure:3 201: checking for TB.h" >&53332 echo "configure:3333: checking for TB.h" >&5 3201 3333 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then 3202 3334 echo $ac_n "(cached) $ac_c" 1>&6 3203 3335 else 3204 3336 cat > conftest.$ac_ext <<EOF 3205 #line 3 206"configure"3337 #line 3338 "configure" 3206 3338 #include "confdefs.h" 3207 3339 #include <TB.h> 3208 3340 EOF 3209 3341 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 3210 { (eval echo configure:3 211: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }3342 { (eval echo configure:3343: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 3211 3343 ac_err=`grep -v '^ *+' conftest.out` 3212 3344 if test -z "$ac_err"; then … … 3242 3374 ac_safe=`echo "pvm3.h" | sed 'y%./+-%__p_%'` 3243 3375 echo $ac_n "checking for pvm3.h""... $ac_c" 1>&6 3244 echo "configure:3 245: checking for pvm3.h" >&53376 echo "configure:3377: checking for pvm3.h" >&5 3245 3377 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then 3246 3378 echo $ac_n "(cached) $ac_c" 1>&6 3247 3379 else 3248 3380 cat > conftest.$ac_ext <<EOF 3249 #line 3 250"configure"3381 #line 3382 "configure" 3250 3382 #include "confdefs.h" 3251 3383 #include <pvm3.h> 3252 3384 EOF 3253 3385 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 3254 { (eval echo configure:3 255: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }3386 { (eval echo configure:3387: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 3255 3387 ac_err=`grep -v '^ *+' conftest.out` 3256 3388 if test -z "$ac_err"; then … … 3291 3423 set dummy ${with_rsh}; ac_word=$2 3292 3424 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 3293 echo "configure:3 294: checking for $ac_word" >&53425 echo "configure:3426: checking for $ac_word" >&5 3294 3426 if eval "test \"`echo '$''{'ac_cv_prog_with_rsh'+set}'`\" = set"; then 3295 3427 echo $ac_n "(cached) $ac_c" 1>&6 … … 3328 3460 set dummy rsh; ac_word=$2 3329 3461 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 3330 echo "configure:3 331: checking for $ac_word" >&53462 echo "configure:3463: checking for $ac_word" >&5 3331 3463 if eval "test \"`echo '$''{'ac_cv_prog_mp_rsh'+set}'`\" = set"; then 3332 3464 echo $ac_n "(cached) $ac_c" 1>&6 … … 3361 3493 set dummy remsh; ac_word=$2 3362 3494 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 3363 echo "configure:3 364: checking for $ac_word" >&53495 echo "configure:3496: checking for $ac_word" >&5 3364 3496 if eval "test \"`echo '$''{'ac_cv_prog_mp_remsh'+set}'`\" = set"; then 3365 3497 echo $ac_n "(cached) $ac_c" 1>&6 … … 3394 3526 set dummy ssh; ac_word=$2 3395 3527 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 3396 echo "configure:3 397: checking for $ac_word" >&53528 echo "configure:3529: checking for $ac_word" >&5 3397 3529 if eval "test \"`echo '$''{'ac_cv_prog_mp_ssh'+set}'`\" = set"; then 3398 3530 echo $ac_n "(cached) $ac_c" 1>&6 … … 3425 3557 3426 3558 echo $ac_n "checking which remote shell command to use""... $ac_c" 1>&6 3427 echo "configure:3 428: checking which remote shell command to use" >&53559 echo "configure:3560: checking which remote shell command to use" >&5 3428 3560 for mp_rsh in $ac_rsh_programs; do 3429 3561 if $mp_rsh `hostname` -n uname \>\& /dev/null; then … … 3454 3586 ac_safe=`echo "${with_malloc}" | sed 'y%./+-%__p_%'` 3455 3587 echo $ac_n "checking for ${with_malloc}""... $ac_c" 1>&6 3456 echo "configure:3 457: checking for ${with_malloc}" >&53588 echo "configure:3589: checking for ${with_malloc}" >&5 3457 3589 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then 3458 3590 echo $ac_n "(cached) $ac_c" 1>&6 3459 3591 else 3460 3592 cat > conftest.$ac_ext <<EOF 3461 #line 3 462"configure"3593 #line 3594 "configure" 3462 3594 #include "confdefs.h" 3463 3595 #include <${with_malloc}> 3464 3596 EOF 3465 3597 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 3466 { (eval echo configure:3 467: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }3598 { (eval echo configure:3599: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 3467 3599 ac_err=`grep -v '^ *+' conftest.out` 3468 3600 if test -z "$ac_err"; then … … 3488 3620 fi 3489 3621 echo $ac_n "checking where malloc rotuines come from""... $ac_c" 1>&6 3490 echo "configure:3 491: checking where malloc rotuines come from" >&53622 echo "configure:3623: checking where malloc rotuines come from" >&5 3491 3623 if test "${with_malloc+set}" = set; then 3492 3624 echo "$ac_t""${with_malloc}" 1>&6 … … 3505 3637 3506 3638 echo $ac_n "checking whether byte ordering is bigendian""... $ac_c" 1>&6 3507 echo "configure:3 508: checking whether byte ordering is bigendian" >&53639 echo "configure:3640: checking whether byte ordering is bigendian" >&5 3508 3640 if eval "test \"`echo '$''{'ac_cv_c_bigendian'+set}'`\" = set"; then 3509 3641 echo $ac_n "(cached) $ac_c" 1>&6 … … 3512 3644 # See if sys/param.h defines the BYTE_ORDER macro. 3513 3645 cat > conftest.$ac_ext <<EOF 3514 #line 3 515"configure"3646 #line 3647 "configure" 3515 3647 #include "confdefs.h" 3516 3648 #include <sys/types.h> … … 3523 3655 ; return 0; } 3524 3656 EOF 3525 if { (eval echo configure:3 526: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then3657 if { (eval echo configure:3658: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 3526 3658 rm -rf conftest* 3527 3659 # It does; now see whether it defined to BIG_ENDIAN or not. 3528 3660 cat > conftest.$ac_ext <<EOF 3529 #line 3 530"configure"3661 #line 3662 "configure" 3530 3662 #include "confdefs.h" 3531 3663 #include <sys/types.h> … … 3538 3670 ; return 0; } 3539 3671 EOF 3540 if { (eval echo configure:3 541: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then3672 if { (eval echo configure:3673: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 3541 3673 rm -rf conftest* 3542 3674 ac_cv_c_bigendian=yes … … 3558 3690 else 3559 3691 cat > conftest.$ac_ext <<EOF 3560 #line 3 561"configure"3692 #line 3693 "configure" 3561 3693 #include "confdefs.h" 3562 3694 main () { … … 3571 3703 } 3572 3704 EOF 3573 if { (eval echo configure:3 574: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest && (./conftest; exit) 2>/dev/null3705 if { (eval echo configure:3706: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest && (./conftest; exit) 2>/dev/null 3574 3706 then 3575 3707 ac_cv_c_bigendian=no … … 3595 3727 3596 3728 echo $ac_n "checking for working const""... $ac_c" 1>&6 3597 echo "configure:3 598: checking for working const" >&53729 echo "configure:3730: checking for working const" >&5 3598 3730 if eval "test \"`echo '$''{'ac_cv_c_const'+set}'`\" = set"; then 3599 3731 echo $ac_n "(cached) $ac_c" 1>&6 3600 3732 else 3601 3733 cat > conftest.$ac_ext <<EOF 3602 #line 3 603"configure"3734 #line 3735 "configure" 3603 3735 #include "confdefs.h" 3604 3736 … … 3649 3781 ; return 0; } 3650 3782 EOF 3651 if { (eval echo configure:3 652: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then3783 if { (eval echo configure:3784: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 3652 3784 rm -rf conftest* 3653 3785 ac_cv_c_const=yes … … 3670 3802 3671 3803 echo $ac_n "checking for size_t""... $ac_c" 1>&6 3672 echo "configure:3 673: checking for size_t" >&53804 echo "configure:3805: checking for size_t" >&5 3673 3805 if eval "test \"`echo '$''{'ac_cv_type_size_t'+set}'`\" = set"; then 3674 3806 echo $ac_n "(cached) $ac_c" 1>&6 3675 3807 else 3676 3808 cat > conftest.$ac_ext <<EOF 3677 #line 3 678"configure"3809 #line 3810 "configure" 3678 3810 #include "confdefs.h" 3679 3811 #include <sys/types.h> … … 3703 3835 3704 3836 echo $ac_n "checking whether time.h and sys/time.h may both be included""... $ac_c" 1>&6 3705 echo "configure:3 706: checking whether time.h and sys/time.h may both be included" >&53837 echo "configure:3838: checking whether time.h and sys/time.h may both be included" >&5 3706 3838 if eval "test \"`echo '$''{'ac_cv_header_time'+set}'`\" = set"; then 3707 3839 echo $ac_n "(cached) $ac_c" 1>&6 3708 3840 else 3709 3841 cat > conftest.$ac_ext <<EOF 3710 #line 3 711"configure"3842 #line 3843 "configure" 3711 3843 #include "confdefs.h" 3712 3844 #include <sys/types.h> … … 3717 3849 ; return 0; } 3718 3850 EOF 3719 if { (eval echo configure:3 720: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then3851 if { (eval echo configure:3852: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 3720 3852 rm -rf conftest* 3721 3853 ac_cv_header_time=yes … … 3739 3871 3740 3872 echo $ac_n "checking size of long""... $ac_c" 1>&6 3741 echo "configure:3 742: checking size of long" >&53873 echo "configure:3874: checking size of long" >&5 3742 3874 if eval "test \"`echo '$''{'ac_cv_sizeof_long'+set}'`\" = set"; then 3743 3875 echo $ac_n "(cached) $ac_c" 1>&6 … … 3747 3879 else 3748 3880 cat > conftest.$ac_ext <<EOF 3749 #line 3 750"configure"3881 #line 3882 "configure" 3750 3882 #include "confdefs.h" 3751 3883 #include <stdio.h> … … 3758 3890 } 3759 3891 EOF 3760 if { (eval echo configure:3 761: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest && (./conftest; exit) 2>/dev/null3892 if { (eval echo configure:3893: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest && (./conftest; exit) 2>/dev/null 3761 3893 then 3762 3894 ac_cv_sizeof_long=`cat conftestval` … … 3952 4084 s%@CC@%$CC%g 3953 4085 s%@CPP@%$CPP%g 4086 s%@CXX@%$CXX%g 3954 4087 s%@SET_MAKE@%$SET_MAKE%g 3955 4088 s%@BUILD_SUBDIRS@%$BUILD_SUBDIRS%g
Note: See TracChangeset
for help on using the changeset viewer.