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
|
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.
It was created by Rivet configure 0.5.0, which was
generated by GNU Autoconf 2.59. Invocation command line was
$ ./configure --with-tcl=/usr/lib/tcl8.4/ --with-apxs=/usr/bin/apxs --enable-threads --with-tclsh=/usr/bin/tclsh8.4
## --------- ##
## Platform. ##
## --------- ##
hostname = ashland
uname -m = ppc
uname -r = 2.6.6
uname -s = Linux
uname -v = #17 Tue May 18 18:32:55 CEST 2004
/usr/bin/uname -p = unknown
/bin/uname -X = unknown
/bin/arch = ppc
/usr/bin/arch -k = unknown
/usr/convex/getsysinfo = unknown
hostinfo = unknown
/bin/machine = unknown
/usr/bin/oslevel = unknown
/bin/universe = unknown
PATH: ~/bin/
PATH: /usr/local/bin
PATH: /usr/bin
PATH: /bin
PATH: /usr/bin/X11
PATH: /usr/games
PATH: /sbin/
PATH: /usr/sbin/
## ----------- ##
## Core tests. ##
## ----------- ##
configure:1531: checking for correct TEA configuration
configure:1550: result: ok (TEA 3.1)
configure:1697: checking for a BSD-compatible install
configure:1752: result: /usr/bin/install -c
configure:1763: checking whether build environment is sane
configure:1806: result: yes
configure:1863: checking for gawk
configure:1879: found /usr/bin/gawk
configure:1889: result: gawk
configure:1899: checking whether make sets $(MAKE)
configure:1919: result: yes
configure:2105: checking for Tcl configuration
configure:2177: result: found /usr/lib/tcl8.4/tclConfig.sh
configure:2183: checking for existence of /usr/lib/tcl8.4/tclConfig.sh
configure:2187: result: loading
configure:2260: --prefix defaulting to TCL_PREFIX /usr
configure:2272: --exec-prefix defaulting to TCL_EXEC_PREFIX /usr
configure:2302: checking for style of include used by make
configure:2330: result: GNU
configure:2411: checking for gcc
configure:2427: found /usr/bin/gcc
configure:2437: result: gcc
configure:2681: checking for C compiler version
configure:2684: gcc --version </dev/null >&5
gcc (GCC) 3.3.5 (Debian 1:3.3.5-8)
Copyright (C) 2003 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:2687: $? = 0
configure:2689: gcc -v </dev/null >&5
Reading specs from /usr/lib/gcc-lib/powerpc-linux/3.3.5/specs
Configured with: ../src/configure -v --enable-languages=c,c++,java,f77,pascal,objc,ada --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info --with-gxx-include-dir=/usr/include/c++/3.3 --enable-shared --with-system-zlib --enable-nls --without-included-gettext --enable-__cxa_atexit --enable-clocale=gnu --enable-debug --enable-java-gc=boehm --enable-java-awt=xlib --enable-objc-gc --disable-multilib powerpc-linux
Thread model: posix
gcc version 3.3.5 (Debian 1:3.3.5-8)
configure:2692: $? = 0
configure:2694: gcc -V </dev/null >&5
gcc: `-V' option must have argument
configure:2697: $? = 1
configure:2720: checking for C compiler default output file name
configure:2723: gcc conftest.c >&5
configure:2726: $? = 0
configure:2772: result: a.out
configure:2777: checking whether the C compiler works
configure:2783: ./a.out
configure:2786: $? = 0
configure:2803: result: yes
configure:2810: checking whether we are cross compiling
configure:2812: result: no
configure:2815: checking for suffix of executables
configure:2817: gcc -o conftest conftest.c >&5
configure:2820: $? = 0
configure:2845: result:
configure:2851: checking for suffix of object files
configure:2872: gcc -c conftest.c >&5
configure:2875: $? = 0
configure:2897: result: o
configure:2901: checking whether we are using the GNU C compiler
configure:2925: gcc -c conftest.c >&5
configure:2931: $? = 0
configure:2934: test -z || test ! -s conftest.err
configure:2937: $? = 0
configure:2940: test -s conftest.o
configure:2943: $? = 0
configure:2956: result: yes
configure:2962: checking whether gcc accepts -g
configure:2983: gcc -c -g conftest.c >&5
configure:2989: $? = 0
configure:2992: test -z || test ! -s conftest.err
configure:2995: $? = 0
configure:2998: test -s conftest.o
configure:3001: $? = 0
configure:3012: result: yes
configure:3029: checking for gcc option to accept ANSI C
configure:3099: gcc -c conftest.c >&5
configure:3105: $? = 0
configure:3108: test -z || test ! -s conftest.err
configure:3111: $? = 0
configure:3114: test -s conftest.o
configure:3117: $? = 0
configure:3135: result: none needed
configure:3153: gcc -c conftest.c >&5
conftest.c:2: error: syntax error before "me"
configure:3159: $? = 1
configure: failed program was:
| #ifndef __cplusplus
| choke me
| #endif
configure:3291: checking dependency style of gcc
configure:3381: result: gcc3
configure:3403: checking how to run the C preprocessor
configure:3438: gcc -E conftest.c
configure:3444: $? = 0
configure:3476: gcc -E conftest.c
conftest.c:11:28: ac_nonexistent.h: No such file or directory
configure:3482: $? = 1
configure: failed program was:
| /* confdefs.h. */
|
| #define PACKAGE_NAME "Rivet"
| #define PACKAGE_TARNAME "rivet"
| #define PACKAGE_VERSION "0.5.0"
| #define PACKAGE_STRING "Rivet 0.5.0"
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE "rivet"
| #define VERSION "0.5.0"
| /* end confdefs.h. */
| #include <ac_nonexistent.h>
configure:3521: result: gcc -E
configure:3545: gcc -E conftest.c
configure:3551: $? = 0
configure:3583: gcc -E conftest.c
conftest.c:11:28: ac_nonexistent.h: No such file or directory
configure:3589: $? = 1
configure: failed program was:
| /* confdefs.h. */
|
| #define PACKAGE_NAME "Rivet"
| #define PACKAGE_TARNAME "rivet"
| #define PACKAGE_VERSION "0.5.0"
| #define PACKAGE_STRING "Rivet 0.5.0"
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE "rivet"
| #define VERSION "0.5.0"
| /* end confdefs.h. */
| #include <ac_nonexistent.h>
configure:3646: checking for a BSD-compatible install
configure:3701: result: /usr/bin/install -c
configure:3717: checking whether make sets $(MAKE)
configure:3737: result: yes
configure:3792: checking for ranlib
configure:3808: found /usr/bin/ranlib
configure:3819: result: ranlib
configure:3841: checking for egrep
configure:3851: result: grep -E
configure:3856: checking for ANSI C header files
configure:3881: gcc -c conftest.c >&5
configure:3887: $? = 0
configure:3890: test -z || test ! -s conftest.err
configure:3893: $? = 0
configure:3896: test -s conftest.o
configure:3899: $? = 0
configure:3985: gcc -o conftest conftest.c >&5
configure:3988: $? = 0
configure:3990: ./conftest
configure:3993: $? = 0
configure:4008: result: yes
configure:4032: checking for sys/types.h
configure:4048: gcc -c conftest.c >&5
configure:4054: $? = 0
configure:4057: test -z || test ! -s conftest.err
configure:4060: $? = 0
configure:4063: test -s conftest.o
configure:4066: $? = 0
configure:4077: result: yes
configure:4032: checking for sys/stat.h
configure:4048: gcc -c conftest.c >&5
configure:4054: $? = 0
configure:4057: test -z || test ! -s conftest.err
configure:4060: $? = 0
configure:4063: test -s conftest.o
configure:4066: $? = 0
configure:4077: result: yes
configure:4032: checking for stdlib.h
configure:4048: gcc -c conftest.c >&5
configure:4054: $? = 0
configure:4057: test -z || test ! -s conftest.err
configure:4060: $? = 0
configure:4063: test -s conftest.o
configure:4066: $? = 0
configure:4077: result: yes
configure:4032: checking for string.h
configure:4048: gcc -c conftest.c >&5
configure:4054: $? = 0
configure:4057: test -z || test ! -s conftest.err
configure:4060: $? = 0
configure:4063: test -s conftest.o
configure:4066: $? = 0
configure:4077: result: yes
configure:4032: checking for memory.h
configure:4048: gcc -c conftest.c >&5
configure:4054: $? = 0
configure:4057: test -z || test ! -s conftest.err
configure:4060: $? = 0
configure:4063: test -s conftest.o
configure:4066: $? = 0
configure:4077: result: yes
configure:4032: checking for strings.h
configure:4048: gcc -c conftest.c >&5
configure:4054: $? = 0
configure:4057: test -z || test ! -s conftest.err
configure:4060: $? = 0
configure:4063: test -s conftest.o
configure:4066: $? = 0
configure:4077: result: yes
configure:4032: checking for inttypes.h
configure:4048: gcc -c conftest.c >&5
configure:4054: $? = 0
configure:4057: test -z || test ! -s conftest.err
configure:4060: $? = 0
configure:4063: test -s conftest.o
configure:4066: $? = 0
configure:4077: result: yes
configure:4032: checking for stdint.h
configure:4048: gcc -c conftest.c >&5
configure:4054: $? = 0
configure:4057: test -z || test ! -s conftest.err
configure:4060: $? = 0
configure:4063: test -s conftest.o
configure:4066: $? = 0
configure:4077: result: yes
configure:4032: checking for unistd.h
configure:4048: gcc -c conftest.c >&5
configure:4054: $? = 0
configure:4057: test -z || test ! -s conftest.err
configure:4060: $? = 0
configure:4063: test -s conftest.o
configure:4066: $? = 0
configure:4077: result: yes
configure:4099: checking if the compiler understands -pipe
configure:4119: gcc -pipe -c conftest.c >&5
configure:4125: $? = 0
configure:4128: test -z || test ! -s conftest.err
configure:4131: $? = 0
configure:4134: test -s conftest.o
configure:4137: $? = 0
configure:4139: result: yes
configure:4156: checking whether byte ordering is bigendian
configure:4183: gcc -pipe -c conftest.c >&5
configure:4189: $? = 0
configure:4192: test -z || test ! -s conftest.err
configure:4195: $? = 0
configure:4198: test -s conftest.o
configure:4201: $? = 0
configure:4225: gcc -pipe -c conftest.c >&5
configure:4231: $? = 0
configure:4234: test -z || test ! -s conftest.err
configure:4237: $? = 0
configure:4240: test -s conftest.o
configure:4243: $? = 0
configure:4364: result: yes
configure:4392: checking for sin
configure:4449: gcc -pipe -o conftest conftest.c >&5
conftest.c:46: warning: conflicting types for built-in function `sin'
/tmp/ccgPC5pS.o(.text+0x16): In function `main':
: undefined reference to `sin'
/tmp/ccgPC5pS.o(.text+0x1a): In function `main':
: undefined reference to `sin'
/tmp/ccgPC5pS.o(.sdata+0x0): undefined reference to `sin'
collect2: ld returned 1 exit status
configure:4455: $? = 1
configure: failed program was:
| /* confdefs.h. */
|
| #define PACKAGE_NAME "Rivet"
| #define PACKAGE_TARNAME "rivet"
| #define PACKAGE_VERSION "0.5.0"
| #define PACKAGE_STRING "Rivet 0.5.0"
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE "rivet"
| #define VERSION "0.5.0"
| #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 WORDS_BIGENDIAN 1
| /* end confdefs.h. */
| /* Define sin to an innocuous variant, in case <limits.h> declares sin.
| For example, HP-UX 11i <limits.h> declares gettimeofday. */
| #define sin innocuous_sin
|
| /* System header to define __stub macros and hopefully few prototypes,
| which can conflict with char sin (); 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 sin
|
| /* 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 sin ();
| /* 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_sin) || defined (__stub___sin)
| choke me
| #else
| char (*f) () = sin;
| #endif
| #ifdef __cplusplus
| }
| #endif
|
| int
| main ()
| {
| return f != sin;
| ;
| return 0;
| }
configure:4479: result: no
configure:4487: checking for main in -lieee
configure:4511: gcc -pipe -o conftest conftest.c -lieee >&5
configure:4517: $? = 0
configure:4520: test -z || test ! -s conftest.err
configure:4523: $? = 0
configure:4526: test -s conftest
configure:4529: $? = 0
configure:4542: result: yes
configure:4554: checking for main in -linet
configure:4578: gcc -pipe -o conftest conftest.c -linet >&5
/usr/bin/ld: cannot find -linet
collect2: ld returned 1 exit status
configure:4584: $? = 1
configure: failed program was:
| /* confdefs.h. */
|
| #define PACKAGE_NAME "Rivet"
| #define PACKAGE_TARNAME "rivet"
| #define PACKAGE_VERSION "0.5.0"
| #define PACKAGE_STRING "Rivet 0.5.0"
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE "rivet"
| #define VERSION "0.5.0"
| #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 WORDS_BIGENDIAN 1
| /* end confdefs.h. */
|
|
| int
| main ()
| {
| main ();
| ;
| return 0;
| }
configure:4609: result: no
configure:4625: checking net/errno.h usability
configure:4637: gcc -pipe -c conftest.c >&5
conftest.c:56:23: net/errno.h: No such file or directory
configure:4643: $? = 1
configure: failed program was:
| /* confdefs.h. */
|
| #define PACKAGE_NAME "Rivet"
| #define PACKAGE_TARNAME "rivet"
| #define PACKAGE_VERSION "0.5.0"
| #define PACKAGE_STRING "Rivet 0.5.0"
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE "rivet"
| #define VERSION "0.5.0"
| #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 WORDS_BIGENDIAN 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 <net/errno.h>
configure:4665: result: no
configure:4669: checking net/errno.h presence
configure:4679: gcc -E conftest.c
conftest.c:22:23: net/errno.h: No such file or directory
configure:4685: $? = 1
configure: failed program was:
| /* confdefs.h. */
|
| #define PACKAGE_NAME "Rivet"
| #define PACKAGE_TARNAME "rivet"
| #define PACKAGE_VERSION "0.5.0"
| #define PACKAGE_STRING "Rivet 0.5.0"
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE "rivet"
| #define VERSION "0.5.0"
| #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 WORDS_BIGENDIAN 1
| /* end confdefs.h. */
| #include <net/errno.h>
configure:4705: result: no
configure:4740: checking for net/errno.h
configure:4747: result: no
configure:4780: checking for connect
configure:4837: gcc -pipe -o conftest conftest.c >&5
configure:4843: $? = 0
configure:4846: test -z || test ! -s conftest.err
configure:4849: $? = 0
configure:4852: test -s conftest
configure:4855: $? = 0
configure:4867: result: yes
configure:5139: checking for gethostbyname
configure:5196: gcc -pipe -o conftest conftest.c >&5
configure:5202: $? = 0
configure:5205: test -z || test ! -s conftest.err
configure:5208: $? = 0
configure:5211: test -s conftest
configure:5214: $? = 0
configure:5226: result: yes
configure:5309: checking dirent.h
configure:5346: gcc -pipe -o conftest conftest.c >&5
configure:5352: $? = 0
configure:5355: test -z || test ! -s conftest.err
configure:5358: $? = 0
configure:5361: test -s conftest
configure:5364: $? = 0
configure:5384: result: yes
configure:5396: checking errno.h usability
configure:5408: gcc -pipe -c conftest.c >&5
configure:5414: $? = 0
configure:5417: test -z || test ! -s conftest.err
configure:5420: $? = 0
configure:5423: test -s conftest.o
configure:5426: $? = 0
configure:5436: result: yes
configure:5440: checking errno.h presence
configure:5450: gcc -E conftest.c
configure:5456: $? = 0
configure:5476: result: yes
configure:5511: checking for errno.h
configure:5518: result: yes
configure:5543: checking float.h usability
configure:5555: gcc -pipe -c conftest.c >&5
configure:5561: $? = 0
configure:5564: test -z || test ! -s conftest.err
configure:5567: $? = 0
configure:5570: test -s conftest.o
configure:5573: $? = 0
configure:5583: result: yes
configure:5587: checking float.h presence
configure:5597: gcc -E conftest.c
configure:5603: $? = 0
configure:5623: result: yes
configure:5658: checking for float.h
configure:5665: result: yes
configure:5690: checking values.h usability
configure:5702: gcc -pipe -c conftest.c >&5
configure:5708: $? = 0
configure:5711: test -z || test ! -s conftest.err
configure:5714: $? = 0
configure:5717: test -s conftest.o
configure:5720: $? = 0
configure:5730: result: yes
configure:5734: checking values.h presence
configure:5744: gcc -E conftest.c
configure:5750: $? = 0
configure:5770: result: yes
configure:5805: checking for values.h
configure:5812: result: yes
configure:5837: checking limits.h usability
configure:5849: gcc -pipe -c conftest.c >&5
configure:5855: $? = 0
configure:5858: test -z || test ! -s conftest.err
configure:5861: $? = 0
configure:5864: test -s conftest.o
configure:5867: $? = 0
configure:5877: result: yes
configure:5881: checking limits.h presence
configure:5891: gcc -E conftest.c
configure:5897: $? = 0
configure:5917: result: yes
configure:5952: checking for limits.h
configure:5959: result: yes
configure:5979: checking for stdlib.h
configure:5984: result: yes
configure:6180: checking for string.h
configure:6185: result: yes
configure:6378: checking sys/wait.h usability
configure:6390: gcc -pipe -c conftest.c >&5
configure:6396: $? = 0
configure:6399: test -z || test ! -s conftest.err
configure:6402: $? = 0
configure:6405: test -s conftest.o
configure:6408: $? = 0
configure:6418: result: yes
configure:6422: checking sys/wait.h presence
configure:6432: gcc -E conftest.c
configure:6438: $? = 0
configure:6458: result: yes
configure:6493: checking for sys/wait.h
configure:6500: result: yes
configure:6525: checking dlfcn.h usability
configure:6537: gcc -pipe -c conftest.c >&5
configure:6543: $? = 0
configure:6546: test -z || test ! -s conftest.err
configure:6549: $? = 0
configure:6552: test -s conftest.o
configure:6555: $? = 0
configure:6565: result: yes
configure:6569: checking dlfcn.h presence
configure:6579: gcc -E conftest.c
configure:6585: $? = 0
configure:6605: result: yes
configure:6640: checking for dlfcn.h
configure:6647: result: yes
configure:6678: checking sys/param.h usability
configure:6690: gcc -pipe -c conftest.c >&5
configure:6696: $? = 0
configure:6699: test -z || test ! -s conftest.err
configure:6702: $? = 0
configure:6705: test -s conftest.o
configure:6708: $? = 0
configure:6718: result: yes
configure:6722: checking sys/param.h presence
configure:6732: gcc -E conftest.c
configure:6738: $? = 0
configure:6758: result: yes
configure:6793: checking for sys/param.h
configure:6800: result: yes
configure:6882: checking build system type
configure:6900: result: powerpc-unknown-linux-gnu
configure:6908: checking host system type
configure:6922: result: powerpc-unknown-linux-gnu
configure:6930: checking for a sed that does not truncate output
configure:6984: result: /bin/sed
configure:6998: checking for ld used by gcc -pipe
configure:7065: result: /usr/bin/ld
configure:7074: checking if the linker (/usr/bin/ld) is GNU ld
configure:7089: result: yes
configure:7094: checking for /usr/bin/ld option to reload object files
configure:7101: result: -r
configure:7119: checking for BSD-compatible nm
configure:7161: result: /usr/bin/nm -B
configure:7165: checking whether ln -s works
configure:7169: result: yes
configure:7176: checking how to recognise dependent libraries
configure:7348: result: pass_all
configure:7430: gcc -pipe -c conftest.c >&5
configure:7433: $? = 0
configure:7558: checking for dlfcn.h
configure:7563: result: yes
configure:7754: checking for g++
configure:7770: found /usr/bin/g++
configure:7780: result: g++
configure:7796: checking for C++ compiler version
configure:7799: g++ --version </dev/null >&5
g++ (GCC) 3.3.5 (Debian 1:3.3.5-8)
Copyright (C) 2003 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:7802: $? = 0
configure:7804: g++ -v </dev/null >&5
Reading specs from /usr/lib/gcc-lib/powerpc-linux/3.3.5/specs
Configured with: ../src/configure -v --enable-languages=c,c++,java,f77,pascal,objc,ada --prefix=/usr --mandir=/usr/share/man --infodir=/usr/share/info --with-gxx-include-dir=/usr/include/c++/3.3 --enable-shared --with-system-zlib --enable-nls --without-included-gettext --enable-__cxa_atexit --enable-clocale=gnu --enable-debug --enable-java-gc=boehm --enable-java-awt=xlib --enable-objc-gc --disable-multilib powerpc-linux
Thread model: posix
gcc version 3.3.5 (Debian 1:3.3.5-8)
configure:7807: $? = 0
configure:7809: g++ -V </dev/null >&5
g++: `-V' option must have argument
configure:7812: $? = 1
configure:7815: checking whether we are using the GNU C++ compiler
configure:7839: g++ -c conftest.cc >&5
configure:7845: $? = 0
configure:7848: test -z || test ! -s conftest.err
configure:7851: $? = 0
configure:7854: test -s conftest.o
configure:7857: $? = 0
configure:7870: result: yes
configure:7876: checking whether g++ accepts -g
configure:7897: g++ -c -g conftest.cc >&5
configure:7903: $? = 0
configure:7906: test -z || test ! -s conftest.err
configure:7909: $? = 0
configure:7912: test -s conftest.o
configure:7915: $? = 0
configure:7926: result: yes
configure:7968: g++ -c -g -O2 conftest.cc >&5
configure:7974: $? = 0
configure:7977: test -z || test ! -s conftest.err
configure:7980: $? = 0
configure:7983: test -s conftest.o
configure:7986: $? = 0
configure:8012: g++ -c -g -O2 conftest.cc >&5
conftest.cc: In function `int main()':
conftest.cc:29: error: `exit' undeclared (first use this function)
conftest.cc:29: error: (Each undeclared identifier is reported only once for
each function it appears in.)
configure:8018: $? = 1
configure: failed program was:
| /* confdefs.h. */
|
| #define PACKAGE_NAME "Rivet"
| #define PACKAGE_TARNAME "rivet"
| #define PACKAGE_VERSION "0.5.0"
| #define PACKAGE_STRING "Rivet 0.5.0"
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE "rivet"
| #define VERSION "0.5.0"
| #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 WORDS_BIGENDIAN 1
| #define HAVE_LIMITS_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_DLFCN_H 1
| /* end confdefs.h. */
|
| int
| main ()
| {
| exit (42);
| ;
| return 0;
| }
configure:7968: g++ -c -g -O2 conftest.cc >&5
configure:7974: $? = 0
configure:7977: test -z || test ! -s conftest.err
configure:7980: $? = 0
configure:7983: test -s conftest.o
configure:7986: $? = 0
configure:8012: g++ -c -g -O2 conftest.cc >&5
configure:8018: $? = 0
configure:8021: test -z || test ! -s conftest.err
configure:8024: $? = 0
configure:8027: test -s conftest.o
configure:8030: $? = 0
configure:8055: checking dependency style of g++
configure:8145: result: gcc3
configure:8172: checking how to run the C++ preprocessor
configure:8203: g++ -E conftest.cc
configure:8209: $? = 0
configure:8241: g++ -E conftest.cc
conftest.cc:28:28: ac_nonexistent.h: No such file or directory
configure:8247: $? = 1
configure: failed program was:
| /* confdefs.h. */
|
| #define PACKAGE_NAME "Rivet"
| #define PACKAGE_TARNAME "rivet"
| #define PACKAGE_VERSION "0.5.0"
| #define PACKAGE_STRING "Rivet 0.5.0"
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE "rivet"
| #define VERSION "0.5.0"
| #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 WORDS_BIGENDIAN 1
| #define HAVE_LIMITS_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_DLFCN_H 1
| #ifdef __cplusplus
| extern "C" void std::exit (int) throw (); using std::exit;
| #endif
| /* end confdefs.h. */
| #include <ac_nonexistent.h>
configure:8286: result: g++ -E
configure:8310: g++ -E conftest.cc
configure:8316: $? = 0
configure:8348: g++ -E conftest.cc
conftest.cc:28:28: ac_nonexistent.h: No such file or directory
configure:8354: $? = 1
configure: failed program was:
| /* confdefs.h. */
|
| #define PACKAGE_NAME "Rivet"
| #define PACKAGE_TARNAME "rivet"
| #define PACKAGE_VERSION "0.5.0"
| #define PACKAGE_STRING "Rivet 0.5.0"
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE "rivet"
| #define VERSION "0.5.0"
| #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 WORDS_BIGENDIAN 1
| #define HAVE_LIMITS_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_DLFCN_H 1
| #ifdef __cplusplus
| extern "C" void std::exit (int) throw (); using std::exit;
| #endif
| /* end confdefs.h. */
| #include <ac_nonexistent.h>
configure:8451: checking for g77
configure:8480: result: no
configure:8451: checking for f77
configure:8480: result: no
configure:8451: checking for xlf
configure:8480: result: no
configure:8451: checking for frt
configure:8480: result: no
configure:8451: checking for pgf77
configure:8480: result: no
configure:8451: checking for fort77
configure:8480: result: no
configure:8451: checking for fl32
configure:8480: result: no
configure:8451: checking for af77
configure:8480: result: no
configure:8451: checking for f90
configure:8480: result: no
configure:8451: checking for xlf90
configure:8480: result: no
configure:8451: checking for pgf90
configure:8480: result: no
configure:8451: checking for epcf90
configure:8480: result: no
configure:8451: checking for f95
configure:8480: result: no
configure:8451: checking for fort
configure:8480: result: no
configure:8451: checking for xlf95
configure:8480: result: no
configure:8451: checking for ifc
configure:8480: result: no
configure:8451: checking for efc
configure:8480: result: no
configure:8451: checking for pgf95
configure:8480: result: no
configure:8451: checking for lf95
configure:8480: result: no
configure:8451: checking for gfortran
configure:8480: result: no
configure:8495: checking for Fortran 77 compiler version
configure:8495: --version </dev/null >&5
./configure: line 1: --version: command not found
configure:8498: $? = 127
configure:8500: -v </dev/null >&5
./configure: line 1: -v: command not found
configure:8503: $? = 127
configure:8505: -V </dev/null >&5
./configure: line 1: -V: command not found
configure:8508: $? = 127
configure:8516: checking whether we are using the GNU Fortran 77 compiler
configure:8530: -c conftest.F >&5
./configure: line 1: -c: command not found
configure:8536: $? = 127
configure: failed program was:
| program main
| #ifndef __GNUC__
| choke me
| #endif
|
| end
configure:8561: result: no
configure:8567: checking whether accepts -g
configure:8579: -c -g conftest.f >&5
./configure: line 1: -c: command not found
configure:8585: $? = 127
configure: failed program was:
| program main
|
| end
configure:8609: result: no
configure:8639: checking the maximum length of command line arguments
configure:8718: result: 32768
configure:8729: checking command to parse /usr/bin/nm -B output from gcc -pipe object
configure:8825: gcc -pipe -c conftest.c >&5
configure:8828: $? = 0
configure:8832: /usr/bin/nm -B conftest.o \| sed -n -e 's/^.*[ ]\([ABCDGIRSTW][ABCDGIRSTW]*\)[ ][ ]*\(\)\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2\3 \3/p' \> conftest.nm
configure:8835: $? = 0
configure:8887: gcc -pipe -o conftest conftest.c conftstm.o >&5
configure:8890: $? = 0
configure:8928: result: ok
configure:8932: checking for objdir
configure:8947: result: .libs
configure:9037: checking for ar
configure:9053: found /usr/bin/ar
configure:9064: result: ar
configure:9117: checking for ranlib
configure:9144: result: ranlib
configure:9197: checking for strip
configure:9213: found /usr/bin/strip
configure:9224: result: strip
configure:9488: checking if gcc -pipe static flag works
configure:9511: result: yes
configure:9533: checking if gcc -pipe supports -fno-rtti -fno-exceptions
configure:9554: gcc -pipe -c -fno-rtti -fno-exceptions conftest.c >&5
cc1: warning: "-fno-rtti" is valid for C++ but not for C/ObjC
configure:9558: $? = 0
configure:9566: result: no
configure:9581: checking for gcc -pipe option to produce PIC
configure:9768: result: -fPIC
configure:9776: checking if gcc -pipe PIC flag -fPIC works
configure:9797: gcc -pipe -c -fPIC -DPIC conftest.c >&5
configure:9801: $? = 0
configure:9809: result: yes
configure:9833: checking if gcc -pipe supports -c -o file.o
configure:9857: gcc -pipe -c -o out/conftest2.o conftest.c >&5
configure:9861: $? = 0
configure:9878: result: yes
configure:9904: checking whether the gcc -pipe linker (/usr/bin/ld) supports shared libraries
configure:10751: result: yes
configure:10777: checking whether -lc should be explicitly linked in
configure:10782: gcc -pipe -c conftest.c >&5
configure:10785: $? = 0
configure:10799: gcc -pipe -shared conftest.o -v -Wl,-soname -Wl,conftest -o conftest 2\>\&1 \| grep -lc \>/dev/null 2\>\&1
configure:10802: $? = 0
configure:10814: result: no
configure:10822: checking dynamic linker characteristics
configure:11362: result: GNU/Linux ld.so
configure:11366: checking how to hardcode library paths into programs
configure:11391: result: immediate
configure:11405: checking whether stripping libraries is possible
configure:11410: result: yes
configure:12233: checking if libtool supports shared libraries
configure:12235: result: yes
configure:12238: checking whether to build shared libraries
configure:12259: result: yes
configure:12262: checking whether to build static libraries
configure:12266: result: no
configure:12358: creating libtool
configure:12907: checking for ld used by g++
configure:12974: result: /usr/bin/ld
configure:12983: checking if the linker (/usr/bin/ld) is GNU ld
configure:12998: result: yes
configure:13049: checking whether the g++ linker (/usr/bin/ld) supports shared libraries
configure:13914: result: yes
configure:13936: g++ -c -g -O2 conftest.cc >&5
configure:13939: $? = 0
configure:14035: checking for g++ option to produce PIC
configure:14297: result: -fPIC
configure:14305: checking if g++ PIC flag -fPIC works
configure:14326: g++ -c -g -O2 -fPIC -DPIC conftest.cc >&5
configure:14330: $? = 0
configure:14338: result: yes
configure:14362: checking if g++ supports -c -o file.o
configure:14386: g++ -c -g -O2 -o out/conftest2.o conftest.cc >&5
configure:14390: $? = 0
configure:14407: result: yes
configure:14433: checking whether the g++ linker (/usr/bin/ld) supports shared libraries
configure:14458: result: yes
configure:14529: checking dynamic linker characteristics
configure:15069: result: GNU/Linux ld.so
configure:15073: checking how to hardcode library paths into programs
configure:15098: result: immediate
configure:15112: checking whether stripping libraries is possible
configure:15117: result: yes
configure:22518: checking for Tcl public headers
configure:22573: result: /usr/include/tcl8.4/tcl-private/generic
configure:22625: checking for pthread_mutex_init in -lpthread
configure:22655: gcc -pipe -o conftest conftest.c -lpthread >&5
configure:22661: $? = 0
configure:22664: test -z || test ! -s conftest.err
configure:22667: $? = 0
configure:22670: test -s conftest
configure:22673: $? = 0
configure:22686: result: yes
configure:23009: checking for pthread_attr_setstacksize
configure:23066: gcc -pipe -o conftest conftest.c -lpthread >&5
configure:23072: $? = 0
configure:23075: test -z || test ! -s conftest.err
configure:23078: $? = 0
configure:23081: test -s conftest
configure:23084: $? = 0
configure:23096: result: yes
configure:23111: checking for readdir_r
configure:23168: gcc -pipe -o conftest conftest.c >&5
configure:23174: $? = 0
configure:23177: test -z || test ! -s conftest.err
configure:23180: $? = 0
configure:23183: test -s conftest
configure:23186: $? = 0
configure:23198: result: yes
configure:23213: checking for building with threads
configure:23222: result: yes
configure:23261: checking how to build libraries
configure:23279: result: shared
configure:23307: checking if 64bit support is enabled
configure:23316: result: no
configure:23321: checking if 64bit Sparc VIS support is requested
configure:23330: result: no
configure:23358: checking system version (for dynamic loading)
configure:23381: result: Linux-2.6.6
configure:23389: checking for dlopen in -ldl
configure:23419: gcc -pipe -o conftest conftest.c -ldl >&5
configure:23425: $? = 0
configure:23428: test -z || test ! -s conftest.err
configure:23431: $? = 0
configure:23434: test -s conftest
configure:23437: $? = 0
configure:23450: result: yes
configure:23483: checking for ar
configure:23509: result: ar
configure:25477: checking for required early compiler flags
configure:25500: gcc -pipe -c conftest.c >&5
configure:25506: $? = 0
configure:25509: test -z || test ! -s conftest.err
configure:25512: $? = 0
configure:25515: test -s conftest.o
configure:25518: $? = 0
configure:25603: gcc -pipe -c conftest.c >&5
conftest.c: In function `main':
conftest.c:39: error: storage size of `buf' isn't known
configure:25609: $? = 1
configure: failed program was:
| /* confdefs.h. */
|
| #define PACKAGE_NAME "Rivet"
| #define PACKAGE_TARNAME "rivet"
| #define PACKAGE_VERSION "0.5.0"
| #define PACKAGE_STRING "Rivet 0.5.0"
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE "rivet"
| #define VERSION "0.5.0"
| #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 WORDS_BIGENDIAN 1
| #define HAVE_LIMITS_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_DLFCN_H 1
| #ifdef __cplusplus
| extern "C" void std::exit (int) throw (); using std::exit;
| #endif
| #define USE_THREAD_ALLOC 1
| #define _REENTRANT 1
| #define _THREAD_SAFE 1
| #define HAVE_PTHREAD_ATTR_SETSTACKSIZE 1
| #define HAVE_READDIR_R 1
| #define TCL_THREADS 1
| #define _ISOC99_SOURCE
| /* end confdefs.h. */
| #include <sys/stat.h>
| int
| main ()
| {
| struct stat64 buf; int i = stat64("/", &buf);
| ;
| return 0;
| }
configure:25645: gcc -pipe -c conftest.c >&5
configure:25651: $? = 0
configure:25654: test -z || test ! -s conftest.err
configure:25657: $? = 0
configure:25660: test -s conftest.o
configure:25663: $? = 0
configure:25685: result: _LARGEFILE64_SOURCE
configure:25695: checking for 64-bit integer type
configure:25719: gcc -pipe -c conftest.c >&5
conftest.c: In function `main':
conftest.c:40: error: `__int64' undeclared (first use in this function)
conftest.c:40: error: (Each undeclared identifier is reported only once
conftest.c:40: error: for each function it appears in.)
conftest.c:40: error: syntax error before "value"
configure:25725: $? = 1
configure: failed program was:
| /* confdefs.h. */
|
| #define PACKAGE_NAME "Rivet"
| #define PACKAGE_TARNAME "rivet"
| #define PACKAGE_VERSION "0.5.0"
| #define PACKAGE_STRING "Rivet 0.5.0"
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE "rivet"
| #define VERSION "0.5.0"
| #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 WORDS_BIGENDIAN 1
| #define HAVE_LIMITS_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_DLFCN_H 1
| #ifdef __cplusplus
| extern "C" void std::exit (int) throw (); using std::exit;
| #endif
| #define USE_THREAD_ALLOC 1
| #define _REENTRANT 1
| #define _THREAD_SAFE 1
| #define HAVE_PTHREAD_ATTR_SETSTACKSIZE 1
| #define HAVE_READDIR_R 1
| #define TCL_THREADS 1
| #define _ISOC99_SOURCE
| #define _LARGEFILE64_SOURCE
| /* end confdefs.h. */
|
| int
| main ()
| {
| __int64 value = (__int64) 0;
| ;
| return 0;
| }
configure:25768: gcc -pipe -c conftest.c >&5
configure:25774: $? = 0
configure:25777: test -z || test ! -s conftest.err
configure:25780: $? = 0
configure:25783: test -s conftest.o
configure:25786: $? = 0
configure:25816: result: long long
configure:25820: checking for struct dirent64
configure:25843: gcc -pipe -c conftest.c >&5
conftest.c:38:24: sys/dirent.h: No such file or directory
conftest.c: In function `main':
conftest.c:42: error: storage size of `p' isn't known
configure:25849: $? = 1
configure: failed program was:
| /* confdefs.h. */
|
| #define PACKAGE_NAME "Rivet"
| #define PACKAGE_TARNAME "rivet"
| #define PACKAGE_VERSION "0.5.0"
| #define PACKAGE_STRING "Rivet 0.5.0"
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE "rivet"
| #define VERSION "0.5.0"
| #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 WORDS_BIGENDIAN 1
| #define HAVE_LIMITS_H 1
| #define HAVE_SYS_PARAM_H 1
| #define HAVE_DLFCN_H 1
| #ifdef __cplusplus
| extern "C" void std::exit (int) throw (); using std::exit;
| #endif
| #define USE_THREAD_ALLOC 1
| #define _REENTRANT 1
| #define _THREAD_SAFE 1
| #define HAVE_PTHREAD_ATTR_SETSTACKSIZE 1
| #define HAVE_READDIR_R 1
| #define TCL_THREADS 1
| #define _ISOC99_SOURCE
| #define _LARGEFILE64_SOURCE
| #define TCL_WIDE_INT_TYPE long long
| /* end confdefs.h. */
| #include <sys/types.h>
| #include <sys/dirent.h>
| int
| main ()
| {
| struct dirent64 p;
| ;
| return 0;
| }
configure:25880: result: no
configure:25883: checking for struct stat64
configure:25906: gcc -pipe -c conftest.c >&5
configure:25912: $? = 0
configure:25915: test -z || test ! -s conftest.err
configure:25918: $? = 0
configure:25921: test -s conftest.o
configure:25924: $? = 0
configure:25943: result: yes
configure:25946: checking for off64_t
configure:25969: gcc -pipe -c conftest.c >&5
configure:25975: $? = 0
configure:25978: test -z || test ! -s conftest.err
configure:25981: $? = 0
configure:25984: test -s conftest.o
configure:25987: $? = 0
configure:26006: result: yes
configure:26025: checking for build with symbols
configure:26039: result: no
configure:26189: checking for tclsh
configure:26193: result: manually set by --with-tclsh=/usr/bin/tclsh8.4
configure:26307: checking for apxs
configure:26309: result: /usr/bin/apxs
configure:26504: creating ./config.status
## ---------------------- ##
## Running config.status. ##
## ---------------------- ##
This file was extended by Rivet config.status 0.5.0, which was
generated by GNU Autoconf 2.59. Invocation command line was
CONFIG_FILES =
CONFIG_HEADERS =
CONFIG_LINKS =
CONFIG_COMMANDS =
$ ./config.status
on ashland
config.status:810: creating Makefile
config.status:810: creating src/Makefile
config.status:810: creating doc/Makefile
config.status:955: executing depfiles commands
## ---------------- ##
## Cache variables. ##
## ---------------- ##
ac_cv_build=powerpc-unknown-linux-gnu
ac_cv_build_alias=powerpc-unknown-linux-gnu
ac_cv_c_bigendian=yes
ac_cv_c_compiler_gnu=yes
ac_cv_c_tclconfig=/usr/lib/tcl8.4
ac_cv_c_tclh=/usr/include/tcl8.4/tcl-private/generic
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_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_connect=yes
ac_cv_func_gethostbyname=yes
ac_cv_func_pthread_attr_setstacksize=yes
ac_cv_func_readdir_r=yes
ac_cv_func_sin=no
ac_cv_header_dlfcn_h=yes
ac_cv_header_errno_h=yes
ac_cv_header_float_h=yes
ac_cv_header_inttypes_h=yes
ac_cv_header_limits_h=yes
ac_cv_header_memory_h=yes
ac_cv_header_net_errno_h=no
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_param_h=yes
ac_cv_header_sys_stat_h=yes
ac_cv_header_sys_types_h=yes
ac_cv_header_sys_wait_h=yes
ac_cv_header_unistd_h=yes
ac_cv_header_values_h=yes
ac_cv_host=powerpc-unknown-linux-gnu
ac_cv_host_alias=powerpc-unknown-linux-gnu
ac_cv_lib_dl_dlopen=yes
ac_cv_lib_ieee_main=yes
ac_cv_lib_inet_main=no
ac_cv_lib_pthread_pthread_mutex_init=yes
ac_cv_objext=o
ac_cv_path_install='/usr/bin/install -c'
ac_cv_prog_AR=ar
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
am_cv_CC_dependencies_compiler_type=gcc3
am_cv_CXX_dependencies_compiler_type=gcc3
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/bin/ld
lt_cv_path_LDCXX=/usr/bin/ld
lt_cv_path_NM='/usr/bin/nm -B'
lt_cv_path_SED=/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\3 \3/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\\3 \\3/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'\''"'
tcl_cv_flag__isoc99_source=no
tcl_cv_flag__largefile64_source=yes
tcl_cv_struct_dirent64=no
tcl_cv_struct_stat64=yes
tcl_cv_type_64bit='long long'
tcl_cv_type_off64_t=yes
## ----------------- ##
## Output variables. ##
## ----------------- ##
ACLOCAL='${SHELL} /home/davidw/debian/rivet-0.5.0/tclconfig/missing --run aclocal-1.8'
AMDEPBACKSLASH='\'
AMDEP_FALSE='#'
AMDEP_TRUE=''
AMTAR='${SHELL} /home/davidw/debian/rivet-0.5.0/tclconfig/missing --run tar'
APXS=''
APXS_CPPFLAGS='-DLINUX=22 -DEAPI -DTARGET="apache" -DHAVE_SET_DUMPABLE -DDB_DBM_HSEARCH=1 -DDEV_RANDOM=/dev/random -DUSE_HSREGEX -O1 -g -Wall -D_LARGEFILE_SOURCE -D_FILE_OFFSET_BITS=64'
APXS_CPPFLAGS_SHLIB='-fPIC -DSHARED_MODULE'
APXS_INCLUDES='-I/usr/include/apache-1.3'
APXS_LDFLAGS='-shared'
APXS_LD_SHLIB='gcc'
APXS_LIBEXECDIR='/usr/lib/apache/1.3'
APXS_LIBS='-lc -lm -lpthread -lcrypt -ldb -ldb -lexpat'
APXS_PREFIX='/usr'
APXS_SYSCONFDIR='/etc/apache'
AR='ar'
AUTOCONF='${SHELL} /home/davidw/debian/rivet-0.5.0/tclconfig/missing --run autoconf'
AUTOHEADER='${SHELL} /home/davidw/debian/rivet-0.5.0/tclconfig/missing --run autoheader'
AUTOMAKE='${SHELL} /home/davidw/debian/rivet-0.5.0/tclconfig/missing --run automake-1.8'
AWK='gawk'
CC='gcc -pipe'
CCDEPMODE='depmode=gcc3'
CELIB_DIR=''
CFLAGS=' ${CFLAGS_DEFAULT} ${CFLAGS_WARNING} ${SHLIB_CFLAGS}'
CFLAGS_DEBUG='-g'
CFLAGS_DEFAULT='-O2'
CFLAGS_OPTIMIZE='-O2'
CFLAGS_WARNING='-Wall -Wno-implicit-int'
CLEANFILES='pkgIndex.tcl'
CPP='gcc -E'
CPPFLAGS=''
CXX='g++'
CXXCPP='g++ -E'
CXXDEPMODE='depmode=gcc3'
CXXFLAGS='-g -O2'
CYGPATH='echo'
CYGPATH_W='echo'
DEFS='-DPACKAGE_NAME=\"Rivet\" -DPACKAGE_TARNAME=\"rivet\" -DPACKAGE_VERSION=\"0.5.0\" -DPACKAGE_STRING=\"Rivet\ 0.5.0\" -DPACKAGE_BUGREPORT=\"\" -DPACKAGE=\"rivet\" -DVERSION=\"0.5.0\" -DSTDC_HEADERS=1 -DHAVE_SYS_TYPES_H=1 -DHAVE_SYS_STAT_H=1 -DHAVE_STDLIB_H=1 -DHAVE_STRING_H=1 -DHAVE_MEMORY_H=1 -DHAVE_STRINGS_H=1 -DHAVE_INTTYPES_H=1 -DHAVE_STDINT_H=1 -DHAVE_UNISTD_H=1 -DWORDS_BIGENDIAN=1 -DHAVE_LIMITS_H=1 -DHAVE_SYS_PARAM_H=1 -DHAVE_DLFCN_H=1 -DUSE_THREAD_ALLOC=1 -D_REENTRANT=1 -D_THREAD_SAFE=1 -DHAVE_PTHREAD_ATTR_SETSTACKSIZE=1 -DHAVE_READDIR_R=1 -DTCL_THREADS=1 -D_ISOC99_SOURCE= -D_LARGEFILE64_SOURCE= -DTCL_WIDE_INT_TYPE=long\ long -DHAVE_STRUCT_STAT64=1 -DHAVE_TYPE_OFF64_T=1 -DNAMEOFEXECUTABLE=\"/usr/bin/tclsh8.4\" '
DEPDIR='.deps'
DL_LIBS='-ldl'
ECHO='echo'
ECHO_C=''
ECHO_N='-n'
ECHO_T=''
EGREP='grep -E'
EXEEXT=''
F77=''
FFLAGS=''
INSTALL_DATA='${INSTALL} -m 644'
INSTALL_PROGRAM='${INSTALL}'
INSTALL_SCRIPT='${INSTALL}'
INSTALL_STRIP_PROGRAM='${SHELL} $(install_sh) -c -s'
LDFLAGS=' -Wl,--export-dynamic'
LDFLAGS_DEBUG=''
LDFLAGS_DEFAULT=' -Wl,--export-dynamic'
LDFLAGS_OPTIMIZE=''
LD_LIBRARY_PATH_VAR='LD_LIBRARY_PATH'
LIBOBJS=''
LIBS=''
LIBTOOL='$(SHELL) $(top_builddir)/libtool'
LIBTOOL_DEPS='tclconfig/ltmain.sh'
LN_S='ln -s'
LTLIBOBJS=''
MAKEINFO='${SHELL} /home/davidw/debian/rivet-0.5.0/tclconfig/missing --run makeinfo'
MAKE_LIB='${SHLIB_LD} -o $@ $(PKG_OBJECTS) ${SHLIB_LD_FLAGS} ${SHLIB_LD_LIBS} '
MAKE_SHARED_LIB='${SHLIB_LD} -o $@ $(PKG_OBJECTS) ${SHLIB_LD_FLAGS} ${SHLIB_LD_LIBS}'
MAKE_STATIC_LIB='${STLIB_LD} $@ $(PKG_OBJECTS)'
MAKE_STUB_LIB='${STLIB_LD} $@ $(PKG_STUB_OBJECTS)'
MATH_LIBS='-lieee -lm'
OBJEXT='o'
PACKAGE='rivet'
PACKAGE_BUGREPORT=''
PACKAGE_NAME='Rivet'
PACKAGE_STRING='Rivet 0.5.0'
PACKAGE_TARNAME='rivet'
PACKAGE_VERSION='0.5.0'
PATH_SEPARATOR=':'
PKG_CFLAGS=' '
PKG_HEADERS=' src/TclWeb.h src/apache_multipart_buffer.h src/apache_request.h src/mod_rivet.h src/rivet.h src/rivetChannel.h src/rivetParser.h'
PKG_INCLUDES=''
PKG_LIBS=''
PKG_LIB_FILE='libRivet0.5.0.so'
PKG_OBJECTS=' TclWebcgi.o TclWebapache.o apache_multipart_buffer.o apache_request.o mod_rivet.o parserPkgInit.o rivetChannel.o rivetCore.o rivetCrypt.o rivetList.o rivetParser.o rivetPkgInit.o rivetWWW.o nmakehlp.o testing.o'
PKG_SOURCES=' src/TclWebcgi.c src/TclWebapache.c src/apache_multipart_buffer.c src/apache_request.c src/mod_rivet.c src/parserPkgInit.c src/rivetChannel.c src/rivetCore.c src/rivetCrypt.c src/rivetList.c src/rivetParser.c src/rivetPkgInit.c src/rivetWWW.c win/nmakehlp.c src/testing.c'
PKG_STUB_LIB_FILE='libRivetstub0.5.0.a'
PKG_STUB_OBJECTS=''
PKG_STUB_SOURCES=''
PKG_TCL_SOURCES=''
RANLIB=':'
RANLIB_STUB='ranlib'
SET_MAKE=''
SHARED_BUILD='1'
SHELL='/bin/bash'
SHLIB_CFLAGS='-fPIC'
SHLIB_LD='gcc -pipe -shared'
SHLIB_LD_FLAGS=''
SHLIB_LD_LIBS='${LIBS} -L/usr/lib -ltclstub8.4'
STLIB_LD='${AR} cr'
STRIP='strip'
TCLSH_PROG='/usr/bin/tclsh8.4'
TCL_BIN_DIR='/usr/lib/tcl8.4'
TCL_DBGX=''
TCL_DEFS=' -DTCL_THREADS=1 -DUSE_THREAD_ALLOC=1 -D_REENTRANT=1 -D_THREAD_SAFE=1 -DHAVE_PTHREAD_ATTR_SETSTACKSIZE=1 -DHAVE_PTHREAD_ATFORK=1 -DHAVE_READDIR_R=1 -DHAVE_THREE_ARG_READDIR_R=1 -DPEEK_XCLOSEIM=1 -D_LARGEFILE64_SOURCE=1 -DTCL_WIDE_INT_TYPE=long\ long -DHAVE_STRUCT_STAT64=1 -DHAVE_OPEN64=1 -DHAVE_LSEEK64=1 -DHAVE_TYPE_OFF64_T=1 -DWORDS_BIGENDIAN=1 -DHAVE_GETCWD=1 -DHAVE_OPENDIR=1 -DHAVE_STRSTR=1 -DHAVE_STRTOL=1 -DHAVE_STRTOLL=1 -DHAVE_STRTOULL=1 -DHAVE_TMPNAM=1 -DHAVE_WAITPID=1 -DHAVE_LIMITS_H=1 -DHAVE_UNISTD_H=1 -DHAVE_SYS_PARAM_H=1 -DUSE_TERMIOS=1 -DHAVE_SYS_TIME_H=1 -DTIME_WITH_SYS_TIME=1 -DHAVE_TM_ZONE=1 -DHAVE_GMTIME_R=1 -DHAVE_LOCALTIME_R=1 -DHAVE_TM_GMTOFF=1 -DHAVE_TIMEZONE_VAR=1 -DHAVE_ST_BLKSIZE=1 -DSTDC_HEADERS=1 -DHAVE_SIGNED_CHAR=1 -DHAVE_LANGINFO=1 -DHAVE_SYS_IOCTL_H=1 '
TCL_EXTRA_CFLAGS=''
TCL_INCLUDES='-I"/usr/include/tcl8.4/tcl-private/generic"'
TCL_LD_FLAGS=' -Wl,--export-dynamic'
TCL_LIBS='${DL_LIBS} ${LIBS} ${MATH_LIBS}'
TCL_LIB_FILE='libtcl8.4.so'
TCL_LIB_FLAG='-ltcl8.4'
TCL_LIB_SPEC='-L/usr/lib -ltcl8.4'
TCL_PACKAGE_PATH='/usr/lib'
TCL_SHLIB_LD_LIBS='${LIBS}'
TCL_SRC_DIR='/usr/include/tcl8.4/tcl-private'
TCL_STUB_LIB_FILE='libtclstub8.4.a'
TCL_STUB_LIB_FLAG='-ltclstub8.4'
TCL_STUB_LIB_SPEC='-L/usr/lib -ltclstub8.4'
TCL_THREADS='1'
TCL_VERSION='8.4'
VERSION='0.5.0'
ac_ct_AR='ar'
ac_ct_CC='gcc'
ac_ct_CXX='g++'
ac_ct_F77=''
ac_ct_RANLIB='ranlib'
ac_ct_STRIP='strip'
am__fastdepCC_FALSE='#'
am__fastdepCC_TRUE=''
am__fastdepCXX_FALSE='#'
am__fastdepCXX_TRUE=''
am__include='include'
am__leading_dot='.'
am__quote=''
bindir='${exec_prefix}/bin'
build='powerpc-unknown-linux-gnu'
build_alias=''
build_cpu='powerpc'
build_os='linux-gnu'
build_vendor='unknown'
datadir='${prefix}/share'
exec_prefix='/usr'
host='powerpc-unknown-linux-gnu'
host_alias=''
host_cpu='powerpc'
host_os='linux-gnu'
host_vendor='unknown'
includedir='${prefix}/include'
infodir='${prefix}/info'
install_sh='/home/davidw/debian/rivet-0.5.0/tclconfig/install-sh'
libdir='${exec_prefix}/lib'
libexecdir='${exec_prefix}/libexec'
localstatedir='${prefix}/var'
mandir='${prefix}/man'
mkdir_p='mkdir -p -- .'
oldincludedir='/usr/include'
prefix='/usr'
program_transform_name='s,x,x,'
sbindir='${exec_prefix}/sbin'
sharedstatedir='${prefix}/com'
sysconfdir='${prefix}/etc'
target_alias=''
## ----------- ##
## confdefs.h. ##
## ----------- ##
#define HAVE_DLFCN_H 1
#define HAVE_INTTYPES_H 1
#define HAVE_LIMITS_H 1
#define HAVE_MEMORY_H 1
#define HAVE_PTHREAD_ATTR_SETSTACKSIZE 1
#define HAVE_READDIR_R 1
#define HAVE_STDINT_H 1
#define HAVE_STDLIB_H 1
#define HAVE_STRINGS_H 1
#define HAVE_STRING_H 1
#define HAVE_STRUCT_STAT64 1
#define HAVE_SYS_PARAM_H 1
#define HAVE_SYS_STAT_H 1
#define HAVE_SYS_TYPES_H 1
#define HAVE_TYPE_OFF64_T 1
#define HAVE_UNISTD_H 1
#define NAMEOFEXECUTABLE "/usr/bin/tclsh8.4"
#define PACKAGE "rivet"
#define PACKAGE_BUGREPORT ""
#define PACKAGE_NAME "Rivet"
#define PACKAGE_STRING "Rivet 0.5.0"
#define PACKAGE_TARNAME "rivet"
#define PACKAGE_VERSION "0.5.0"
#define STDC_HEADERS 1
#define TCL_THREADS 1
#define TCL_WIDE_INT_TYPE long long
#define USE_THREAD_ALLOC 1
#define VERSION "0.5.0"
#define WORDS_BIGENDIAN 1
#define _ISOC99_SOURCE
#define _LARGEFILE64_SOURCE
#define _REENTRANT 1
#define _THREAD_SAFE 1
#endif
#ifdef __cplusplus
extern "C" void std::exit (int) throw (); using std::exit;
configure: exit 0
|