Changeset d3ff79 in git
- Timestamp:
- Dec 14, 2000, 3:28:41 PM (22 years ago)
- Branches:
- (u'jengelh-datetime', 'ceac47cbc86fe4a15902392bdbb9bd2ae0ea02c6')(u'spielwiese', '00e2e9c41af3fde1273eb3633f4c0c7c3db2579d')
- Children:
- fc7220b72bec3a340d6b517195679845a8252d8f
- Parents:
- f5f439847c47b2f6f43fda0c9876a65c1d36cc57
- Files:
-
- 4 edited
Legend:
- Unmodified
- Added
- Removed
-
factory/configure
rf5f439 rd3ff79 1092 1092 echo $ac_n "checking whether gcc accepts --no-rtti""... $ac_c" 1>&6 1093 1093 echo "configure:1094: checking whether gcc accepts --no-rtti" >&5 1094 tmp_flags=${CXXFLAGS} 1094 1095 CXXFLAGS="${CXXFLAGS} --no-rtti" 1096 1097 ac_ext=C 1098 # CXXFLAGS is not in ac_cpp because -g, -O, etc. are not valid cpp options. 1099 ac_cpp='$CXXCPP $CPPFLAGS' 1100 ac_compile='${CXX-g++} -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext 1>&5' 1101 ac_link='${CXX-g++} -o conftest${ac_exeext} $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&5' 1102 cross_compiling=$ac_cv_prog_cxx_cross 1103 1095 1104 if eval "test \"`echo '$''{'ac_cv_cxx_have_rtti'+set}'`\" = set"; then 1096 1105 echo $ac_n "(cached) $ac_c" 1>&6 1097 1106 else 1098 1107 cat > conftest.$ac_ext <<EOF 1099 #line 110 0"configure"1108 #line 1109 "configure" 1100 1109 #include "confdefs.h" 1101 1110 … … 1104 1113 ; return 0; } 1105 1114 EOF 1106 if { (eval echo configure:11 07: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then1115 if { (eval echo configure:1116: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 1107 1116 rm -rf conftest* 1108 1117 ac_cv_cxx_have_rtti=yes … … 1126 1135 # check whether gcc accepts --no-exceptions 1127 1136 echo $ac_n "checking whether gcc accepts --no-exceptions""... $ac_c" 1>&6 1128 echo "configure:11 29: checking whether gcc accepts --no-exceptions" >&51137 echo "configure:1138: checking whether gcc accepts --no-exceptions" >&5 1129 1138 CXXFLAGS="${CXXFLAGS} --no-exceptions" 1130 1139 if eval "test \"`echo '$''{'ac_cv_cxx_have_exceptions'+set}'`\" = set"; then … … 1132 1141 else 1133 1142 cat > conftest.$ac_ext <<EOF 1134 #line 11 35"configure"1143 #line 1144 "configure" 1135 1144 #include "confdefs.h" 1136 1145 … … 1139 1148 ; return 0; } 1140 1149 EOF 1141 if { (eval echo configure:11 42: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then1150 if { (eval echo configure:1151: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 1142 1151 rm -rf conftest* 1143 1152 ac_cv_cxx_have_exceptions=yes … … 1159 1168 fi 1160 1169 1170 ac_ext=c 1171 # CFLAGS is not in ac_cpp because -g, -O, etc. are not valid cpp options. 1172 ac_cpp='$CPP $CPPFLAGS' 1173 ac_compile='${CC-cc} -c $CFLAGS $CPPFLAGS conftest.$ac_ext 1>&5' 1174 ac_link='${CC-cc} -o conftest${ac_exeext} $CFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&5' 1175 cross_compiling=$ac_cv_prog_cc_cross 1176 1161 1177 CXXFLAGS=$temp_flags 1162 1178 … … 1167 1183 # 1168 1184 echo $ac_n "checking how to run the C preprocessor""... $ac_c" 1>&6 1169 echo "configure:11 70: checking how to run the C preprocessor" >&51185 echo "configure:1186: checking how to run the C preprocessor" >&5 1170 1186 # On Suns, sometimes $CPP names a directory. 1171 1187 if test -n "$CPP" && test -d "$CPP"; then … … 1182 1198 # not just through cpp. 1183 1199 cat > conftest.$ac_ext <<EOF 1184 #line 1 185"configure"1200 #line 1201 "configure" 1185 1201 #include "confdefs.h" 1186 1202 #include <assert.h> … … 1188 1204 EOF 1189 1205 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 1190 { (eval echo configure:1 191: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }1206 { (eval echo configure:1207: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 1191 1207 ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 1192 1208 if test -z "$ac_err"; then … … 1199 1215 CPP="${CC-cc} -E -traditional-cpp" 1200 1216 cat > conftest.$ac_ext <<EOF 1201 #line 12 02"configure"1217 #line 1218 "configure" 1202 1218 #include "confdefs.h" 1203 1219 #include <assert.h> … … 1205 1221 EOF 1206 1222 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 1207 { (eval echo configure:12 08: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }1223 { (eval echo configure:1224: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 1208 1224 ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 1209 1225 if test -z "$ac_err"; then … … 1216 1232 CPP="${CC-cc} -nologo -E" 1217 1233 cat > conftest.$ac_ext <<EOF 1218 #line 12 19"configure"1234 #line 1235 "configure" 1219 1235 #include "confdefs.h" 1220 1236 #include <assert.h> … … 1222 1238 EOF 1223 1239 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 1224 { (eval echo configure:12 25: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }1240 { (eval echo configure:1241: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 1225 1241 ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 1226 1242 if test -z "$ac_err"; then … … 1247 1263 1248 1264 echo $ac_n "checking how to run the C++ preprocessor""... $ac_c" 1>&6 1249 echo "configure:12 50: checking how to run the C++ preprocessor" >&51265 echo "configure:1266: checking how to run the C++ preprocessor" >&5 1250 1266 if test -z "$CXXCPP"; then 1251 1267 if eval "test \"`echo '$''{'ac_cv_prog_CXXCPP'+set}'`\" = set"; then … … 1260 1276 CXXCPP="${CXX-g++} -E" 1261 1277 cat > conftest.$ac_ext <<EOF 1262 #line 12 63"configure"1278 #line 1279 "configure" 1263 1279 #include "confdefs.h" 1264 1280 #include <stdlib.h> 1265 1281 EOF 1266 1282 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 1267 { (eval echo configure:12 68: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }1283 { (eval echo configure:1284: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 1268 1284 ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 1269 1285 if test -z "$ac_err"; then … … 1290 1306 1291 1307 echo $ac_n "checking whether ln -s works""... $ac_c" 1>&6 1292 echo "configure:1 293: checking whether ln -s works" >&51308 echo "configure:1309: checking whether ln -s works" >&5 1293 1309 if eval "test \"`echo '$''{'ac_cv_prog_LN_S'+set}'`\" = set"; then 1294 1310 echo $ac_n "(cached) $ac_c" 1>&6 … … 1322 1338 # ./install, which can be erroneously created by make from ./install.sh. 1323 1339 echo $ac_n "checking for a BSD compatible install""... $ac_c" 1>&6 1324 echo "configure:13 25: checking for a BSD compatible install" >&51340 echo "configure:1341: checking for a BSD compatible install" >&5 1325 1341 if test -z "$INSTALL"; then 1326 1342 if eval "test \"`echo '$''{'ac_cv_path_install'+set}'`\" = set"; then … … 1377 1393 set dummy ranlib; ac_word=$2 1378 1394 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 1379 echo "configure:13 80: checking for $ac_word" >&51395 echo "configure:1396: checking for $ac_word" >&5 1380 1396 if eval "test \"`echo '$''{'ac_cv_prog_RANLIB'+set}'`\" = set"; then 1381 1397 echo $ac_n "(cached) $ac_c" 1>&6 … … 1405 1421 1406 1422 echo $ac_n "checking whether ${MAKE-make} sets \${MAKE}""... $ac_c" 1>&6 1407 echo "configure:14 08: checking whether ${MAKE-make} sets \${MAKE}" >&51423 echo "configure:1424: checking whether ${MAKE-make} sets \${MAKE}" >&5 1408 1424 set dummy ${MAKE-make}; ac_make=`echo "$2" | sed 'y%./+-%__p_%'` 1409 1425 if eval "test \"`echo '$''{'ac_cv_prog_make_${ac_make}_set'+set}'`\" = set"; then … … 1434 1450 set dummy ar; ac_word=$2 1435 1451 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 1436 echo "configure:14 37: checking for $ac_word" >&51452 echo "configure:1453: checking for $ac_word" >&5 1437 1453 if eval "test \"`echo '$''{'ac_cv_prog_AR'+set}'`\" = set"; then 1438 1454 echo $ac_n "(cached) $ac_c" 1>&6 … … 1464 1480 set dummy m4; ac_word=$2 1465 1481 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 1466 echo "configure:14 67: checking for $ac_word" >&51482 echo "configure:1483: checking for $ac_word" >&5 1467 1483 if eval "test \"`echo '$''{'ac_cv_prog_M4'+set}'`\" = set"; then 1468 1484 echo $ac_n "(cached) $ac_c" 1>&6 … … 1494 1510 set dummy bison; ac_word=$2 1495 1511 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 1496 echo "configure:1 497: checking for $ac_word" >&51512 echo "configure:1513: checking for $ac_word" >&5 1497 1513 if eval "test \"`echo '$''{'ac_cv_prog_BISON'+set}'`\" = set"; then 1498 1514 echo $ac_n "(cached) $ac_c" 1>&6 … … 1533 1549 set dummy mkinstalldirs; ac_word=$2 1534 1550 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 1535 echo "configure:15 36: checking for $ac_word" >&51551 echo "configure:1552: checking for $ac_word" >&5 1536 1552 if eval "test \"`echo '$''{'ac_cv_path_FACTORY_MKINSTALLDIRS'+set}'`\" = set"; then 1537 1553 echo $ac_n "(cached) $ac_c" 1>&6 … … 1570 1586 set dummy makeheader; ac_word=$2 1571 1587 echo $ac_n "checking for $ac_word""... $ac_c" 1>&6 1572 echo "configure:15 73: checking for $ac_word" >&51588 echo "configure:1589: checking for $ac_word" >&5 1573 1589 if eval "test \"`echo '$''{'ac_cv_path_FACTORY_MAKEHEADER'+set}'`\" = set"; then 1574 1590 echo $ac_n "(cached) $ac_c" 1>&6 … … 1609 1625 1610 1626 echo $ac_n "checking and generating explicit install paths""... $ac_c" 1>&6 1611 echo "configure:16 12: checking and generating explicit install paths" >&51627 echo "configure:1628: checking and generating explicit install paths" >&5 1612 1628 1613 1629 # generate Makefile … … 1649 1665 # 1650 1666 echo $ac_n "checking for atof in -lm""... $ac_c" 1>&6 1651 echo "configure:16 52: checking for atof in -lm" >&51667 echo "configure:1668: checking for atof in -lm" >&5 1652 1668 ac_lib_var=`echo m'_'atof | sed 'y%./+-%__p_%'` 1653 1669 if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then … … 1657 1673 LIBS="-lm $LIBS" 1658 1674 cat > conftest.$ac_ext <<EOF 1659 #line 16 60"configure"1675 #line 1676 "configure" 1660 1676 #include "confdefs.h" 1661 1677 /* Override any gcc2 internal prototype to avoid an error. */ … … 1668 1684 ; return 0; } 1669 1685 EOF 1670 if { (eval echo configure:16 71: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then1686 if { (eval echo configure:1687: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 1671 1687 rm -rf conftest* 1672 1688 eval "ac_cv_lib_$ac_lib_var=yes" … … 1699 1715 if test "x$gmp_in_installation" != xyes; then 1700 1716 echo $ac_n "checking for main in -lgmp""... $ac_c" 1>&6 1701 echo "configure:17 02: checking for main in -lgmp" >&51717 echo "configure:1718: checking for main in -lgmp" >&5 1702 1718 ac_lib_var=`echo gmp'_'main | sed 'y%./+-%__p_%'` 1703 1719 if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then … … 1707 1723 LIBS="-lgmp $LIBS" 1708 1724 cat > conftest.$ac_ext <<EOF 1709 #line 17 10"configure"1725 #line 1726 "configure" 1710 1726 #include "confdefs.h" 1711 1727 … … 1714 1730 ; return 0; } 1715 1731 EOF 1716 if { (eval echo configure:17 17: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then1732 if { (eval echo configure:1733: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 1717 1733 rm -rf conftest* 1718 1734 eval "ac_cv_lib_$ac_lib_var=yes" … … 1745 1761 LDFLAGS="-L$explicit_libdir $LDFLAGS" 1746 1762 echo $ac_n "checking for main in -lgmp""... $ac_c" 1>&6 1747 echo "configure:17 48: checking for main in -lgmp" >&51763 echo "configure:1764: checking for main in -lgmp" >&5 1748 1764 ac_lib_var=`echo gmp'_'main | sed 'y%./+-%__p_%'` 1749 1765 if eval "test \"`echo '$''{'ac_cv_lib_$ac_lib_var'+set}'`\" = set"; then … … 1753 1769 LIBS="-lgmp $LIBS" 1754 1770 cat > conftest.$ac_ext <<EOF 1755 #line 17 56"configure"1771 #line 1772 "configure" 1756 1772 #include "confdefs.h" 1757 1773 … … 1760 1776 ; return 0; } 1761 1777 EOF 1762 if { (eval echo configure:17 63: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then1778 if { (eval echo configure:1779: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext}; then 1763 1779 rm -rf conftest* 1764 1780 eval "ac_cv_lib_$ac_lib_var=yes" … … 1810 1826 ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` 1811 1827 echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 1812 echo "configure:18 13: checking for $ac_hdr" >&51828 echo "configure:1829: checking for $ac_hdr" >&5 1813 1829 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then 1814 1830 echo $ac_n "(cached) $ac_c" 1>&6 1815 1831 else 1816 1832 cat > conftest.$ac_ext <<EOF 1817 #line 18 18"configure"1833 #line 1834 "configure" 1818 1834 #include "confdefs.h" 1819 1835 #include <$ac_hdr> 1820 1836 EOF 1821 1837 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 1822 { (eval echo configure:18 23: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }1838 { (eval echo configure:1839: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 1823 1839 ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 1824 1840 if test -z "$ac_err"; then … … 1851 1867 ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` 1852 1868 echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 1853 echo "configure:18 54: checking for $ac_hdr" >&51869 echo "configure:1870: checking for $ac_hdr" >&5 1854 1870 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then 1855 1871 echo $ac_n "(cached) $ac_c" 1>&6 1856 1872 else 1857 1873 cat > conftest.$ac_ext <<EOF 1858 #line 18 59"configure"1874 #line 1875 "configure" 1859 1875 #include "confdefs.h" 1860 1876 #include <$ac_hdr> 1861 1877 EOF 1862 1878 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 1863 { (eval echo configure:18 64: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }1879 { (eval echo configure:1880: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 1864 1880 ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 1865 1881 if test -z "$ac_err"; then … … 1899 1915 ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` 1900 1916 echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 1901 echo "configure:19 02: checking for $ac_hdr" >&51917 echo "configure:1918: checking for $ac_hdr" >&5 1902 1918 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then 1903 1919 echo $ac_n "(cached) $ac_c" 1>&6 1904 1920 else 1905 1921 cat > conftest.$ac_ext <<EOF 1906 #line 19 07"configure"1922 #line 1923 "configure" 1907 1923 #include "confdefs.h" 1908 1924 #include <$ac_hdr> 1909 1925 EOF 1910 1926 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 1911 { (eval echo configure:19 12: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }1927 { (eval echo configure:1928: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 1912 1928 ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 1913 1929 if test -z "$ac_err"; then … … 1942 1958 ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` 1943 1959 echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 1944 echo "configure:19 45: checking for $ac_hdr" >&51960 echo "configure:1961: checking for $ac_hdr" >&5 1945 1961 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then 1946 1962 echo $ac_n "(cached) $ac_c" 1>&6 1947 1963 else 1948 1964 cat > conftest.$ac_ext <<EOF 1949 #line 19 50"configure"1965 #line 1966 "configure" 1950 1966 #include "confdefs.h" 1951 1967 #include <$ac_hdr> 1952 1968 EOF 1953 1969 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 1954 { (eval echo configure:19 55: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }1970 { (eval echo configure:1971: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 1955 1971 ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 1956 1972 if test -z "$ac_err"; then … … 1983 1999 ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` 1984 2000 echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 1985 echo "configure: 1986: checking for $ac_hdr" >&52001 echo "configure:2002: checking for $ac_hdr" >&5 1986 2002 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then 1987 2003 echo $ac_n "(cached) $ac_c" 1>&6 1988 2004 else 1989 2005 cat > conftest.$ac_ext <<EOF 1990 #line 1991"configure"2006 #line 2007 "configure" 1991 2007 #include "confdefs.h" 1992 2008 #include <$ac_hdr> 1993 2009 EOF 1994 2010 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 1995 { (eval echo configure: 1996: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }2011 { (eval echo configure:2012: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 1996 2012 ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 1997 2013 if test -z "$ac_err"; then … … 2027 2043 ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` 2028 2044 echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 2029 echo "configure:20 30: checking for $ac_hdr" >&52045 echo "configure:2046: checking for $ac_hdr" >&5 2030 2046 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then 2031 2047 echo $ac_n "(cached) $ac_c" 1>&6 2032 2048 else 2033 2049 cat > conftest.$ac_ext <<EOF 2034 #line 20 35"configure"2050 #line 2051 "configure" 2035 2051 #include "confdefs.h" 2036 2052 #include <$ac_hdr> 2037 2053 EOF 2038 2054 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 2039 { (eval echo configure:20 40: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }2055 { (eval echo configure:2056: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 2040 2056 ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 2041 2057 if test -z "$ac_err"; then … … 2073 2089 ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` 2074 2090 echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 2075 echo "configure:20 76: checking for $ac_hdr" >&52091 echo "configure:2092: checking for $ac_hdr" >&5 2076 2092 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then 2077 2093 echo $ac_n "(cached) $ac_c" 1>&6 2078 2094 else 2079 2095 cat > conftest.$ac_ext <<EOF 2080 #line 20 81"configure"2096 #line 2097 "configure" 2081 2097 #include "confdefs.h" 2082 2098 #include <$ac_hdr> 2083 2099 EOF 2084 2100 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; }2101 { (eval echo configure:2102: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 2086 2102 ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 2087 2103 if test -z "$ac_err"; then … … 2117 2133 ac_safe=`echo "$ac_hdr" | sed 'y%./+-%__p_%'` 2118 2134 echo $ac_n "checking for $ac_hdr""... $ac_c" 1>&6 2119 echo "configure:21 20: checking for $ac_hdr" >&52135 echo "configure:2136: checking for $ac_hdr" >&5 2120 2136 if eval "test \"`echo '$''{'ac_cv_header_$ac_safe'+set}'`\" = set"; then 2121 2137 echo $ac_n "(cached) $ac_c" 1>&6 2122 2138 else 2123 2139 cat > conftest.$ac_ext <<EOF 2124 #line 21 25"configure"2140 #line 2141 "configure" 2125 2141 #include "confdefs.h" 2126 2142 #include <$ac_hdr> 2127 2143 EOF 2128 2144 ac_try="$ac_cpp conftest.$ac_ext >/dev/null 2>conftest.out" 2129 { (eval echo configure:21 30: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; }2145 { (eval echo configure:2146: \"$ac_try\") 1>&5; (eval $ac_try) 2>&5; } 2130 2146 ac_err=`grep -v '^ *+' conftest.out | grep -v "^conftest.${ac_ext}\$"` 2131 2147 if test -z "$ac_err"; then … … 2183 2199 2184 2200 echo $ac_n "checking for working const""... $ac_c" 1>&6 2185 echo "configure:2 186: checking for working const" >&52201 echo "configure:2202: checking for working const" >&5 2186 2202 if eval "test \"`echo '$''{'ac_cv_c_const'+set}'`\" = set"; then 2187 2203 echo $ac_n "(cached) $ac_c" 1>&6 2188 2204 else 2189 2205 cat > conftest.$ac_ext <<EOF 2190 #line 2 191"configure"2206 #line 2207 "configure" 2191 2207 #include "confdefs.h" 2192 2208 … … 2237 2253 ; return 0; } 2238 2254 EOF 2239 if { (eval echo configure:22 40: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then2255 if { (eval echo configure:2256: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 2240 2256 rm -rf conftest* 2241 2257 ac_cv_c_const=yes … … 2258 2274 2259 2275 echo $ac_n "checking for inline""... $ac_c" 1>&6 2260 echo "configure:22 61: checking for inline" >&52276 echo "configure:2277: checking for inline" >&5 2261 2277 if eval "test \"`echo '$''{'ac_cv_c_inline'+set}'`\" = set"; then 2262 2278 echo $ac_n "(cached) $ac_c" 1>&6 … … 2265 2281 for ac_kw in inline __inline__ __inline; do 2266 2282 cat > conftest.$ac_ext <<EOF 2267 #line 22 68"configure"2283 #line 2284 "configure" 2268 2284 #include "confdefs.h" 2269 2285 … … 2272 2288 ; return 0; } 2273 2289 EOF 2274 if { (eval echo configure:22 75: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then2290 if { (eval echo configure:2291: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 2275 2291 rm -rf conftest* 2276 2292 ac_cv_c_inline=$ac_kw; break … … 2300 2316 # arithmetic shift 2301 2317 echo $ac_n "checking whether your compiler does arithmetic shifts""... $ac_c" 1>&6 2302 echo "configure:23 03: checking whether your compiler does arithmetic shifts" >&52318 echo "configure:2319: checking whether your compiler does arithmetic shifts" >&5 2303 2319 if eval "test \"`echo '$''{'ac_cv_shift'+set}'`\" = set"; then 2304 2320 echo $ac_n "(cached) $ac_c" 1>&6 … … 2308 2324 else 2309 2325 cat > conftest.$ac_ext <<EOF 2310 #line 23 11"configure"2326 #line 2327 "configure" 2311 2327 #include "confdefs.h" 2312 2328 int main() { if (-2 >> 1 == -1) exit(0); else exit(1); } 2313 2329 EOF 2314 if { (eval echo configure:23 15: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null2330 if { (eval echo configure:2331: \"$ac_link\") 1>&5; (eval $ac_link) 2>&5; } && test -s conftest${ac_exeext} && (./conftest; exit) 2>/dev/null 2315 2331 then 2316 2332 ac_cv_shift=yes … … 2415 2431 2416 2432 echo $ac_n "checking whether to use omalloc""... $ac_c" 1>&6 2417 echo "configure:24 18: checking whether to use omalloc" >&52433 echo "configure:2434: checking whether to use omalloc" >&5 2418 2434 2419 2435 if test "$with_omalloc" = yes; then -
factory/configure.in
rf5f439 rd3ff79 1 1 dnl # emacs edit mode for this file is -*- sh -*- 2 dnl # $Id: configure.in,v 1.2 8 2000-12-12 12:35:13obachman Exp $2 dnl # $Id: configure.in,v 1.29 2000-12-14 14:28:38 obachman Exp $ 3 3 4 4 dnl # … … 13 13 # - initialisation. 14 14 # 15 AC_REVISION($Id: configure.in,v 1.2 8 2000-12-12 12:35:13obachman Exp $)15 AC_REVISION($Id: configure.in,v 1.29 2000-12-14 14:28:38 obachman Exp $) 16 16 AC_INIT(canonicalform.cc) 17 17 AC_CONFIG_HEADER(config.h) … … 152 152 # check whether CXX accepts --no-rtti 153 153 AC_MSG_CHECKING(whether gcc accepts --no-rtti) 154 tmp_flags=${CXXFLAGS} 154 155 CXXFLAGS="${CXXFLAGS} --no-rtti" 156 AC_LANG_SAVE 157 AC_LANG_CPLUSPLUS 155 158 AC_CACHE_VAL(ac_cv_cxx_have_rtti, 156 159 AC_TRY_COMPILE(,,ac_cv_cxx_have_rtti=yes,ac_cv_cxx_have_rtti=no) … … 176 179 fi 177 180 181 AC_LANG_RESTORE 178 182 CXXFLAGS=$temp_flags 179 183 -
libfac/configure
rf5f439 rd3ff79 1052 1052 if test ${GXX} = yes; then 1053 1053 1054 1055 1054 # check whether CXX accepts --no-rtti 1056 1055 echo $ac_n "checking whether gcc accepts --no-rtti""... $ac_c" 1>&6 1057 echo "configure:1058: checking whether gcc accepts --no-rtti" >&5 1056 echo "configure:1057: checking whether gcc accepts --no-rtti" >&5 1057 tmp_flags=${CXXFLAGS} 1058 1058 CXXFLAGS="${CXXFLAGS} --no-rtti" 1059 1060 ac_ext=C 1061 # CXXFLAGS is not in ac_cpp because -g, -O, etc. are not valid cpp options. 1062 ac_cpp='$CXXCPP $CPPFLAGS' 1063 ac_compile='${CXX-g++} -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext 1>&5' 1064 ac_link='${CXX-g++} -o conftest${ac_exeext} $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&5' 1065 cross_compiling=$ac_cv_prog_cxx_cross 1066 1059 1067 if eval "test \"`echo '$''{'ac_cv_cxx_have_rtti'+set}'`\" = set"; then 1060 1068 echo $ac_n "(cached) $ac_c" 1>&6 1061 1069 else 1062 1070 cat > conftest.$ac_ext <<EOF 1063 #line 10 64"configure"1071 #line 1072 "configure" 1064 1072 #include "confdefs.h" 1065 1073 … … 1068 1076 ; return 0; } 1069 1077 EOF 1070 if { (eval echo configure:107 1: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then1078 if { (eval echo configure:1079: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 1071 1079 rm -rf conftest* 1072 1080 ac_cv_cxx_have_rtti=yes … … 1090 1098 # check whether gcc accepts --no-exceptions 1091 1099 echo $ac_n "checking whether gcc accepts --no-exceptions""... $ac_c" 1>&6 1092 echo "configure:1 093: checking whether gcc accepts --no-exceptions" >&51100 echo "configure:1101: checking whether gcc accepts --no-exceptions" >&5 1093 1101 CXXFLAGS="${CXXFLAGS} --no-exceptions" 1094 1102 if eval "test \"`echo '$''{'ac_cv_cxx_have_exceptions'+set}'`\" = set"; then … … 1096 1104 else 1097 1105 cat > conftest.$ac_ext <<EOF 1098 #line 1 099"configure"1106 #line 1107 "configure" 1099 1107 #include "confdefs.h" 1100 1108 … … 1103 1111 ; return 0; } 1104 1112 EOF 1105 if { (eval echo configure:11 06: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then1113 if { (eval echo configure:1114: \"$ac_compile\") 1>&5; (eval $ac_compile) 2>&5; }; then 1106 1114 rm -rf conftest* 1107 1115 ac_cv_cxx_have_exceptions=yes … … 1123 1131 fi 1124 1132 1133 ac_ext=C 1134 # CXXFLAGS is not in ac_cpp because -g, -O, etc. are not valid cpp options. 1135 ac_cpp='$CXXCPP $CPPFLAGS' 1136 ac_compile='${CXX-g++} -c $CXXFLAGS $CPPFLAGS conftest.$ac_ext 1>&5' 1137 ac_link='${CXX-g++} -o conftest${ac_exeext} $CXXFLAGS $CPPFLAGS $LDFLAGS conftest.$ac_ext $LIBS 1>&5' 1138 cross_compiling=$ac_cv_prog_cxx_cross 1139 1125 1140 CXXFLAGS=$temp_flags 1141 1142 fi 1126 1143 1127 1144 if test "$ac_cxxflags_set" = no; then -
libfac/configure.in
rf5f439 rd3ff79 131 131 if test ${GXX} = yes; then 132 132 133 134 133 # check whether CXX accepts --no-rtti 135 134 AC_MSG_CHECKING(whether gcc accepts --no-rtti) 135 tmp_flags=${CXXFLAGS} 136 136 CXXFLAGS="${CXXFLAGS} --no-rtti" 137 AC_LANG_SAVE 138 AC_LANG_CPLUSPLUS 137 139 AC_CACHE_VAL(ac_cv_cxx_have_rtti, 138 140 AC_TRY_COMPILE(,,ac_cv_cxx_have_rtti=yes,ac_cv_cxx_have_rtti=no) … … 158 160 fi 159 161 162 AC_LANG_RESTORE 160 163 CXXFLAGS=$temp_flags 164 165 fi 161 166 162 167 if test "$ac_cxxflags_set" = no; then
Note: See TracChangeset
for help on using the changeset viewer.