1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 64 65 66 67 68 69 70 71 72 73 74 75 76 77 78 79 80 81 82 83 84 85 86 87 88 89 90 91 92 93 94 95 96 97 98 99 100 101 102 103 104 105 106 107 108 109 110 111 112 113 114 115 116 117 118 119 120 121 122 123 124 125 126 127 128 129 130 131 132 133 134 135 136 137 138 139 140 141 142 143 144 145 146 147 148 149 150 151 152 153 154 155 156 157 158 159 160 161 162 163 164 165 166 167 168 169 170 171 172 173 174 175 176 177 178 179 180 181 182 183 184 185 186 187 188 189 190 191 192 193 194 195 196 197 198 199 200 201 202 203 204 205 206 207 208 209 210 211 212 213 214 215 216 217 218 219 220 221 222 223 224 225 226 227 228 229 230 231 232 233 234 235 236 237 238 239 240 241 242 243 244 245 246 247 248 249 250 251 252 253 254 255 256 257 258 259 260 261 262 263 264 265 266 267 268 269 270 271 272 273 274 275 276 277 278 279 280 281 282 283 284 285 286 287 288 289 290 291 292 293 294 295 296 297 298 299 300 301 302 303 304 305 306 307 308 309 310 311 312 313 314 315 316 317 318 319 320 321 322 323 324 325 326 327 328 329 330 331 332 333 334 335 336 337 338 339 340 341 342 343 344 345 346 347 348 349 350 351 352 353 354 355 356 357 358 359 360 361 362 363 364 365 366 367 368 369 370 371 372 373 374 375 376 377 378 379 380 381 382 383 384 385 386 387 388 389 390 391 392 393 394 395 396 397 398 399 400 401 402 403 404 405 406 407 408 409 410 411 412 413 414 415 416 417 418 419 420 421 422 423 424 425 426 427 428 429 430 431 432 433 434 435 436 437 438 439 440 441 442 443 444 445 446 447 448 449 450 451 452 453 454 455 456 457 458 459 460 461 462 463 464 465 466 467 468 469 470 471 472 473 474 475 476 477 478 479 480 481 482 483 484 485 486 487 488 489 490 491 492 493 494 495 496 497 498 499 500 501 502 503 504 505 506 507 508 509 510 511 512 513 514 515 516 517 518 519 520 521 522 523 524 525 526 527 528 529 530 531 532 533 534 535 536 537 538 539 540 541 542 543 544 545 546 547 548 549 550 551 552 553 554 555 556 557 558 559 560 561 562 563 564 565 566 567 568 569 570 571 572 573 574 575 576 577 578 579 580 581 582 583 584 585 586 587 588 589 590 591 592 593 594 595 596 597 598 599 600 601 602 603 604 605 606 607 608 609 610 611 612 613 614 615 616 617 618 619 620 621 622 623 624 625 626 627 628 629 630 631 632 633 634 635 636 637 638 639 640 641 642 643 644 645 646 647 648 649 650 651 652 653 654 655 656 657 658 659 660 661 662 663 664 665 666 667 668 669 670 671 672 673 674 675 676 677 678 679 680 681 682 683 684 685 686 687 688 689 690 691 692 693 694 695 696 697 698 699 700 701 702 703 704 705 706 707 708 709 710 711 712 713 714 715 716 717 718 719 720 721 722 723 724 725 726 727 728 729 730 731 732 733 734 735 736 737 738 739 740 741 742 743 744 745 746 747 748 749 750 751 752 753 754 755 756 757 758 759 760 761 762 763 764 765 766 767 768 769 770 771 772 773 774 775 776 777 778 779 780 781 782 783 784 785 786 787 788 789 790 791 792 793 794 795 796 797 798 799 800 801 802 803 804 805 806 807 808 809 810 811 812 813 814 815 816 817 818 819 820 821 822 823 824 825 826 827 828 829 830 831 832 833 834 835 836 837 838 839 840 841 842 843 844 845 846 847 848 849 850 851 852 853 854 855 856 857 858 859 860 861 862 863 864 865 866 867 868 869 870 871 872 873 874 875 876 877 878 879 880 881 882 883 884 885 886 887 888 889 890 891 892 893 894 895 896 897 898 899 900 901 902 903 904 905 906 907 908 909 910 911 912 913 914 915 916 917 918 919 920 921 922 923 924 925 926 927 928 929 930 931 932 933 934 935 936 937 938 939 940 941 942 943 944 945 946 947 948 949 950 951 952 953 954 955 956 957 958 959 960 961 962 963 964 965 966 967 968 969 970 971 972 973 974 975 976 977 978 979 980 981 982 983 984 985 986 987 988 989 990 991 992 993 994 995 996 997 998 999 1000 1001 1002 1003 1004 1005 1006 1007 1008 1009 1010 1011 1012 1013 1014 1015 1016 1017 1018 1019 1020 1021 1022 1023 1024 1025 1026 1027 1028 1029 1030 1031 1032 1033 1034 1035 1036 1037 1038 1039 1040 1041 1042 1043 1044 1045 1046 1047 1048 1049 1050 1051 1052 1053 1054 1055 1056 1057 1058 1059 1060 1061 1062 1063 1064 1065 1066 1067 1068 1069 1070 1071 1072 1073 1074 1075 1076 1077 1078 1079 1080 1081 1082 1083 1084 1085 1086 1087 1088 1089 1090 1091 1092 1093 1094 1095 1096 1097 1098 1099 1100 1101 1102 1103 1104 1105 1106 1107 1108 1109 1110 1111 1112 1113 1114 1115 1116 1117 1118 1119 1120 1121 1122 1123 1124 1125 1126 1127 1128 1129 1130 1131 1132 1133 1134 1135 1136 1137 1138 1139 1140 1141 1142 1143 1144 1145 1146 1147 1148 1149 1150 1151 1152 1153 1154 1155 1156 1157 1158 1159 1160 1161 1162 1163 1164 1165 1166 1167 1168 1169 1170 1171 1172 1173 1174 1175 1176 1177 1178 1179 1180 1181 1182 1183 1184 1185 1186 1187 1188 1189 1190 1191 1192 1193 1194 1195 1196 1197 1198 1199 1200 1201 1202 1203 1204 1205 1206 1207 1208 1209 1210 1211 1212 1213 1214 1215 1216 1217 1218 1219 1220 1221 1222 1223 1224 1225 1226 1227 1228 1229 1230 1231 1232 1233 1234 1235 1236 1237 1238 1239 1240 1241 1242 1243 1244 1245 1246 1247 1248 1249 1250 1251 1252 1253 1254 1255 1256 1257 1258 1259 1260 1261 1262 1263 1264 1265 1266 1267 1268 1269 1270 1271 1272 1273 1274 1275 1276 1277 1278 1279 1280 1281 1282 1283 1284 1285 1286 1287 1288 1289 1290 1291 1292 1293 1294 1295 1296 1297 1298 1299 1300 1301 1302 1303 1304 1305 1306 1307 1308 1309 1310 1311 1312 1313 1314 1315 1316 1317 1318 1319 1320 1321 1322 1323 1324 1325 1326 1327 1328 1329 1330 1331 1332 1333 1334 1335 1336 1337 1338 1339 1340 1341 1342 1343 1344 1345 1346 1347 1348 1349 1350 1351 1352 1353 1354 1355 1356 1357 1358 1359 1360 1361 1362 1363 1364 1365 1366 1367 1368 1369 1370 1371 1372 1373 1374 1375 1376 1377 1378 1379 1380 1381 1382 1383 1384 1385 1386 1387 1388 1389 1390 1391 1392 1393 1394 1395 1396 1397 1398 1399 1400 1401 1402 1403 1404 1405 1406 1407 1408 1409 1410 1411 1412 1413 1414 1415 1416 1417 1418 1419 1420 1421 1422 1423 1424 1425 1426 1427 1428 1429 1430 1431 1432 1433 1434 1435 1436 1437 1438 1439 1440 1441 1442 1443 1444 1445 1446 1447 1448 1449 1450 1451 1452 1453 1454 1455 1456 1457 1458 1459 1460 1461 1462 1463 1464 1465 1466 1467 1468 1469 1470 1471 1472 1473 1474 1475 1476 1477 1478 1479 1480 1481 1482 1483 1484 1485 1486 1487 1488 1489 1490 1491 1492 1493 1494 1495 1496 1497 1498 1499 1500 1501 1502 1503 1504 1505 1506 1507 1508 1509 1510 1511 1512 1513 1514 1515 1516 1517 1518 1519 1520 1521 1522 1523 1524 1525 1526 1527 1528 1529 1530 1531 1532 1533 1534 1535 1536 1537 1538 1539 1540 1541 1542 1543 1544 1545 1546 1547 1548 1549 1550 1551 1552 1553 1554 1555 1556 1557 1558 1559 1560 1561 1562 1563 1564 1565 1566 1567 1568 1569 1570 1571 1572 1573 1574 1575 1576 1577 1578 1579 1580 1581 1582 1583 1584 1585 1586 1587 1588 1589 1590 1591 1592 1593 1594 1595 1596 1597 1598 1599 1600 1601 1602 1603 1604 1605 1606 1607 1608 1609 1610 1611 1612 1613 1614 1615 1616 1617 1618 1619 1620 1621 1622 1623 1624 1625 1626 1627 1628 1629 1630 1631 1632 1633 1634 1635 1636 1637 1638 1639 1640 1641 1642 1643 1644 1645 1646 1647 1648 1649 1650 1651 1652 1653 1654 1655 1656 1657 1658 1659 1660 1661 1662 1663 1664 1665 1666 1667 1668 1669 1670 1671 1672 1673 1674 1675 1676 1677 1678 1679 1680 1681 1682 1683 1684 1685 1686 1687 1688 1689 1690 1691 1692 1693 1694 1695 1696 1697 1698 1699 1700 1701 1702 1703 1704 1705 1706 1707 1708 1709 1710 1711 1712 1713 1714 1715 1716 1717 1718 1719 1720 1721 1722 1723 1724 1725 1726 1727 1728 1729 1730 1731 1732 1733 1734 1735 1736 1737 1738 1739 1740 1741 1742 1743 1744 1745 1746 1747 1748 1749 1750 1751 1752 1753 1754 1755 1756 1757 1758 1759 1760 1761 1762 1763 1764 1765 1766 1767 1768 1769 1770 1771 1772 1773 1774 1775 1776 1777 1778 1779 1780 1781 1782 1783 1784 1785 1786 1787 1788 1789 1790 1791 1792 1793 1794 1795 1796 1797 1798 1799 1800 1801 1802 1803 1804 1805 1806 1807 1808 1809 1810 1811 1812 1813 1814 1815 1816 1817 1818 1819 1820 1821 1822 1823 1824 1825 1826 1827 1828 1829 1830 1831 1832 1833 1834 1835 1836 1837 1838 1839 1840 1841 1842 1843 1844 1845 1846 1847 1848 1849 1850 1851 1852 1853 1854 1855 1856 1857 1858 1859 1860 1861 1862 1863 1864 1865 1866 1867 1868 1869 1870 1871 1872 1873 1874 1875 1876 1877 1878 1879 1880 1881 1882 1883 1884 1885 1886 1887 1888 1889 1890 1891 1892 1893 1894 1895 1896 1897 1898 1899 1900 1901 1902 1903 1904 1905 1906 1907 1908 1909 1910 1911 1912 1913 1914 1915 1916 1917 1918 1919 1920 1921 1922 1923 1924 1925 1926 1927 1928 1929 1930 1931 1932 1933 1934 1935 1936 1937 1938 1939 1940 1941 1942 1943 1944 1945 1946 1947 1948 1949 1950 1951 1952 1953 1954 1955 1956 1957 1958 1959 1960 1961 1962 1963 1964 1965 1966 1967 1968 1969 1970 1971 1972 1973 1974 1975 1976 1977 1978 1979 1980 1981 1982 1983 1984 1985 1986 1987 1988 1989 1990 1991 1992 1993 1994 1995 1996 1997 1998 1999 2000 2001 2002 2003 2004 2005 2006 2007 2008 2009 2010 2011 2012 2013 2014 2015 2016 2017 2018 2019 2020 2021 2022 2023 2024 2025 2026 2027 2028 2029 2030 2031 2032 2033 2034 2035 2036 2037 2038 2039 2040 2041 2042 2043 2044 2045 2046 2047 2048 2049 2050 2051 2052 2053 2054 2055 2056 2057 2058 2059 2060 2061 2062 2063 2064 2065 2066 2067 2068 2069 2070 2071 2072 2073 2074 2075 2076 2077 2078 2079 2080 2081 2082 2083 2084 2085 2086 2087 2088 2089 2090 2091 2092 2093 2094 2095 2096 2097 2098 2099 2100 2101 2102 2103 2104 2105 2106 2107 2108 2109 2110 2111 2112 2113 2114 2115 2116 2117 2118 2119 2120 2121 2122 2123 2124 2125 2126 2127 2128 2129 2130 2131 2132 2133 2134 2135 2136 2137 2138 2139 2140 2141 2142 2143 2144 2145 2146 2147 2148 2149 2150 2151 2152 2153 2154 2155 2156 2157 2158
|
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.
It was created by Tenes Empanadas Graciela configure 0.11.2, which was
generated by GNU Autoconf 2.59. Invocation command line was
$ ./configure --enable-maintainer-mode
## --------- ##
## Platform. ##
## --------- ##
hostname = nordiputer
uname -m = i686
uname -r = 2.6.13-15.15-default
uname -s = Linux
uname -v = #1 Mon Feb 26 14:11:33 UTC 2007
/usr/bin/uname -p = unknown
/bin/uname -X = unknown
/bin/arch = i686
/usr/bin/arch -k = unknown
/usr/convex/getsysinfo = unknown
hostinfo = unknown
/bin/machine = unknown
/usr/bin/oslevel = unknown
/bin/universe = unknown
PATH: /home/nordi/bin
PATH: /usr/local/bin
PATH: /usr/bin
PATH: /usr/X11R6/bin
PATH: /bin
PATH: /usr/games
PATH: /opt/gnome/bin
PATH: /opt/kde3/bin
PATH: /usr/lib/mit/bin
PATH: /usr/lib/mit/sbin
PATH: /sbin
PATH: /usr/sbin
PATH: /home/nordi/bin
PATH: /sbin
PATH: /usr/sbin
PATH: /home/nordi/bin
PATH: /sbin
PATH: /usr/sbin
PATH: /home/nordi/bin
PATH: /sbin
PATH: /usr/sbin
PATH: /home/nordi/bin
## ----------- ##
## Core tests. ##
## ----------- ##
configure:1613: checking for a BSD-compatible install
configure:1668: result: /usr/bin/install -c
configure:1679: checking whether build environment is sane
configure:1722: result: yes
configure:1787: checking for gawk
configure:1803: found /usr/bin/gawk
configure:1813: result: gawk
configure:1823: checking whether make sets $(MAKE)
configure:1843: result: yes
configure:2025: checking whether to enable maintainer-specific portions of Makefiles
configure:2034: result: yes
configure:2097: checking for gcc
configure:2113: found /usr/bin/gcc
configure:2123: result: gcc
configure:2367: checking for C compiler version
configure:2370: gcc --version </dev/null >&5
gcc (GCC) 4.0.2 20050901 (prerelease) (SUSE Linux)
Copyright (C) 2005 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
configure:2373: $? = 0
configure:2375: gcc -v </dev/null >&5
Using built-in specs.
Target: i586-suse-linux
Configured with: ../configure --enable-threads=posix --prefix=/usr --with-local-prefix=/usr/local --infodir=/usr/share/info --mandir=/usr/share/man --libdir=/usr/lib --libexecdir=/usr/lib --enable-languages=c,c++,objc,f95,java,ada --disable-checking --with-gxx-include-dir=/usr/include/c++/4.0.2 --enable-java-awt=gtk --disable-libjava-multilib --with-slibdir=/lib --with-system-zlib --enable-shared --enable-__cxa_atexit --without-system-libunwind --host=i586-suse-linux
Thread model: posix
gcc version 4.0.2 20050901 (prerelease) (SUSE Linux)
configure:2378: $? = 0
configure:2380: gcc -V </dev/null >&5
gcc: '-V' option must have argument
configure:2383: $? = 1
configure:2406: checking for C compiler default output file name
configure:2409: gcc conftest.c >&5
configure:2412: $? = 0
configure:2458: result: a.out
configure:2463: checking whether the C compiler works
configure:2469: ./a.out
configure:2472: $? = 0
configure:2489: result: yes
configure:2496: checking whether we are cross compiling
configure:2498: result: no
configure:2501: checking for suffix of executables
configure:2503: gcc -o conftest conftest.c >&5
configure:2506: $? = 0
configure:2531: result:
configure:2537: checking for suffix of object files
configure:2558: gcc -c conftest.c >&5
configure:2561: $? = 0
configure:2583: result: o
configure:2587: checking whether we are using the GNU C compiler
configure:2611: gcc -c conftest.c >&5
configure:2617: $? = 0
configure:2621: test -z
|| test ! -s conftest.err
configure:2624: $? = 0
configure:2627: test -s conftest.o
configure:2630: $? = 0
configure:2643: result: yes
configure:2649: checking whether gcc accepts -g
configure:2670: gcc -c -g conftest.c >&5
configure:2676: $? = 0
configure:2680: test -z
|| test ! -s conftest.err
configure:2683: $? = 0
configure:2686: test -s conftest.o
configure:2689: $? = 0
configure:2700: result: yes
configure:2717: checking for gcc option to accept ANSI C
configure:2787: gcc -c -g -O2 conftest.c >&5
configure:2793: $? = 0
configure:2797: test -z
|| test ! -s conftest.err
configure:2800: $? = 0
configure:2803: test -s conftest.o
configure:2806: $? = 0
configure:2824: result: none needed
configure:2842: gcc -c -g -O2 conftest.c >&5
conftest.c:2: error: syntax error before 'me'
configure:2848: $? = 1
configure: failed program was:
| #ifndef __cplusplus
| choke me
| #endif
configure:2992: checking for style of include used by make
configure:3020: result: GNU
configure:3048: checking dependency style of gcc
configure:3138: result: gcc3
configure:3160: checking how to run the C preprocessor
configure:3195: gcc -E conftest.c
configure:3201: $? = 0
configure:3233: gcc -E conftest.c
conftest.c:11:28: error: ac_nonexistent.h: No such file or directory
configure:3239: $? = 1
configure: failed program was:
| /* confdefs.h. */
|
| #define PACKAGE_NAME "Tenes Empanadas Graciela"
| #define PACKAGE_TARNAME "teg"
| #define PACKAGE_VERSION "0.11.2"
| #define PACKAGE_STRING "Tenes Empanadas Graciela 0.11.2"
| #define PACKAGE_BUGREPORT "teg-list@lists.sourceforge.net"
| #define PACKAGE "teg"
| #define VERSION "0.11.2"
| /* end confdefs.h. */
| #include <ac_nonexistent.h>
configure:3278: result: gcc -E
configure:3302: gcc -E conftest.c
configure:3308: $? = 0
configure:3340: gcc -E conftest.c
conftest.c:11:28: error: ac_nonexistent.h: No such file or directory
configure:3346: $? = 1
configure: failed program was:
| /* confdefs.h. */
|
| #define PACKAGE_NAME "Tenes Empanadas Graciela"
| #define PACKAGE_TARNAME "teg"
| #define PACKAGE_VERSION "0.11.2"
| #define PACKAGE_STRING "Tenes Empanadas Graciela 0.11.2"
| #define PACKAGE_BUGREPORT "teg-list@lists.sourceforge.net"
| #define PACKAGE "teg"
| #define VERSION "0.11.2"
| /* end confdefs.h. */
| #include <ac_nonexistent.h>
configure:3441: checking for g++
configure:3457: found /usr/bin/g++
configure:3467: result: g++
configure:3483: checking for C++ compiler version
configure:3486: g++ --version </dev/null >&5
g++ (GCC) 4.0.2 20050901 (prerelease) (SUSE Linux)
Copyright (C) 2005 Free Software Foundation, Inc.
This is free software; see the source for copying conditions. There is NO
warranty; not even for MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
configure:3489: $? = 0
configure:3491: g++ -v </dev/null >&5
Using built-in specs.
Target: i586-suse-linux
Configured with: ../configure --enable-threads=posix --prefix=/usr --with-local-prefix=/usr/local --infodir=/usr/share/info --mandir=/usr/share/man --libdir=/usr/lib --libexecdir=/usr/lib --enable-languages=c,c++,objc,f95,java,ada --disable-checking --with-gxx-include-dir=/usr/include/c++/4.0.2 --enable-java-awt=gtk --disable-libjava-multilib --with-slibdir=/lib --with-system-zlib --enable-shared --enable-__cxa_atexit --without-system-libunwind --host=i586-suse-linux
Thread model: posix
gcc version 4.0.2 20050901 (prerelease) (SUSE Linux)
configure:3494: $? = 0
configure:3496: g++ -V </dev/null >&5
g++: '-V' option must have argument
configure:3499: $? = 1
configure:3502: checking whether we are using the GNU C++ compiler
configure:3526: g++ -c conftest.cc >&5
configure:3532: $? = 0
configure:3536: test -z
|| test ! -s conftest.err
configure:3539: $? = 0
configure:3542: test -s conftest.o
configure:3545: $? = 0
configure:3558: result: yes
configure:3564: checking whether g++ accepts -g
configure:3585: g++ -c -g conftest.cc >&5
configure:3591: $? = 0
configure:3595: test -z
|| test ! -s conftest.err
configure:3598: $? = 0
configure:3601: test -s conftest.o
configure:3604: $? = 0
configure:3615: result: yes
configure:3657: g++ -c -g -O2 conftest.cc >&5
configure:3663: $? = 0
configure:3667: test -z
|| test ! -s conftest.err
configure:3670: $? = 0
configure:3673: test -s conftest.o
configure:3676: $? = 0
configure:3702: g++ -c -g -O2 conftest.cc >&5
conftest.cc: In function 'int main()':
conftest.cc:15: error: 'exit' was not declared in this scope
configure:3708: $? = 1
configure: failed program was:
| /* confdefs.h. */
|
| #define PACKAGE_NAME "Tenes Empanadas Graciela"
| #define PACKAGE_TARNAME "teg"
| #define PACKAGE_VERSION "0.11.2"
| #define PACKAGE_STRING "Tenes Empanadas Graciela 0.11.2"
| #define PACKAGE_BUGREPORT "teg-list@lists.sourceforge.net"
| #define PACKAGE "teg"
| #define VERSION "0.11.2"
| /* end confdefs.h. */
|
| int
| main ()
| {
| exit (42);
| ;
| return 0;
| }
configure:3657: g++ -c -g -O2 conftest.cc >&5
configure:3663: $? = 0
configure:3667: test -z
|| test ! -s conftest.err
configure:3670: $? = 0
configure:3673: test -s conftest.o
configure:3676: $? = 0
configure:3702: g++ -c -g -O2 conftest.cc >&5
configure:3708: $? = 0
configure:3712: test -z
|| test ! -s conftest.err
configure:3715: $? = 0
configure:3718: test -s conftest.o
configure:3721: $? = 0
configure:3746: checking dependency style of g++
configure:3836: result: gcc3
configure:3856: checking for intltool >= 0.29
configure:3866: result: 0.34.1 found
configure:3923: checking for perl
configure:3941: found /usr/bin/perl
configure:3953: result: /usr/bin/perl
configure:3971: checking for XML::Parser
configure:3974: result: ok
configure:3985: checking for iconv
configure:4003: found /usr/bin/iconv
configure:4016: result: /usr/bin/iconv
configure:4025: checking for msgfmt
configure:4043: found /usr/bin/msgfmt
configure:4056: result: /usr/bin/msgfmt
configure:4065: checking for msgmerge
configure:4083: found /usr/bin/msgmerge
configure:4096: result: /usr/bin/msgmerge
configure:4105: checking for xgettext
configure:4123: found /usr/bin/xgettext
configure:4136: result: /usr/bin/xgettext
configure:4236: checking build system type
configure:4254: result: i686-suse-linux
configure:4262: checking host system type
configure:4276: result: i686-suse-linux
configure:4284: checking for a sed that does not truncate output
configure:4338: result: /usr/bin/sed
configure:4341: checking for egrep
configure:4351: result: grep -E
configure:4367: checking for ld used by gcc
configure:4434: result: /usr/i586-suse-linux/bin/ld
configure:4443: checking if the linker (/usr/i586-suse-linux/bin/ld) is GNU ld
configure:4458: result: yes
configure:4463: checking for /usr/i586-suse-linux/bin/ld option to reload object files
configure:4470: result: -r
configure:4488: checking for BSD-compatible nm
configure:4530: result: /usr/bin/nm -B
configure:4534: checking whether ln -s works
configure:4538: result: yes
configure:4545: checking how to recognise dependent libraries
configure:4717: result: pass_all
configure:4927: checking for ANSI C header files
configure:4952: gcc -c -g -O2 conftest.c >&5
configure:4958: $? = 0
configure:4962: test -z
|| test ! -s conftest.err
configure:4965: $? = 0
configure:4968: test -s conftest.o
configure:4971: $? = 0
configure:5060: gcc -o conftest -g -O2 conftest.c >&5
conftest.c: In function 'main':
conftest.c:31: warning: incompatible implicit declaration of built-in function 'exit'
configure:5063: $? = 0
configure:5065: ./conftest
configure:5068: $? = 0
configure:5083: result: yes
configure:5107: checking for sys/types.h
configure:5123: gcc -c -g -O2 conftest.c >&5
configure:5129: $? = 0
configure:5133: test -z
|| test ! -s conftest.err
configure:5136: $? = 0
configure:5139: test -s conftest.o
configure:5142: $? = 0
configure:5153: result: yes
configure:5107: checking for sys/stat.h
configure:5123: gcc -c -g -O2 conftest.c >&5
configure:5129: $? = 0
configure:5133: test -z
|| test ! -s conftest.err
configure:5136: $? = 0
configure:5139: test -s conftest.o
configure:5142: $? = 0
configure:5153: result: yes
configure:5107: checking for stdlib.h
configure:5123: gcc -c -g -O2 conftest.c >&5
configure:5129: $? = 0
configure:5133: test -z
|| test ! -s conftest.err
configure:5136: $? = 0
configure:5139: test -s conftest.o
configure:5142: $? = 0
configure:5153: result: yes
configure:5107: checking for string.h
configure:5123: gcc -c -g -O2 conftest.c >&5
configure:5129: $? = 0
configure:5133: test -z
|| test ! -s conftest.err
configure:5136: $? = 0
configure:5139: test -s conftest.o
configure:5142: $? = 0
configure:5153: result: yes
configure:5107: checking for memory.h
configure:5123: gcc -c -g -O2 conftest.c >&5
configure:5129: $? = 0
configure:5133: test -z
|| test ! -s conftest.err
configure:5136: $? = 0
configure:5139: test -s conftest.o
configure:5142: $? = 0
configure:5153: result: yes
configure:5107: checking for strings.h
configure:5123: gcc -c -g -O2 conftest.c >&5
configure:5129: $? = 0
configure:5133: test -z
|| test ! -s conftest.err
configure:5136: $? = 0
configure:5139: test -s conftest.o
configure:5142: $? = 0
configure:5153: result: yes
configure:5107: checking for inttypes.h
configure:5123: gcc -c -g -O2 conftest.c >&5
configure:5129: $? = 0
configure:5133: test -z
|| test ! -s conftest.err
configure:5136: $? = 0
configure:5139: test -s conftest.o
configure:5142: $? = 0
configure:5153: result: yes
configure:5107: checking for stdint.h
configure:5123: gcc -c -g -O2 conftest.c >&5
configure:5129: $? = 0
configure:5133: test -z
|| test ! -s conftest.err
configure:5136: $? = 0
configure:5139: test -s conftest.o
configure:5142: $? = 0
configure:5153: result: yes
configure:5107: checking for unistd.h
configure:5123: gcc -c -g -O2 conftest.c >&5
configure:5129: $? = 0
configure:5133: test -z
|| test ! -s conftest.err
configure:5136: $? = 0
configure:5139: test -s conftest.o
configure:5142: $? = 0
configure:5153: result: yes
configure:5179: checking dlfcn.h usability
configure:5191: gcc -c -g -O2 conftest.c >&5
configure:5197: $? = 0
configure:5201: test -z
|| test ! -s conftest.err
configure:5204: $? = 0
configure:5207: test -s conftest.o
configure:5210: $? = 0
configure:5220: result: yes
configure:5224: checking dlfcn.h presence
configure:5234: gcc -E conftest.c
configure:5240: $? = 0
configure:5260: result: yes
configure:5295: checking for dlfcn.h
configure:5302: result: yes
configure:5325: checking how to run the C++ preprocessor
configure:5356: g++ -E conftest.cc
configure:5362: $? = 0
configure:5394: g++ -E conftest.cc
conftest.cc:25:28: error: ac_nonexistent.h: No such file or directory
configure:5400: $? = 1
configure: failed program was:
| /* confdefs.h. */
|
| #define PACKAGE_NAME "Tenes Empanadas Graciela"
| #define PACKAGE_TARNAME "teg"
| #define PACKAGE_VERSION "0.11.2"
| #define PACKAGE_STRING "Tenes Empanadas Graciela 0.11.2"
| #define PACKAGE_BUGREPORT "teg-list@lists.sourceforge.net"
| #define PACKAGE "teg"
| #define VERSION "0.11.2"
| #ifdef __cplusplus
| extern "C" void std::exit (int) throw (); using std::exit;
| #endif
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| /* end confdefs.h. */
| #include <ac_nonexistent.h>
configure:5439: result: g++ -E
configure:5463: g++ -E conftest.cc
configure:5469: $? = 0
configure:5501: g++ -E conftest.cc
conftest.cc:25:28: error: ac_nonexistent.h: No such file or directory
configure:5507: $? = 1
configure: failed program was:
| /* confdefs.h. */
|
| #define PACKAGE_NAME "Tenes Empanadas Graciela"
| #define PACKAGE_TARNAME "teg"
| #define PACKAGE_VERSION "0.11.2"
| #define PACKAGE_STRING "Tenes Empanadas Graciela 0.11.2"
| #define PACKAGE_BUGREPORT "teg-list@lists.sourceforge.net"
| #define PACKAGE "teg"
| #define VERSION "0.11.2"
| #ifdef __cplusplus
| extern "C" void std::exit (int) throw (); using std::exit;
| #endif
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| /* end confdefs.h. */
| #include <ac_nonexistent.h>
configure:5604: checking for g77
configure:5633: result: no
configure:5604: checking for f77
configure:5633: result: no
configure:5604: checking for xlf
configure:5633: result: no
configure:5604: checking for frt
configure:5633: result: no
configure:5604: checking for pgf77
configure:5633: result: no
configure:5604: checking for fort77
configure:5633: result: no
configure:5604: checking for fl32
configure:5633: result: no
configure:5604: checking for af77
configure:5633: result: no
configure:5604: checking for f90
configure:5633: result: no
configure:5604: checking for xlf90
configure:5633: result: no
configure:5604: checking for pgf90
configure:5633: result: no
configure:5604: checking for epcf90
configure:5633: result: no
configure:5604: checking for f95
configure:5633: result: no
configure:5604: checking for fort
configure:5633: result: no
configure:5604: checking for xlf95
configure:5633: result: no
configure:5604: checking for ifc
configure:5633: result: no
configure:5604: checking for efc
configure:5633: result: no
configure:5604: checking for pgf95
configure:5633: result: no
configure:5604: checking for lf95
configure:5633: result: no
configure:5604: checking for gfortran
configure:5633: result: no
configure:5645: checking for Fortran 77 compiler version
configure:5648: --version </dev/null >&5
./configure: line 5649: --version: command not found
configure:5651: $? = 127
configure:5653: -v </dev/null >&5
./configure: line 5654: -v: command not found
configure:5656: $? = 127
configure:5658: -V </dev/null >&5
./configure: line 5659: -V: command not found
configure:5661: $? = 127
configure:5669: checking whether we are using the GNU Fortran 77 compiler
configure:5683: -c conftest.F >&5
./configure: line 5684: -c: command not found
configure:5689: $? = 127
configure: failed program was:
| program main
| #ifndef __GNUC__
| choke me
| #endif
|
| end
configure:5715: result: no
configure:5721: checking whether accepts -g
configure:5733: -c -g conftest.f >&5
./configure: line 5734: -c: command not found
configure:5739: $? = 127
configure: failed program was:
| program main
|
| end
configure:5764: result: no
configure:5794: checking the maximum length of command line arguments
configure:5886: result: 32768
configure:5897: checking command to parse /usr/bin/nm -B output from gcc object
configure:5993: gcc -c -g -O2 conftest.c >&5
configure:5996: $? = 0
configure:6000: /usr/bin/nm -B conftest.o \| sed -n -e 's/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p' \> conftest.nm
configure:6003: $? = 0
configure:6055: gcc -o conftest -g -O2 conftest.c conftstm.o >&5
configure:6058: $? = 0
configure:6096: result: ok
configure:6100: checking for objdir
configure:6115: result: .libs
configure:6205: checking for ar
configure:6221: found /usr/bin/ar
configure:6232: result: ar
configure:6285: checking for ranlib
configure:6301: found /usr/bin/ranlib
configure:6312: result: ranlib
configure:6365: checking for strip
configure:6381: found /usr/bin/strip
configure:6392: result: strip
configure:6679: checking if gcc static flag works
configure:6707: result: yes
configure:6725: checking if gcc supports -fno-rtti -fno-exceptions
configure:6743: gcc -c -g -O2 -fno-rtti -fno-exceptions conftest.c >&5
cc1: warning: command line option "-fno-rtti" is valid for C++/ObjC++ but not for C
configure:6747: $? = 0
configure:6760: result: no
configure:6775: checking for gcc option to produce PIC
configure:6979: result: -fPIC
configure:6987: checking if gcc PIC flag -fPIC works
configure:7005: gcc -c -g -O2 -fPIC -DPIC conftest.c >&5
configure:7009: $? = 0
configure:7022: result: yes
configure:7046: checking if gcc supports -c -o file.o
configure:7067: gcc -c -g -O2 -o out/conftest2.o conftest.c >&5
configure:7071: $? = 0
configure:7093: result: yes
configure:7119: checking whether the gcc linker (/usr/i586-suse-linux/bin/ld) supports shared libraries
configure:8015: result: yes
configure:8041: checking whether -lc should be explicitly linked in
configure:8046: gcc -c -g -O2 conftest.c >&5
configure:8049: $? = 0
configure:8063: gcc -shared conftest.o -v -Wl,-soname -Wl,conftest -o conftest 2\>\&1 \| grep -lc \>/dev/null 2\>\&1
configure:8066: $? = 0
configure:8078: result: no
configure:8086: checking dynamic linker characteristics
configure:8632: result: GNU/Linux ld.so
configure:8636: checking how to hardcode library paths into programs
configure:8661: result: immediate
configure:8675: checking whether stripping libraries is possible
configure:8680: result: yes
configure:9510: checking if libtool supports shared libraries
configure:9512: result: yes
configure:9515: checking whether to build shared libraries
configure:9536: result: yes
configure:9539: checking whether to build static libraries
configure:9543: result: yes
configure:9635: creating libtool
configure:10213: checking for ld used by g++
configure:10280: result: /usr/i586-suse-linux/bin/ld
configure:10289: checking if the linker (/usr/i586-suse-linux/bin/ld) is GNU ld
configure:10304: result: yes
configure:10355: checking whether the g++ linker (/usr/i586-suse-linux/bin/ld) supports shared libraries
configure:11242: result: yes
configure:11260: g++ -c -g -O2 conftest.cc >&5
configure:11263: $? = 0
configure:11359: checking for g++ option to produce PIC
configure:11627: result: -fPIC
configure:11635: checking if g++ PIC flag -fPIC works
configure:11653: g++ -c -g -O2 -fPIC -DPIC conftest.cc >&5
configure:11657: $? = 0
configure:11670: result: yes
configure:11694: checking if g++ supports -c -o file.o
configure:11715: g++ -c -g -O2 -o out/conftest2.o conftest.cc >&5
configure:11719: $? = 0
configure:11741: result: yes
configure:11767: checking whether the g++ linker (/usr/i586-suse-linux/bin/ld) supports shared libraries
configure:11792: result: yes
configure:11863: checking dynamic linker characteristics
configure:12409: result: GNU/Linux ld.so
configure:12413: checking how to hardcode library paths into programs
configure:12438: result: immediate
configure:12452: checking whether stripping libraries is possible
configure:12457: result: yes
configure:19963: checking whether ln -s works
configure:19967: result: yes
configure:20024: checking for pkg-config
configure:20042: found /usr/bin/pkg-config
configure:20054: result: /usr/bin/pkg-config
configure:20069: checking pkg-config is at least version 0.9.0
configure:20072: result: yes
configure:20083: checking for TEG_COMMONLIBS
configure:20088: $PKG_CONFIG --exists --print-errors "glib-2.0"
configure:20091: $? = 0
configure:20102: $PKG_CONFIG --exists --print-errors "glib-2.0"
configure:20105: $? = 0
configure:20160: result: yes
configure:20166: checking for XML
configure:20171: $PKG_CONFIG --exists --print-errors "libxml-2.0"
configure:20174: $? = 0
configure:20185: $PKG_CONFIG --exists --print-errors "libxml-2.0"
configure:20188: $? = 0
configure:20243: result: yes
configure:20390: checking for gconftool-2
configure:20408: found /opt/gnome/bin/gconftool-2
configure:20420: result: /opt/gnome/bin/gconftool-2
configure:20433: checking for TEG_LIBGNOME
configure:20438: $PKG_CONFIG --exists --print-errors "libgnomeui-2.0"
configure:20441: $? = 0
configure:20452: $PKG_CONFIG --exists --print-errors "libgnomeui-2.0"
configure:20455: $? = 0
configure:20510: result: yes
configure:20575: gcc -c -Wall -Werror -isystem /usr/local/include -isystem /usr/local/include conftest.c >&5
configure:20581: $? = 0
configure:20585: test -z
|| test ! -s conftest.err
configure:20588: $? = 0
configure:20591: test -s conftest.o
configure:20594: $? = 0
configure:20610: checking for GGZ library: ggzdmod
configure: 20671: /usr/local/include/ggzdmod.h
configure: 20671: /usr/include/ggzdmod.h
tried /usr/local/lib
tried /usr/lib
configure:20727: result: no
configure:20777: checking for GGZ server: ggzd
tried /usr/local/etc/ggzd
tried /usr/local/etc/ggzd
tried /etc/ggzd
configure:20838: result: no
configure:20903: checking for GGZ library: ggzmod
configure: 20964: /usr/local/include/ggzmod.h
configure: 20964: /usr/include/ggzmod.h
tried /usr/local/lib
tried /usr/lib
configure:21020: result: no
configure:21070: checking for GGZ configuration tool: ggz-config
configure: 21096: NO/ggz-config
configure: 21096: /usr/local/bin/ggz-config
configure: 21096: /usr/local/bin/ggz-config
configure: 21096: /usr/bin/ggz-config
configure:21141: result: no
configure:21308: checking locale.h usability
configure:21320: gcc -c -g -O2 -isystem /usr/local/include -isystem /usr/local/include conftest.c >&5
configure:21326: $? = 0
configure:21330: test -z
|| test ! -s conftest.err
configure:21333: $? = 0
configure:21336: test -s conftest.o
configure:21339: $? = 0
configure:21349: result: yes
configure:21353: checking locale.h presence
configure:21363: gcc -E -isystem /usr/local/include -isystem /usr/local/include conftest.c
configure:21369: $? = 0
configure:21389: result: yes
configure:21424: checking for locale.h
configure:21431: result: yes
configure:21445: checking for LC_MESSAGES
configure:21466: gcc -o conftest -g -O2 -isystem /usr/local/include -isystem /usr/local/include -L/usr/local/lib -L/usr/local/lib conftest.c >&5
configure:21472: $? = 0
configure:21476: test -z
|| test ! -s conftest.err
configure:21479: $? = 0
configure:21482: test -s conftest
configure:21485: $? = 0
configure:21497: result: yes
configure:21526: checking libintl.h usability
configure:21538: gcc -c -g -O2 -isystem /usr/local/include -isystem /usr/local/include conftest.c >&5
configure:21544: $? = 0
configure:21548: test -z
|| test ! -s conftest.err
configure:21551: $? = 0
configure:21554: test -s conftest.o
configure:21557: $? = 0
configure:21567: result: yes
configure:21571: checking libintl.h presence
configure:21581: gcc -E -isystem /usr/local/include -isystem /usr/local/include conftest.c
configure:21587: $? = 0
configure:21607: result: yes
configure:21642: checking for libintl.h
configure:21649: result: yes
configure:21660: checking for ngettext in libc
configure:21683: gcc -o conftest -g -O2 -isystem /usr/local/include -isystem /usr/local/include -L/usr/local/lib -L/usr/local/lib conftest.c >&5
configure:21689: $? = 0
configure:21693: test -z
|| test ! -s conftest.err
configure:21696: $? = 0
configure:21699: test -s conftest
configure:21702: $? = 0
configure:21715: result: yes
configure:21719: checking for dgettext in libc
configure:21742: gcc -o conftest -g -O2 -isystem /usr/local/include -isystem /usr/local/include -L/usr/local/lib -L/usr/local/lib conftest.c >&5
configure:21748: $? = 0
configure:21752: test -z
|| test ! -s conftest.err
configure:21755: $? = 0
configure:21758: test -s conftest
configure:21761: $? = 0
configure:21774: result: yes
configure:21783: checking for bind_textdomain_codeset
configure:21840: gcc -o conftest -g -O2 -isystem /usr/local/include -isystem /usr/local/include -L/usr/local/lib -L/usr/local/lib conftest.c >&5
configure:21846: $? = 0
configure:21850: test -z
|| test ! -s conftest.err
configure:21853: $? = 0
configure:21856: test -s conftest
configure:21859: $? = 0
configure:21871: result: yes
configure:22381: checking for msgfmt
configure:22408: result: /usr/bin/msgfmt
configure:22421: checking for dcgettext
configure:22478: gcc -o conftest -g -O2 -isystem /usr/local/include -isystem /usr/local/include -L/usr/local/lib -L/usr/local/lib conftest.c >&5
conftest.c:55: warning: conflicting types for built-in function 'dcgettext'
configure:22484: $? = 0
configure:22488: test -z
|| test ! -s conftest.err
configure:22491: $? = 0
configure:22494: test -s conftest
configure:22497: $? = 0
configure:22509: result: yes
configure:22521: checking for gmsgfmt
configure:22552: result: /usr/bin/msgfmt
configure:22561: checking for xgettext
configure:22588: result: /usr/bin/xgettext
configure:22612: gcc -o conftest -g -O2 -isystem /usr/local/include -isystem /usr/local/include -L/usr/local/lib -L/usr/local/lib conftest.c >&5
configure:22618: $? = 0
configure:22622: test -z
|| test ! -s conftest.err
configure:22625: $? = 0
configure:22628: test -s conftest
configure:22631: $? = 0
configure:22804: checking for catalogs to be installed
configure:22829: result: es fr de gl pl it pt pt_BR hu_HU
configure:22866: checking for pthread_create in -lpthread
configure:22896: gcc -o conftest -g -O2 -Wall -isystem /usr/local/include -isystem /usr/local/include -L/usr/local/lib -L/usr/local/lib conftest.c -lpthread >&5
configure:22902: $? = 0
configure:22906: test -z
|| test ! -s conftest.err
configure:22909: $? = 0
configure:22912: test -s conftest
configure:22915: $? = 0
configure:22928: result: yes
configure:22943: checking for gethostbyname
configure:23000: gcc -o conftest -g -O2 -Wall -isystem /usr/local/include -isystem /usr/local/include -L/usr/local/lib -L/usr/local/lib conftest.c >&5
configure:23006: $? = 0
configure:23010: test -z
|| test ! -s conftest.err
configure:23013: $? = 0
configure:23016: test -s conftest
configure:23019: $? = 0
configure:23031: result: yes
configure:23104: checking for connect
configure:23161: gcc -o conftest -g -O2 -Wall -isystem /usr/local/include -isystem /usr/local/include -L/usr/local/lib -L/usr/local/lib conftest.c >&5
configure:23167: $? = 0
configure:23171: test -z
|| test ! -s conftest.err
configure:23174: $? = 0
configure:23177: test -s conftest
configure:23180: $? = 0
configure:23192: result: yes
configure:23501: checking readline/readline.h usability
configure:23513: gcc -c -g -O2 -Wall -isystem /usr/local/include -isystem /usr/local/include conftest.c >&5
configure:23519: $? = 0
configure:23523: test -z
|| test ! -s conftest.err
configure:23526: $? = 0
configure:23529: test -s conftest.o
configure:23532: $? = 0
configure:23542: result: yes
configure:23546: checking readline/readline.h presence
configure:23556: gcc -E -isystem /usr/local/include -isystem /usr/local/include conftest.c
configure:23562: $? = 0
configure:23582: result: yes
configure:23617: checking for readline/readline.h
configure:23624: result: yes
configure:23636: checking for rl_callback_handler_install in -lreadline
configure:23666: gcc -o conftest -g -O2 -Wall -isystem /usr/local/include -isystem /usr/local/include -L/usr/local/lib -L/usr/local/lib conftest.c -lreadline -lpthread >&5
configure:23672: $? = 0
configure:23676: test -z
|| test ! -s conftest.err
configure:23679: $? = 0
configure:23682: test -s conftest
configure:23685: $? = 0
configure:23698: result: yes
configure:23719: checking for inet_ntop in -lc
configure:23749: gcc -o conftest -g -O2 -Wall -isystem /usr/local/include -isystem /usr/local/include -L/usr/local/lib -L/usr/local/lib conftest.c -lc >&5
configure:23755: $? = 0
configure:23759: test -z
|| test ! -s conftest.err
configure:23762: $? = 0
configure:23765: test -s conftest
configure:23768: $? = 0
configure:23781: result: yes
configure:23793: checking for main in -lnls
configure:23817: gcc -o conftest -g -O2 -Wall -isystem /usr/local/include -isystem /usr/local/include -L/usr/local/lib -L/usr/local/lib conftest.c -lnls >&5
/usr/lib/gcc/i586-suse-linux/4.0.2/../../../../i586-suse-linux/bin/ld: cannot find -lnls
collect2: ld returned 1 exit status
configure:23823: $? = 1
configure: failed program was:
| /* confdefs.h. */
|
| #define PACKAGE_NAME "Tenes Empanadas Graciela"
| #define PACKAGE_TARNAME "teg"
| #define PACKAGE_VERSION "0.11.2"
| #define PACKAGE_STRING "Tenes Empanadas Graciela 0.11.2"
| #define PACKAGE_BUGREPORT "teg-list@lists.sourceforge.net"
| #define PACKAGE "teg"
| #define VERSION "0.11.2"
| #ifdef __cplusplus
| extern "C" void std::exit (int) throw (); using std::exit;
| #endif
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define PREFIX "/usr/local"
| #define GETTEXT_PACKAGE "teg"
| #define HAVE_LOCALE_H 1
| #define HAVE_LC_MESSAGES 1
| #define HAVE_BIND_TEXTDOMAIN_CODESET 1
| #define HAVE_GETTEXT 1
| #define HAVE_DCGETTEXT 1
| #define ENABLE_NLS 1
| #define LOCALEDIR "/usr/local/share/locale"
| #define HAVE_PTHREADS 1
| #define HAVE_LIBREADLINE 1
| #define HAVE_INET_NTOP 1
| /* end confdefs.h. */
|
|
| int
| main ()
| {
| main ();
| ;
| return 0;
| }
configure:23849: result: no
configure:23861: checking for ANSI C header files
configure:24017: result: yes
configure:24056: checking arpa/inet.h usability
configure:24068: gcc -c -g -O2 -Wall -isystem /usr/local/include -isystem /usr/local/include conftest.c >&5
configure:24074: $? = 0
configure:24078: test -z
|| test ! -s conftest.err
configure:24081: $? = 0
configure:24084: test -s conftest.o
configure:24087: $? = 0
configure:24097: result: yes
configure:24101: checking arpa/inet.h presence
configure:24111: gcc -E -isystem /usr/local/include -isystem /usr/local/include conftest.c
configure:24117: $? = 0
configure:24137: result: yes
configure:24172: checking for arpa/inet.h
configure:24179: result: yes
configure:24056: checking netdb.h usability
configure:24068: gcc -c -g -O2 -Wall -isystem /usr/local/include -isystem /usr/local/include conftest.c >&5
configure:24074: $? = 0
configure:24078: test -z
|| test ! -s conftest.err
configure:24081: $? = 0
configure:24084: test -s conftest.o
configure:24087: $? = 0
configure:24097: result: yes
configure:24101: checking netdb.h presence
configure:24111: gcc -E -isystem /usr/local/include -isystem /usr/local/include conftest.c
configure:24117: $? = 0
configure:24137: result: yes
configure:24172: checking for netdb.h
configure:24179: result: yes
configure:24056: checking netinet/in.h usability
configure:24068: gcc -c -g -O2 -Wall -isystem /usr/local/include -isystem /usr/local/include conftest.c >&5
configure:24074: $? = 0
configure:24078: test -z
|| test ! -s conftest.err
configure:24081: $? = 0
configure:24084: test -s conftest.o
configure:24087: $? = 0
configure:24097: result: yes
configure:24101: checking netinet/in.h presence
configure:24111: gcc -E -isystem /usr/local/include -isystem /usr/local/include conftest.c
configure:24117: $? = 0
configure:24137: result: yes
configure:24172: checking for netinet/in.h
configure:24179: result: yes
configure:24056: checking pwd.h usability
configure:24068: gcc -c -g -O2 -Wall -isystem /usr/local/include -isystem /usr/local/include conftest.c >&5
configure:24074: $? = 0
configure:24078: test -z
|| test ! -s conftest.err
configure:24081: $? = 0
configure:24084: test -s conftest.o
configure:24087: $? = 0
configure:24097: result: yes
configure:24101: checking pwd.h presence
configure:24111: gcc -E -isystem /usr/local/include -isystem /usr/local/include conftest.c
configure:24117: $? = 0
configure:24137: result: yes
configure:24172: checking for pwd.h
configure:24179: result: yes
configure:24056: checking sys/ioctl.h usability
configure:24068: gcc -c -g -O2 -Wall -isystem /usr/local/include -isystem /usr/local/include conftest.c >&5
configure:24074: $? = 0
configure:24078: test -z
|| test ! -s conftest.err
configure:24081: $? = 0
configure:24084: test -s conftest.o
configure:24087: $? = 0
configure:24097: result: yes
configure:24101: checking sys/ioctl.h presence
configure:24111: gcc -E -isystem /usr/local/include -isystem /usr/local/include conftest.c
configure:24117: $? = 0
configure:24137: result: yes
configure:24172: checking for sys/ioctl.h
configure:24179: result: yes
configure:24056: checking sys/select.h usability
configure:24068: gcc -c -g -O2 -Wall -isystem /usr/local/include -isystem /usr/local/include conftest.c >&5
configure:24074: $? = 0
configure:24078: test -z
|| test ! -s conftest.err
configure:24081: $? = 0
configure:24084: test -s conftest.o
configure:24087: $? = 0
configure:24097: result: yes
configure:24101: checking sys/select.h presence
configure:24111: gcc -E -isystem /usr/local/include -isystem /usr/local/include conftest.c
configure:24117: $? = 0
configure:24137: result: yes
configure:24172: checking for sys/select.h
configure:24179: result: yes
configure:24056: checking sys/signal.h usability
configure:24068: gcc -c -g -O2 -Wall -isystem /usr/local/include -isystem /usr/local/include conftest.c >&5
configure:24074: $? = 0
configure:24078: test -z
|| test ! -s conftest.err
configure:24081: $? = 0
configure:24084: test -s conftest.o
configure:24087: $? = 0
configure:24097: result: yes
configure:24101: checking sys/signal.h presence
configure:24111: gcc -E -isystem /usr/local/include -isystem /usr/local/include conftest.c
configure:24117: $? = 0
configure:24137: result: yes
configure:24172: checking for sys/signal.h
configure:24179: result: yes
configure:24056: checking sys/socket.h usability
configure:24068: gcc -c -g -O2 -Wall -isystem /usr/local/include -isystem /usr/local/include conftest.c >&5
configure:24074: $? = 0
configure:24078: test -z
|| test ! -s conftest.err
configure:24081: $? = 0
configure:24084: test -s conftest.o
configure:24087: $? = 0
configure:24097: result: yes
configure:24101: checking sys/socket.h presence
configure:24111: gcc -E -isystem /usr/local/include -isystem /usr/local/include conftest.c
configure:24117: $? = 0
configure:24137: result: yes
configure:24172: checking for sys/socket.h
configure:24179: result: yes
configure:24056: checking sys/termio.h usability
configure:24068: gcc -c -g -O2 -Wall -isystem /usr/local/include -isystem /usr/local/include conftest.c >&5
conftest.c:80:24: error: sys/termio.h: No such file or directory
configure:24074: $? = 1
configure: failed program was:
| /* confdefs.h. */
|
| #define PACKAGE_NAME "Tenes Empanadas Graciela"
| #define PACKAGE_TARNAME "teg"
| #define PACKAGE_VERSION "0.11.2"
| #define PACKAGE_STRING "Tenes Empanadas Graciela 0.11.2"
| #define PACKAGE_BUGREPORT "teg-list@lists.sourceforge.net"
| #define PACKAGE "teg"
| #define VERSION "0.11.2"
| #ifdef __cplusplus
| extern "C" void std::exit (int) throw (); using std::exit;
| #endif
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define PREFIX "/usr/local"
| #define GETTEXT_PACKAGE "teg"
| #define HAVE_LOCALE_H 1
| #define HAVE_LC_MESSAGES 1
| #define HAVE_BIND_TEXTDOMAIN_CODESET 1
| #define HAVE_GETTEXT 1
| #define HAVE_DCGETTEXT 1
| #define ENABLE_NLS 1
| #define LOCALEDIR "/usr/local/share/locale"
| #define HAVE_PTHREADS 1
| #define HAVE_LIBREADLINE 1
| #define HAVE_INET_NTOP 1
| #define STDC_HEADERS 1
| #define HAVE_ARPA_INET_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_PWD_H 1
| #define HAVE_SYS_IOCTL_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_SIGNAL_H 1
| #define HAVE_SYS_SOCKET_H 1
| /* end confdefs.h. */
| #include <stdio.h>
| #if HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #if HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #if STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # if HAVE_STDLIB_H
| # include <stdlib.h>
| # endif
| #endif
| #if HAVE_STRING_H
| # if !STDC_HEADERS && HAVE_MEMORY_H
| # include <memory.h>
| # endif
| # include <string.h>
| #endif
| #if HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #if HAVE_INTTYPES_H
| # include <inttypes.h>
| #else
| # if HAVE_STDINT_H
| # include <stdint.h>
| # endif
| #endif
| #if HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #include <sys/termio.h>
configure:24097: result: no
configure:24101: checking sys/termio.h presence
configure:24111: gcc -E -isystem /usr/local/include -isystem /usr/local/include conftest.c
conftest.c:46:24: error: sys/termio.h: No such file or directory
configure:24117: $? = 1
configure: failed program was:
| /* confdefs.h. */
|
| #define PACKAGE_NAME "Tenes Empanadas Graciela"
| #define PACKAGE_TARNAME "teg"
| #define PACKAGE_VERSION "0.11.2"
| #define PACKAGE_STRING "Tenes Empanadas Graciela 0.11.2"
| #define PACKAGE_BUGREPORT "teg-list@lists.sourceforge.net"
| #define PACKAGE "teg"
| #define VERSION "0.11.2"
| #ifdef __cplusplus
| extern "C" void std::exit (int) throw (); using std::exit;
| #endif
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define PREFIX "/usr/local"
| #define GETTEXT_PACKAGE "teg"
| #define HAVE_LOCALE_H 1
| #define HAVE_LC_MESSAGES 1
| #define HAVE_BIND_TEXTDOMAIN_CODESET 1
| #define HAVE_GETTEXT 1
| #define HAVE_DCGETTEXT 1
| #define ENABLE_NLS 1
| #define LOCALEDIR "/usr/local/share/locale"
| #define HAVE_PTHREADS 1
| #define HAVE_LIBREADLINE 1
| #define HAVE_INET_NTOP 1
| #define STDC_HEADERS 1
| #define HAVE_ARPA_INET_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_PWD_H 1
| #define HAVE_SYS_IOCTL_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_SIGNAL_H 1
| #define HAVE_SYS_SOCKET_H 1
| /* end confdefs.h. */
| #include <sys/termio.h>
configure:24137: result: no
configure:24172: checking for sys/termio.h
configure:24179: result: no
configure:24056: checking sys/time.h usability
configure:24068: gcc -c -g -O2 -Wall -isystem /usr/local/include -isystem /usr/local/include conftest.c >&5
configure:24074: $? = 0
configure:24078: test -z
|| test ! -s conftest.err
configure:24081: $? = 0
configure:24084: test -s conftest.o
configure:24087: $? = 0
configure:24097: result: yes
configure:24101: checking sys/time.h presence
configure:24111: gcc -E -isystem /usr/local/include -isystem /usr/local/include conftest.c
configure:24117: $? = 0
configure:24137: result: yes
configure:24172: checking for sys/time.h
configure:24179: result: yes
configure:24047: checking for sys/types.h
configure:24052: result: yes
configure:24056: checking sys/uio.h usability
configure:24068: gcc -c -g -O2 -Wall -isystem /usr/local/include -isystem /usr/local/include conftest.c >&5
configure:24074: $? = 0
configure:24078: test -z
|| test ! -s conftest.err
configure:24081: $? = 0
configure:24084: test -s conftest.o
configure:24087: $? = 0
configure:24097: result: yes
configure:24101: checking sys/uio.h presence
configure:24111: gcc -E -isystem /usr/local/include -isystem /usr/local/include conftest.c
configure:24117: $? = 0
configure:24137: result: yes
configure:24172: checking for sys/uio.h
configure:24179: result: yes
configure:24056: checking termios.h usability
configure:24068: gcc -c -g -O2 -Wall -isystem /usr/local/include -isystem /usr/local/include conftest.c >&5
configure:24074: $? = 0
configure:24078: test -z
|| test ! -s conftest.err
configure:24081: $? = 0
configure:24084: test -s conftest.o
configure:24087: $? = 0
configure:24097: result: yes
configure:24101: checking termios.h presence
configure:24111: gcc -E -isystem /usr/local/include -isystem /usr/local/include conftest.c
configure:24117: $? = 0
configure:24137: result: yes
configure:24172: checking for termios.h
configure:24179: result: yes
configure:24047: checking for unistd.h
configure:24052: result: yes
configure:24194: checking for an ANSI C-conforming const
configure:24261: gcc -c -g -O2 -Wall -isystem /usr/local/include -isystem /usr/local/include conftest.c >&5
conftest.c: In function 'main':
conftest.c:78: warning: unused variable 's'
conftest.c:98: warning: unused variable 'foo'
conftest.c:65: warning: unused variable 'zero'
conftest.c:59: warning: unused variable 'x'
conftest.c:80: warning: 't' is used uninitialized in this function
conftest.c:95: warning: 'b' is used uninitialized in this function
configure:24267: $? = 0
configure:24271: test -z
|| test ! -s conftest.err
configure:24274: $? = 0
configure:24277: test -s conftest.o
configure:24280: $? = 0
configure:24291: result: yes
configure:24301: checking whether time.h and sys/time.h may both be included
configure:24326: gcc -c -g -O2 -Wall -isystem /usr/local/include -isystem /usr/local/include conftest.c >&5
configure:24332: $? = 0
configure:24336: test -z
|| test ! -s conftest.err
configure:24339: $? = 0
configure:24342: test -s conftest.o
configure:24345: $? = 0
configure:24356: result: yes
configure:24366: checking whether struct tm is in sys/time.h or time.h
configure:24389: gcc -c -g -O2 -Wall -isystem /usr/local/include -isystem /usr/local/include conftest.c >&5
conftest.c: In function 'main':
conftest.c:58: warning: statement with no effect
configure:24395: $? = 0
configure:24399: test -z
|| test ! -s conftest.err
configure:24402: $? = 0
configure:24405: test -s conftest.o
configure:24408: $? = 0
configure:24419: result: time.h
configure:24430: checking return type of signal handlers
configure:24461: gcc -c -g -O2 -Wall -isystem /usr/local/include -isystem /usr/local/include conftest.c >&5
conftest.c: In function 'main':
conftest.c:66: warning: unused variable 'i'
configure:24467: $? = 0
configure:24471: test -z
|| test ! -s conftest.err
configure:24474: $? = 0
configure:24477: test -s conftest.o
configure:24480: $? = 0
configure:24491: result: void
configure:24503: checking for vprintf
configure:24560: gcc -o conftest -g -O2 -Wall -isystem /usr/local/include -isystem /usr/local/include -L/usr/local/lib -L/usr/local/lib conftest.c >&5
conftest.c:77: warning: conflicting types for built-in function 'vprintf'
configure:24566: $? = 0
configure:24570: test -z
|| test ! -s conftest.err
configure:24573: $? = 0
configure:24576: test -s conftest
configure:24579: $? = 0
configure:24591: result: yes
configure:24598: checking for _doprnt
configure:24655: gcc -o conftest -g -O2 -Wall -isystem /usr/local/include -isystem /usr/local/include -L/usr/local/lib -L/usr/local/lib conftest.c >&5
/tmp/cciCDIv3.o: In function `main':
/home/nordi/.eclipse/teg-0.11.2/conftest.c:93: undefined reference to `_doprnt'
/tmp/cciCDIv3.o:(.data+0x0): undefined reference to `_doprnt'
collect2: ld returned 1 exit status
configure:24661: $? = 1
configure: failed program was:
| /* confdefs.h. */
|
| #define PACKAGE_NAME "Tenes Empanadas Graciela"
| #define PACKAGE_TARNAME "teg"
| #define PACKAGE_VERSION "0.11.2"
| #define PACKAGE_STRING "Tenes Empanadas Graciela 0.11.2"
| #define PACKAGE_BUGREPORT "teg-list@lists.sourceforge.net"
| #define PACKAGE "teg"
| #define VERSION "0.11.2"
| #ifdef __cplusplus
| extern "C" void std::exit (int) throw (); using std::exit;
| #endif
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define PREFIX "/usr/local"
| #define GETTEXT_PACKAGE "teg"
| #define HAVE_LOCALE_H 1
| #define HAVE_LC_MESSAGES 1
| #define HAVE_BIND_TEXTDOMAIN_CODESET 1
| #define HAVE_GETTEXT 1
| #define HAVE_DCGETTEXT 1
| #define ENABLE_NLS 1
| #define LOCALEDIR "/usr/local/share/locale"
| #define HAVE_PTHREADS 1
| #define HAVE_LIBREADLINE 1
| #define HAVE_INET_NTOP 1
| #define STDC_HEADERS 1
| #define HAVE_ARPA_INET_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_PWD_H 1
| #define HAVE_SYS_IOCTL_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_SIGNAL_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_UIO_H 1
| #define HAVE_TERMIOS_H 1
| #define HAVE_UNISTD_H 1
| #define TIME_WITH_SYS_TIME 1
| #define RETSIGTYPE void
| #define HAVE_VPRINTF 1
| /* end confdefs.h. */
| /* Define _doprnt to an innocuous variant, in case <limits.h> declares _doprnt.
| For example, HP-UX 11i <limits.h> declares gettimeofday. */
| #define _doprnt innocuous__doprnt
|
| /* System header to define __stub macros and hopefully few prototypes,
| which can conflict with char _doprnt (); below.
| Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
| <limits.h> exists even on freestanding compilers. */
|
| #ifdef __STDC__
| # include <limits.h>
| #else
| # include <assert.h>
| #endif
|
| #undef _doprnt
|
| /* Override any gcc2 internal prototype to avoid an error. */
| #ifdef __cplusplus
| extern "C"
| {
| #endif
| /* We use char because int might match the return type of a gcc2
| builtin and then its argument prototype would still apply. */
| char _doprnt ();
| /* The GNU C library defines this for functions which it implements
| to always fail with ENOSYS. Some functions are actually named
| something starting with __ and the normal name is an alias. */
| #if defined (__stub__doprnt) || defined (__stub____doprnt)
| choke me
| #else
| char (*f) () = _doprnt;
| #endif
| #ifdef __cplusplus
| }
| #endif
|
| int
| main ()
| {
| return f != _doprnt;
| ;
| return 0;
| }
configure:24686: result: no
configure:24715: checking for fdopen
configure:24772: gcc -o conftest -g -O2 -Wall -isystem /usr/local/include -isystem /usr/local/include -L/usr/local/lib -L/usr/local/lib conftest.c >&5
configure:24778: $? = 0
configure:24782: test -z
|| test ! -s conftest.err
configure:24785: $? = 0
configure:24788: test -s conftest
configure:24791: $? = 0
configure:24803: result: yes
configure:24715: checking for gethostname
configure:24772: gcc -o conftest -g -O2 -Wall -isystem /usr/local/include -isystem /usr/local/include -L/usr/local/lib -L/usr/local/lib conftest.c >&5
configure:24778: $? = 0
configure:24782: test -z
|| test ! -s conftest.err
configure:24785: $? = 0
configure:24788: test -s conftest
configure:24791: $? = 0
configure:24803: result: yes
configure:24715: checking for getpwuid
configure:24772: gcc -o conftest -g -O2 -Wall -isystem /usr/local/include -isystem /usr/local/include -L/usr/local/lib -L/usr/local/lib conftest.c >&5
configure:24778: $? = 0
configure:24782: test -z
|| test ! -s conftest.err
configure:24785: $? = 0
configure:24788: test -s conftest
configure:24791: $? = 0
configure:24803: result: yes
configure:24715: checking for gettimeofday
configure:24772: gcc -o conftest -g -O2 -Wall -isystem /usr/local/include -isystem /usr/local/include -L/usr/local/lib -L/usr/local/lib conftest.c >&5
configure:24778: $? = 0
configure:24782: test -z
|| test ! -s conftest.err
configure:24785: $? = 0
configure:24788: test -s conftest
configure:24791: $? = 0
configure:24803: result: yes
configure:24715: checking for select
configure:24772: gcc -o conftest -g -O2 -Wall -isystem /usr/local/include -isystem /usr/local/include -L/usr/local/lib -L/usr/local/lib conftest.c >&5
configure:24778: $? = 0
configure:24782: test -z
|| test ! -s conftest.err
configure:24785: $? = 0
configure:24788: test -s conftest
configure:24791: $? = 0
configure:24803: result: yes
configure:24715: checking for strerror
configure:24772: gcc -o conftest -g -O2 -Wall -isystem /usr/local/include -isystem /usr/local/include -L/usr/local/lib -L/usr/local/lib conftest.c >&5
configure:24778: $? = 0
configure:24782: test -z
|| test ! -s conftest.err
configure:24785: $? = 0
configure:24788: test -s conftest
configure:24791: $? = 0
configure:24803: result: yes
configure:24715: checking for strlcat
configure:24772: gcc -o conftest -g -O2 -Wall -isystem /usr/local/include -isystem /usr/local/include -L/usr/local/lib -L/usr/local/lib conftest.c >&5
/tmp/ccW4BXYf.o: In function `main':
/home/nordi/.eclipse/teg-0.11.2/conftest.c:99: undefined reference to `strlcat'
/tmp/ccW4BXYf.o:(.data+0x0): undefined reference to `strlcat'
collect2: ld returned 1 exit status
configure:24778: $? = 1
configure: failed program was:
| /* confdefs.h. */
|
| #define PACKAGE_NAME "Tenes Empanadas Graciela"
| #define PACKAGE_TARNAME "teg"
| #define PACKAGE_VERSION "0.11.2"
| #define PACKAGE_STRING "Tenes Empanadas Graciela 0.11.2"
| #define PACKAGE_BUGREPORT "teg-list@lists.sourceforge.net"
| #define PACKAGE "teg"
| #define VERSION "0.11.2"
| #ifdef __cplusplus
| extern "C" void std::exit (int) throw (); using std::exit;
| #endif
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define PREFIX "/usr/local"
| #define GETTEXT_PACKAGE "teg"
| #define HAVE_LOCALE_H 1
| #define HAVE_LC_MESSAGES 1
| #define HAVE_BIND_TEXTDOMAIN_CODESET 1
| #define HAVE_GETTEXT 1
| #define HAVE_DCGETTEXT 1
| #define ENABLE_NLS 1
| #define LOCALEDIR "/usr/local/share/locale"
| #define HAVE_PTHREADS 1
| #define HAVE_LIBREADLINE 1
| #define HAVE_INET_NTOP 1
| #define STDC_HEADERS 1
| #define HAVE_ARPA_INET_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_PWD_H 1
| #define HAVE_SYS_IOCTL_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_SIGNAL_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_UIO_H 1
| #define HAVE_TERMIOS_H 1
| #define HAVE_UNISTD_H 1
| #define TIME_WITH_SYS_TIME 1
| #define RETSIGTYPE void
| #define HAVE_VPRINTF 1
| #define HAVE_FDOPEN 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_GETPWUID 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_SELECT 1
| #define HAVE_STRERROR 1
| /* end confdefs.h. */
| /* Define strlcat to an innocuous variant, in case <limits.h> declares strlcat.
| For example, HP-UX 11i <limits.h> declares gettimeofday. */
| #define strlcat innocuous_strlcat
|
| /* System header to define __stub macros and hopefully few prototypes,
| which can conflict with char strlcat (); below.
| Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
| <limits.h> exists even on freestanding compilers. */
|
| #ifdef __STDC__
| # include <limits.h>
| #else
| # include <assert.h>
| #endif
|
| #undef strlcat
|
| /* Override any gcc2 internal prototype to avoid an error. */
| #ifdef __cplusplus
| extern "C"
| {
| #endif
| /* We use char because int might match the return type of a gcc2
| builtin and then its argument prototype would still apply. */
| char strlcat ();
| /* The GNU C library defines this for functions which it implements
| to always fail with ENOSYS. Some functions are actually named
| something starting with __ and the normal name is an alias. */
| #if defined (__stub_strlcat) || defined (__stub___strlcat)
| choke me
| #else
| char (*f) () = strlcat;
| #endif
| #ifdef __cplusplus
| }
| #endif
|
| int
| main ()
| {
| return f != strlcat;
| ;
| return 0;
| }
configure:24803: result: no
configure:24715: checking for strlcpy
configure:24772: gcc -o conftest -g -O2 -Wall -isystem /usr/local/include -isystem /usr/local/include -L/usr/local/lib -L/usr/local/lib conftest.c >&5
/tmp/ccOnNd0j.o: In function `main':
/home/nordi/.eclipse/teg-0.11.2/conftest.c:99: undefined reference to `strlcpy'
/tmp/ccOnNd0j.o:(.data+0x0): undefined reference to `strlcpy'
collect2: ld returned 1 exit status
configure:24778: $? = 1
configure: failed program was:
| /* confdefs.h. */
|
| #define PACKAGE_NAME "Tenes Empanadas Graciela"
| #define PACKAGE_TARNAME "teg"
| #define PACKAGE_VERSION "0.11.2"
| #define PACKAGE_STRING "Tenes Empanadas Graciela 0.11.2"
| #define PACKAGE_BUGREPORT "teg-list@lists.sourceforge.net"
| #define PACKAGE "teg"
| #define VERSION "0.11.2"
| #ifdef __cplusplus
| extern "C" void std::exit (int) throw (); using std::exit;
| #endif
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define PREFIX "/usr/local"
| #define GETTEXT_PACKAGE "teg"
| #define HAVE_LOCALE_H 1
| #define HAVE_LC_MESSAGES 1
| #define HAVE_BIND_TEXTDOMAIN_CODESET 1
| #define HAVE_GETTEXT 1
| #define HAVE_DCGETTEXT 1
| #define ENABLE_NLS 1
| #define LOCALEDIR "/usr/local/share/locale"
| #define HAVE_PTHREADS 1
| #define HAVE_LIBREADLINE 1
| #define HAVE_INET_NTOP 1
| #define STDC_HEADERS 1
| #define HAVE_ARPA_INET_H 1
| #define HAVE_NETDB_H 1
| #define HAVE_NETINET_IN_H 1
| #define HAVE_PWD_H 1
| #define HAVE_SYS_IOCTL_H 1
| #define HAVE_SYS_SELECT_H 1
| #define HAVE_SYS_SIGNAL_H 1
| #define HAVE_SYS_SOCKET_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_UIO_H 1
| #define HAVE_TERMIOS_H 1
| #define HAVE_UNISTD_H 1
| #define TIME_WITH_SYS_TIME 1
| #define RETSIGTYPE void
| #define HAVE_VPRINTF 1
| #define HAVE_FDOPEN 1
| #define HAVE_GETHOSTNAME 1
| #define HAVE_GETPWUID 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_SELECT 1
| #define HAVE_STRERROR 1
| /* end confdefs.h. */
| /* Define strlcpy to an innocuous variant, in case <limits.h> declares strlcpy.
| For example, HP-UX 11i <limits.h> declares gettimeofday. */
| #define strlcpy innocuous_strlcpy
|
| /* System header to define __stub macros and hopefully few prototypes,
| which can conflict with char strlcpy (); below.
| Prefer <limits.h> to <assert.h> if __STDC__ is defined, since
| <limits.h> exists even on freestanding compilers. */
|
| #ifdef __STDC__
| # include <limits.h>
| #else
| # include <assert.h>
| #endif
|
| #undef strlcpy
|
| /* Override any gcc2 internal prototype to avoid an error. */
| #ifdef __cplusplus
| extern "C"
| {
| #endif
| /* We use char because int might match the return type of a gcc2
| builtin and then its argument prototype would still apply. */
| char strlcpy ();
| /* The GNU C library defines this for functions which it implements
| to always fail with ENOSYS. Some functions are actually named
| something starting with __ and the normal name is an alias. */
| #if defined (__stub_strlcpy) || defined (__stub___strlcpy)
| choke me
| #else
| char (*f) () = strlcpy;
| #endif
| #ifdef __cplusplus
| }
| #endif
|
| int
| main ()
| {
| return f != strlcpy;
| ;
| return 0;
| }
configure:24803: result: no
configure:24715: checking for strstr
configure:24772: gcc -o conftest -g -O2 -Wall -isystem /usr/local/include -isystem /usr/local/include -L/usr/local/lib -L/usr/local/lib conftest.c >&5
conftest.c:84: warning: conflicting types for built-in function 'strstr'
configure:24778: $? = 0
configure:24782: test -z
|| test ! -s conftest.err
configure:24785: $? = 0
configure:24788: test -s conftest
configure:24791: $? = 0
configure:24803: result: yes
configure:24715: checking for usleep
configure:24772: gcc -o conftest -g -O2 -Wall -isystem /usr/local/include -isystem /usr/local/include -L/usr/local/lib -L/usr/local/lib conftest.c >&5
configure:24778: $? = 0
configure:24782: test -z
|| test ! -s conftest.err
configure:24785: $? = 0
configure:24788: test -s conftest
configure:24791: $? = 0
configure:24803: result: yes
configure:24715: checking for vsnprintf
configure:24772: gcc -o conftest -g -O2 -Wall -isystem /usr/local/include -isystem /usr/local/include -L/usr/local/lib -L/usr/local/lib conftest.c >&5
conftest.c:86: warning: conflicting types for built-in function 'vsnprintf'
configure:24778: $? = 0
configure:24782: test -z
|| test ! -s conftest.err
configure:24785: $? = 0
configure:24788: test -s conftest
configure:24791: $? = 0
configure:24803: result: yes
configure:24891: checking whether you have Empanadas de carne criolla
configure:24894: result: Super!
configure:24896: checking whether you have Empanadas de verdura
configure:24899: result: Cool!
configure:24901: checking whether you have Empanadas de jamon y queso
configure:24904: result: Buenichimo!
configure:24906: checking whether you have Empanadas de carne picante
configure:24909: result: Yeah!
configure:25085: creating ./config.status
## ---------------------- ##
## Running config.status. ##
## ---------------------- ##
This file was extended by Tenes Empanadas Graciela config.status 0.11.2, which was
generated by GNU Autoconf 2.59. Invocation command line was
CONFIG_FILES =
CONFIG_HEADERS =
CONFIG_LINKS =
CONFIG_COMMANDS =
$ ./config.status
on nordiputer
config.status:834: creating Makefile
config.status:834: creating macros/Makefile
config.status:834: creating po/Makefile.in
config.status:834: creating po/Makefile
config.status:834: creating common/Makefile
config.status:834: creating server/Makefile
config.status:834: creating client/Makefile
config.status:834: creating client/teg_pix/Makefile
config.status:834: creating client/themes/Makefile
config.status:834: creating client/themes/m2/Makefile
config.status:834: creating client/themes/sentimental/Makefile
config.status:834: creating client/themes/draco/Makefile
config.status:834: creating client/gui-gnome/Makefile
config.status:834: creating client/gui-gnome/stock/Makefile
config.status:834: creating robot/Makefile
config.status:834: creating docs/Makefile
config.status:834: creating docs/gnome-help/Makefile
config.status:834: creating docs/gnome-help/C/Makefile
config.status:834: creating docs/gnome-help/pl/Makefile
config.status:834: creating ggz/Makefile
config.status:834: creating ggz/teg.dsc
config.status:834: creating ggz/tegclient.dsc
config.status:834: creating metaserver/Makefile
config.status:938: creating config.h
config.status:1320: executing depfiles commands
config.status:1320: executing intltool commands
config.status:1320: executing default-1 commands
## ---------------- ##
## Cache variables. ##
## ---------------- ##
ac_cv_build=i686-suse-linux
ac_cv_build_alias=i686-suse-linux
ac_cv_c_compiler_gnu=yes
ac_cv_c_const=yes
ac_cv_cxx_compiler_gnu=yes
ac_cv_env_CC_set=
ac_cv_env_CC_value=
ac_cv_env_CFLAGS_set=
ac_cv_env_CFLAGS_value=
ac_cv_env_CPPFLAGS_set=
ac_cv_env_CPPFLAGS_value=
ac_cv_env_CPP_set=
ac_cv_env_CPP_value=
ac_cv_env_CXXCPP_set=
ac_cv_env_CXXCPP_value=
ac_cv_env_CXXFLAGS_set=
ac_cv_env_CXXFLAGS_value=
ac_cv_env_CXX_set=
ac_cv_env_CXX_value=
ac_cv_env_F77_set=
ac_cv_env_F77_value=
ac_cv_env_FFLAGS_set=
ac_cv_env_FFLAGS_value=
ac_cv_env_LDFLAGS_set=
ac_cv_env_LDFLAGS_value=
ac_cv_env_PKG_CONFIG_set=
ac_cv_env_PKG_CONFIG_value=
ac_cv_env_TEG_COMMONLIBS_CFLAGS_set=
ac_cv_env_TEG_COMMONLIBS_CFLAGS_value=
ac_cv_env_TEG_COMMONLIBS_LIBS_set=
ac_cv_env_TEG_COMMONLIBS_LIBS_value=
ac_cv_env_TEG_LIBGNOME_CFLAGS_set=
ac_cv_env_TEG_LIBGNOME_CFLAGS_value=
ac_cv_env_TEG_LIBGNOME_LIBS_set=
ac_cv_env_TEG_LIBGNOME_LIBS_value=
ac_cv_env_XML_CFLAGS_set=
ac_cv_env_XML_CFLAGS_value=
ac_cv_env_XML_LIBS_set=
ac_cv_env_XML_LIBS_value=
ac_cv_env_build_alias_set=
ac_cv_env_build_alias_value=
ac_cv_env_host_alias_set=
ac_cv_env_host_alias_value=
ac_cv_env_target_alias_set=
ac_cv_env_target_alias_value=
ac_cv_exeext=
ac_cv_f77_compiler_gnu=no
ac_cv_func__doprnt=no
ac_cv_func_bind_textdomain_codeset=yes
ac_cv_func_connect=yes
ac_cv_func_dcgettext=yes
ac_cv_func_fdopen=yes
ac_cv_func_gethostbyname=yes
ac_cv_func_gethostname=yes
ac_cv_func_getpwuid=yes
ac_cv_func_gettimeofday=yes
ac_cv_func_select=yes
ac_cv_func_strerror=yes
ac_cv_func_strlcat=no
ac_cv_func_strlcpy=no
ac_cv_func_strstr=yes
ac_cv_func_usleep=yes
ac_cv_func_vprintf=yes
ac_cv_func_vsnprintf=yes
ac_cv_have_ggzcore=have_ggz_config=no
ac_cv_have_ggzdmod=have_ggzdmod=no
ac_cv_have_ggzmod=have_ggzmod=no
ac_cv_header_arpa_inet_h=yes
ac_cv_header_dlfcn_h=yes
ac_cv_header_inttypes_h=yes
ac_cv_header_libintl_h=yes
ac_cv_header_locale_h=yes
ac_cv_header_memory_h=yes
ac_cv_header_netdb_h=yes
ac_cv_header_netinet_in_h=yes
ac_cv_header_pwd_h=yes
ac_cv_header_readline_readline_h=yes
ac_cv_header_stdc=yes
ac_cv_header_stdint_h=yes
ac_cv_header_stdlib_h=yes
ac_cv_header_string_h=yes
ac_cv_header_strings_h=yes
ac_cv_header_sys_ioctl_h=yes
ac_cv_header_sys_select_h=yes
ac_cv_header_sys_signal_h=yes
ac_cv_header_sys_socket_h=yes
ac_cv_header_sys_stat_h=yes
ac_cv_header_sys_termio_h=no
ac_cv_header_sys_time_h=yes
ac_cv_header_sys_types_h=yes
ac_cv_header_sys_uio_h=yes
ac_cv_header_termios_h=yes
ac_cv_header_time=yes
ac_cv_header_unistd_h=yes
ac_cv_host=i686-suse-linux
ac_cv_host_alias=i686-suse-linux
ac_cv_lib_c_inet_ntop=yes
ac_cv_lib_nls_main=no
ac_cv_lib_pthread_pthread_create=yes
ac_cv_lib_readline_rl_callback_handler_install=yes
ac_cv_objext=o
ac_cv_path_GCONFTOOL=/opt/gnome/bin/gconftool-2
ac_cv_path_GMSGFMT=/usr/bin/msgfmt
ac_cv_path_INTLTOOL_ICONV=/usr/bin/iconv
ac_cv_path_INTLTOOL_MSGFMT=/usr/bin/msgfmt
ac_cv_path_INTLTOOL_MSGMERGE=/usr/bin/msgmerge
ac_cv_path_INTLTOOL_PERL=/usr/bin/perl
ac_cv_path_INTLTOOL_XGETTEXT=/usr/bin/xgettext
ac_cv_path_MSGFMT=/usr/bin/msgfmt
ac_cv_path_XGETTEXT=/usr/bin/xgettext
ac_cv_path_ac_pt_PKG_CONFIG=/usr/bin/pkg-config
ac_cv_path_install='/usr/bin/install -c'
ac_cv_prog_AWK=gawk
ac_cv_prog_CPP='gcc -E'
ac_cv_prog_CXXCPP='g++ -E'
ac_cv_prog_ac_ct_AR=ar
ac_cv_prog_ac_ct_CC=gcc
ac_cv_prog_ac_ct_CXX=g++
ac_cv_prog_ac_ct_RANLIB=ranlib
ac_cv_prog_ac_ct_STRIP=strip
ac_cv_prog_cc_g=yes
ac_cv_prog_cc_stdc=
ac_cv_prog_cxx_g=yes
ac_cv_prog_egrep='grep -E'
ac_cv_prog_f77_g=no
ac_cv_prog_make_make_set=yes
ac_cv_struct_tm=time.h
ac_cv_type_signal=void
am_cv_CC_dependencies_compiler_type=gcc3
am_cv_CXX_dependencies_compiler_type=gcc3
am_cv_val_LC_MESSAGES=yes
gt_cv_func_dgettext_libc=yes
gt_cv_func_dgettext_libintl=no
gt_cv_func_ngettext_libc=yes
gt_cv_have_gettext=yes
lt_cv_deplibs_check_method=pass_all
lt_cv_file_magic_cmd='$MAGIC_CMD'
lt_cv_file_magic_test_file=
lt_cv_ld_reload_flag=-r
lt_cv_objdir=.libs
lt_cv_path_LD=/usr/i586-suse-linux/bin/ld
lt_cv_path_LDCXX=/usr/i586-suse-linux/bin/ld
lt_cv_path_NM='/usr/bin/nm -B'
lt_cv_path_SED=/usr/bin/sed
lt_cv_prog_compiler_c_o=yes
lt_cv_prog_compiler_c_o_CXX=yes
lt_cv_prog_compiler_rtti_exceptions=no
lt_cv_prog_gnu_ld=yes
lt_cv_prog_gnu_ldcxx=yes
lt_cv_sys_global_symbol_pipe='sed -n -e '\''s/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ ]*\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2 \2/p'\'''
lt_cv_sys_global_symbol_to_c_name_address='sed -n -e '\''s/^: \([^ ]*\) $/ {\"\1\", (lt_ptr) 0},/p'\'' -e '\''s/^[BCDEGRST] \([^ ]*\) \([^ ]*\)$/ {"\2", (lt_ptr) \&\2},/p'\'''
lt_cv_sys_global_symbol_to_cdecl='sed -n -e '\''s/^. .* \(.*\)$/extern int \1;/p'\'''
lt_cv_sys_max_cmd_len=32768
lt_lt_cv_prog_compiler_c_o='"yes"'
lt_lt_cv_prog_compiler_c_o_CXX='"yes"'
lt_lt_cv_sys_global_symbol_pipe='"sed -n -e '\''s/^.*[ ]\\([ABCDGIRSTW][ABCDGIRSTW]*\\)[ ][ ]*\\([_A-Za-z][_A-Za-z0-9]*\\)\$/\\1 \\2 \\2/p'\''"'
lt_lt_cv_sys_global_symbol_to_c_name_address='"sed -n -e '\''s/^: \\([^ ]*\\) \$/ {\\\"\\1\\\", (lt_ptr) 0},/p'\'' -e '\''s/^[BCDEGRST] \\([^ ]*\\) \\([^ ]*\\)\$/ {\"\\2\", (lt_ptr) \\&\\2},/p'\''"'
lt_lt_cv_sys_global_symbol_to_cdecl='"sed -n -e '\''s/^. .* \\(.*\\)\$/extern int \\1;/p'\''"'
pkg_cv_TEG_COMMONLIBS_CFLAGS='-I/opt/gnome/include/glib-2.0 -I/opt/gnome/lib/glib-2.0/include '
pkg_cv_TEG_COMMONLIBS_LIBS='-L/opt/gnome/lib -lglib-2.0 '
pkg_cv_TEG_LIBGNOME_CFLAGS='-DORBIT2=1 -pthread -I/usr/include/libart-2.0 -I/usr/include/cairo -I/usr/include/freetype2 -I/usr/X11R6/include -I/usr/include/libpng12 -I/usr/include/libxml2 -I/opt/gnome/include/libgnomeui-2.0 -I/opt/gnome/include/libgnome-2.0 -I/opt/gnome/include/libgnomecanvas-2.0 -I/opt/gnome/include/gtk-2.0 -I/opt/gnome/include/gconf/2 -I/opt/gnome/include/libbonoboui-2.0 -I/opt/gnome/include/gnome-vfs-2.0 -I/opt/gnome/lib/gnome-vfs-2.0/include -I/opt/gnome/include/gnome-keyring-1 -I/opt/gnome/include/glib-2.0 -I/opt/gnome/lib/glib-2.0/include -I/opt/gnome/include/orbit-2.0 -I/opt/gnome/include/libbonobo-2.0 -I/opt/gnome/include/bonobo-activation-2.0 -I/opt/gnome/include/pango-1.0 -I/opt/gnome/lib/gtk-2.0/include -I/opt/gnome/include/atk-1.0 '
pkg_cv_TEG_LIBGNOME_LIBS='-Wl,--export-dynamic -pthread -L/usr/X11R6/lib -L/opt/gnome/lib -lgnomeui-2 -lSM -lICE -lbonoboui-2 -lgnome-keyring -lxml2 -lgnomecanvas-2 -lgnome-2 -lpopt -lart_lgpl_2 -lpangoft2-1.0 -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgdk_pixbuf-2.0 -lpangocairo-1.0 -lpango-1.0 -lcairo -lgobject-2.0 -lfreetype -lfontconfig -lXrender -lX11 -lXext -lpng12 -lz -lglitz -lgnomevfs-2 -lbonobo-2 -lgconf-2 -lbonobo-activation -lORBit-2 -lm -lgmodule-2.0 -ldl -lgthread-2.0 -lglib-2.0 '
pkg_cv_XML_CFLAGS='-I/usr/include/libxml2 '
pkg_cv_XML_LIBS='-lxml2 -lz -lm '
## ----------------- ##
## Output variables. ##
## ----------------- ##
ACLOCAL='${SHELL} /home/nordi/.eclipse/teg-0.11.2/missing --run aclocal-1.9'
AMDEPBACKSLASH='\'
AMDEP_FALSE='#'
AMDEP_TRUE=''
AMTAR='${SHELL} /home/nordi/.eclipse/teg-0.11.2/missing --run tar'
AR='ar'
AUTOCONF='${SHELL} /home/nordi/.eclipse/teg-0.11.2/missing --run autoconf'
AUTOHEADER='${SHELL} /home/nordi/.eclipse/teg-0.11.2/missing --run autoheader'
AUTOMAKE='${SHELL} /home/nordi/.eclipse/teg-0.11.2/missing --run automake-1.9'
AWK='gawk'
CATALOGS=' es.gmo fr.gmo de.gmo gl.gmo pl.gmo it.gmo pt.gmo pt_BR.gmo hu_HU.gmo'
CATOBJEXT='.gmo'
CC='gcc'
CCDEPMODE='depmode=gcc3'
CFLAGS='-g -O2 -Wall'
CLIENT_CFLAGS=' -I/opt/gnome/include/glib-2.0 -I/opt/gnome/lib/glib-2.0/include '
CLIENT_FALSE='#'
CLIENT_GUI_GNOME_FALSE='#'
CLIENT_GUI_GNOME_TRUE=''
CLIENT_GUI_NULL_FALSE=''
CLIENT_GUI_NULL_TRUE='#'
CLIENT_LIBS=' -L/opt/gnome/lib -lglib-2.0 '
CLIENT_TRUE=''
CPP='gcc -E'
CPPFLAGS=' -isystem /usr/local/include -isystem /usr/local/include'
CXX='g++'
CXXCPP='g++ -E'
CXXDEPMODE='depmode=gcc3'
CXXFLAGS='-g -O2'
CYGPATH_W='echo'
DATADIRNAME='share'
DEFS='-DHAVE_CONFIG_H'
DEPDIR='.deps'
ECHO='echo'
ECHO_C=''
ECHO_N='-n'
ECHO_T=''
EGREP='grep -E'
EXEEXT=''
F77=''
FFLAGS=''
GCONFTOOL='/opt/gnome/bin/gconftool-2'
GCONF_CONFIG_SOURCE='xml::/etc/opt/gnome/gconf/gconf.xml.defaults'
GETTEXT_PACKAGE='teg'
GGZDMOD_INCLUDES=''
GGZDMOD_LDFLAGS=''
GGZMOD_INCLUDES=''
GGZMOD_LDFLAGS=''
GGZSUPPORT_FALSE=''
GGZSUPPORT_TRUE='#'
GGZ_CONFIG=''
GMOFILES=' es.gmo fr.gmo de.gmo gl.gmo pl.gmo it.gmo pt.gmo pt_BR.gmo hu_HU.gmo'
GMSGFMT='/usr/bin/msgfmt'
INSTALL_DATA='${INSTALL} -m 644'
INSTALL_GCONF_CONFIG_SOURCE=''
INSTALL_PROGRAM='${INSTALL}'
INSTALL_SCRIPT='${INSTALL}'
INSTALL_STRIP_PROGRAM='${SHELL} $(install_sh) -c -s'
INSTOBJEXT='.mo'
INTLLIBS=''
INTLTOOL_CAVES_RULE='%.caves: %.caves.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@'
INTLTOOL_DESKTOP_RULE='%.desktop: %.desktop.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@'
INTLTOOL_DIRECTORY_RULE='%.directory: %.directory.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@'
INTLTOOL_EXTRACT='$(top_builddir)/intltool-extract'
INTLTOOL_ICONV='/usr/bin/iconv'
INTLTOOL_KBD_RULE='%.kbd: %.kbd.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u -m -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@'
INTLTOOL_KEYS_RULE='%.keys: %.keys.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -k -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@'
INTLTOOL_MERGE='$(top_builddir)/intltool-merge'
INTLTOOL_MSGFMT='/usr/bin/msgfmt'
INTLTOOL_MSGMERGE='/usr/bin/msgmerge'
INTLTOOL_OAF_RULE='%.oaf: %.oaf.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -o -p $(top_srcdir)/po $< $@'
INTLTOOL_PERL='/usr/bin/perl'
INTLTOOL_PONG_RULE='%.pong: %.pong.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@'
INTLTOOL_PROP_RULE='%.prop: %.prop.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@'
INTLTOOL_SCHEMAS_RULE='%.schemas: %.schemas.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -s -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@'
INTLTOOL_SERVER_RULE='%.server: %.server.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -o -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@'
INTLTOOL_SHEET_RULE='%.sheet: %.sheet.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@'
INTLTOOL_SOUNDLIST_RULE='%.soundlist: %.soundlist.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@'
INTLTOOL_THEME_RULE='%.theme: %.theme.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -d -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@'
INTLTOOL_UI_RULE='%.ui: %.ui.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@'
INTLTOOL_UPDATE='$(top_builddir)/intltool-update'
INTLTOOL_XAM_RULE='%.xam: %.xml.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@'
INTLTOOL_XGETTEXT='/usr/bin/xgettext'
INTLTOOL_XML_NOMERGE_RULE='%.xml: %.xml.in $(INTLTOOL_MERGE) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u /tmp $< $@'
INTLTOOL_XML_RULE='%.xml: %.xml.in $(INTLTOOL_MERGE) $(wildcard $(top_srcdir)/po/*.po) ; LC_ALL=C $(INTLTOOL_MERGE) -x -u -c $(top_builddir)/po/.intltool-merge-cache $(top_srcdir)/po $< $@'
LDFLAGS=' -L/usr/local/lib -L/usr/local/lib'
LIBOBJS=''
LIBS=''
LIBTOOL='$(SHELL) $(top_builddir)/libtool'
LIB_GGZDMOD=''
LIB_GGZMOD=''
LN_S='ln -s'
LTLIBOBJS=''
MAINT=''
MAINTAINER_MODE_FALSE='#'
MAINTAINER_MODE_TRUE=''
MAKEINFO='${SHELL} /home/nordi/.eclipse/teg-0.11.2/missing --run makeinfo'
MSGFMT='/usr/bin/msgfmt'
OBJEXT='o'
PACKAGE='teg'
PACKAGE_BUGREPORT='teg-list@lists.sourceforge.net'
PACKAGE_NAME='Tenes Empanadas Graciela'
PACKAGE_STRING='Tenes Empanadas Graciela 0.11.2'
PACKAGE_TARNAME='teg'
PACKAGE_VERSION='0.11.2'
PATH_SEPARATOR=':'
PKG_CONFIG='/usr/bin/pkg-config'
POFILES=' es.po fr.po de.po gl.po pl.po it.po pt.po pt_BR.po hu_HU.po'
POSUB='po'
PO_IN_DATADIR_FALSE=''
PO_IN_DATADIR_TRUE=''
RANLIB='ranlib'
ROBOT_FALSE='#'
ROBOT_TRUE=''
SERVER_CFLAGS='-D_REENTRANT -I/opt/gnome/include/glib-2.0 -I/opt/gnome/lib/glib-2.0/include '
SERVER_FALSE='#'
SERVER_LIBS='-lreadline -lpthread -L/opt/gnome/lib -lglib-2.0 '
SERVER_TRUE=''
SET_MAKE=''
SHELL='/bin/sh'
STRIP='strip'
TEG_COMMONLIBS_CFLAGS='-I/opt/gnome/include/glib-2.0 -I/opt/gnome/lib/glib-2.0/include '
TEG_COMMONLIBS_LIBS='-L/opt/gnome/lib -lglib-2.0 '
TEG_LIBGNOME_CFLAGS='-DORBIT2=1 -pthread -I/usr/include/libart-2.0 -I/usr/include/cairo -I/usr/include/freetype2 -I/usr/X11R6/include -I/usr/include/libpng12 -I/usr/include/libxml2 -I/opt/gnome/include/libgnomeui-2.0 -I/opt/gnome/include/libgnome-2.0 -I/opt/gnome/include/libgnomecanvas-2.0 -I/opt/gnome/include/gtk-2.0 -I/opt/gnome/include/gconf/2 -I/opt/gnome/include/libbonoboui-2.0 -I/opt/gnome/include/gnome-vfs-2.0 -I/opt/gnome/lib/gnome-vfs-2.0/include -I/opt/gnome/include/gnome-keyring-1 -I/opt/gnome/include/glib-2.0 -I/opt/gnome/lib/glib-2.0/include -I/opt/gnome/include/orbit-2.0 -I/opt/gnome/include/libbonobo-2.0 -I/opt/gnome/include/bonobo-activation-2.0 -I/opt/gnome/include/pango-1.0 -I/opt/gnome/lib/gtk-2.0/include -I/opt/gnome/include/atk-1.0 '
TEG_LIBGNOME_LIBS='-Wl,--export-dynamic -pthread -L/usr/X11R6/lib -L/opt/gnome/lib -lgnomeui-2 -lSM -lICE -lbonoboui-2 -lgnome-keyring -lxml2 -lgnomecanvas-2 -lgnome-2 -lpopt -lart_lgpl_2 -lpangoft2-1.0 -lgtk-x11-2.0 -lgdk-x11-2.0 -latk-1.0 -lgdk_pixbuf-2.0 -lpangocairo-1.0 -lpango-1.0 -lcairo -lgobject-2.0 -lfreetype -lfontconfig -lXrender -lX11 -lXext -lpng12 -lz -lglitz -lgnomevfs-2 -lbonobo-2 -lgconf-2 -lbonobo-activation -lORBit-2 -lm -lgmodule-2.0 -ldl -lgthread-2.0 -lglib-2.0 '
USE_NLS='yes'
VERSION='0.11.2'
XGETTEXT='/usr/bin/xgettext'
XML_CFLAGS='-I/usr/include/libxml2 '
XML_LIBS='-lxml2 -lz -lm '
ac_ct_AR='ar'
ac_ct_CC='gcc'
ac_ct_CXX='g++'
ac_ct_F77=''
ac_ct_RANLIB='ranlib'
ac_ct_STRIP='strip'
ac_pt_PKG_CONFIG='/usr/bin/pkg-config'
am__fastdepCC_FALSE='#'
am__fastdepCC_TRUE=''
am__fastdepCXX_FALSE='#'
am__fastdepCXX_TRUE=''
am__include='include'
am__leading_dot='.'
am__quote=''
am__tar='${AMTAR} chof - "$$tardir"'
am__untar='${AMTAR} xf -'
bindir='${exec_prefix}/bin'
build='i686-suse-linux'
build_alias=''
build_cpu='i686'
build_os='linux'
build_vendor='suse'
datadir='${prefix}/share'
exec_prefix='${prefix}'
ggz_config=''
ggzdatadir=''
ggzdconfdir='NONE'
ggzddatadir=''
ggzdexecmoddir=''
ggzdexecmodpath=''
ggzdmod_includes=''
ggzdmod_libraries=''
ggzexecmoddir=''
ggzmod_includes=''
ggzmod_libraries=''
ggzmoduleconfdir=''
gui_sources='gui-gnome'
host='i686-suse-linux'
host_alias=''
host_cpu='i686'
host_os='linux'
host_vendor='suse'
includedir='${prefix}/include'
infodir='${prefix}/info'
install_sh='/home/nordi/.eclipse/teg-0.11.2/install-sh'
libdir='${exec_prefix}/lib'
libexecdir='${exec_prefix}/libexec'
localstatedir='${prefix}/var'
mandir='${prefix}/man'
mkdir_p='mkdir -p --'
oldincludedir='/usr/include'
packagesrcdir=''
prefix='/usr/local'
program_transform_name='s,x,x,'
sbindir='${exec_prefix}/sbin'
sharedstatedir='${prefix}/com'
sysconfdir='${prefix}/etc'
target_alias=''
## ----------- ##
## confdefs.h. ##
## ----------- ##
#define ENABLE_NLS 1
#define GETTEXT_PACKAGE "teg"
#define HAVE_ARPA_INET_H 1
#define HAVE_BIND_TEXTDOMAIN_CODESET 1
#define HAVE_DCGETTEXT 1
#define HAVE_DLFCN_H 1
#define HAVE_FDOPEN 1
#define HAVE_GETHOSTNAME 1
#define HAVE_GETPWUID 1
#define HAVE_GETTEXT 1
#define HAVE_GETTIMEOFDAY 1
#define HAVE_INET_NTOP 1
#define HAVE_INTTYPES_H 1
#define HAVE_LC_MESSAGES 1
#define HAVE_LIBREADLINE 1
#define HAVE_LOCALE_H 1
#define HAVE_MEMORY_H 1
#define HAVE_NETDB_H 1
#define HAVE_NETINET_IN_H 1
#define HAVE_PTHREADS 1
#define HAVE_PWD_H 1
#define HAVE_SELECT 1
#define HAVE_STDINT_H 1
#define HAVE_STDLIB_H 1
#define HAVE_STRERROR 1
#define HAVE_STRINGS_H 1
#define HAVE_STRING_H 1
#define HAVE_STRSTR 1
#define HAVE_SYS_IOCTL_H 1
#define HAVE_SYS_SELECT_H 1
#define HAVE_SYS_SIGNAL_H 1
#define HAVE_SYS_SOCKET_H 1
#define HAVE_SYS_STAT_H 1
#define HAVE_SYS_TIME_H 1
#define HAVE_SYS_TYPES_H 1
#define HAVE_SYS_TYPES_H 1
#define HAVE_SYS_UIO_H 1
#define HAVE_TERMIOS_H 1
#define HAVE_UNISTD_H 1
#define HAVE_UNISTD_H 1
#define HAVE_USLEEP 1
#define HAVE_VPRINTF 1
#define HAVE_VSNPRINTF 1
#define LOCALEDIR "/usr/local/share/locale"
#define PACKAGE "teg"
#define PACKAGE_BUGREPORT "teg-list@lists.sourceforge.net"
#define PACKAGE_NAME "Tenes Empanadas Graciela"
#define PACKAGE_STRING "Tenes Empanadas Graciela 0.11.2"
#define PACKAGE_TARNAME "teg"
#define PACKAGE_VERSION "0.11.2"
#define PREFIX "/usr/local"
#define RETSIGTYPE void
#define STDC_HEADERS 1
#define STDC_HEADERS 1
#define TIME_WITH_SYS_TIME 1
#define VERSION "0.11.2"
#endif
#ifdef __cplusplus
extern "C" void std::exit (int) throw (); using std::exit;
configure: exit 0
|