[ create a new paste ] login | about

Link: http://codepad.org/0YnbYFCB    [ raw code | fork ]

Plain Text, pasted on Oct 21:
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
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.

It was created by XaoS configure 3.5, which was
generated by GNU Autoconf 2.63.  Invocation command line was

  $ ./configure --prefix=/usr --with-aa-driver=no --with-png=no

## --------- ##
## Platform. ##
## --------- ##

hostname = Archlinux
uname -m = i686
uname -r = 2.6.35-ARCH
uname -s = Linux
uname -v = #1 SMP PREEMPT Wed Sep 29 07:17:20 UTC 2010

/usr/bin/uname -p = unknown
/bin/uname -X     = unknown

/bin/arch              = i686
/usr/bin/arch -k       = unknown
/usr/convex/getsysinfo = unknown
/usr/bin/hostinfo      = unknown
/bin/machine           = unknown
/usr/bin/oslevel       = unknown
/bin/universe          = unknown

PATH: /bin
PATH: /usr/bin
PATH: /sbin
PATH: /usr/sbin
PATH: /home/army/.bin
PATH: /usr/lib/perl5/vendor_perl/bin
PATH: /usr/bin/perlbin/vendor
PATH: /usr/lib/perl5/core_perl/bin
PATH: /home/army/.bin


## ----------- ##
## Core tests. ##
## ----------- ##

configure:1942: checking build system type
configure:1960: result: i686-pc-linux-gnu
configure:1982: checking host system type
configure:1997: result: i686-pc-linux-gnu
configure:2072: checking for gcc
configure:2088: found /usr/bin/gcc
configure:2099: result: gcc
configure:2331: checking for C compiler version
configure:2339: gcc --version >&5
gcc (GCC) 4.5.1
Copyright (C) 2010 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:2343: $? = 0
configure:2350: gcc -v >&5
Using built-in specs.
COLLECT_GCC=gcc
COLLECT_LTO_WRAPPER=/usr/lib/gcc/i686-pc-linux-gnu/4.5.1/lto-wrapper
Target: i686-pc-linux-gnu
Configured with: ../configure --prefix=/usr --enable-languages=c,c++,fortran,objc,obj-c++,ada --enable-shared --enable-threads=posix --enable-__cxa_atexit --enable-clocale=gnu --enable-gnu-unique-object --enable-lto --enable-plugin --disable-multilib --disable-libstdcxx-pch --with-system-zlib --with-ppl --with-cloog --libdir=/usr/lib --libexecdir=/usr/lib --mandir=/usr/share/man --infodir=/usr/share/info
Thread model: posix
gcc version 4.5.1 (GCC) 
configure:2354: $? = 0
configure:2361: gcc -V >&5
gcc: '-V' option must have argument
configure:2365: $? = 1
configure:2388: checking for C compiler default output file name
configure:2410: gcc    conftest.c  >&5
configure:2414: $? = 0
configure:2452: result: a.out
configure:2471: checking whether the C compiler works
configure:2481: ./a.out
configure:2485: $? = 0
configure:2504: result: yes
configure:2511: checking whether we are cross compiling
configure:2513: result: no
configure:2516: checking for suffix of executables
configure:2523: gcc -o conftest    conftest.c  >&5
configure:2527: $? = 0
configure:2553: result: 
configure:2559: checking for suffix of object files
configure:2585: gcc -c   conftest.c >&5
configure:2589: $? = 0
configure:2614: result: o
configure:2618: checking whether we are using the GNU C compiler
configure:2647: gcc -c   conftest.c >&5
configure:2654: $? = 0
configure:2671: result: yes
configure:2680: checking whether gcc accepts -g
configure:2710: gcc -c -g  conftest.c >&5
configure:2717: $? = 0
configure:2818: result: yes
configure:2835: checking for gcc option to accept ISO C89
configure:2909: gcc  -c -g -O2  conftest.c >&5
configure:2916: $? = 0
configure:2939: result: none needed
configure:2959: checking for C compiler vendor
configure:2993: gcc -c -g -O2  conftest.c >&5
conftest.c: In function 'main':
conftest.c:14:7: error: 'thisisanerror' undeclared (first use in this function)
conftest.c:14:7: note: each undeclared identifier is reported only once for each function it appears in
configure:3000: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| #define PACKAGE_NAME "XaoS"
| #define PACKAGE_TARNAME "xaos"
| #define PACKAGE_VERSION "3.5"
| #define PACKAGE_STRING "XaoS 3.5"
| #define PACKAGE_BUGREPORT "xaos-devel@lists.sourceforge.net"
| /* end confdefs.h.  */
| 
| int
| main ()
| {
| 
| #if !(defined(__ICC) || defined(__ECC) || defined(__INTEL_COMPILER))
|       thisisanerror;
| #endif
| 
|   ;
|   return 0;
| }
configure:2993: gcc -c -g -O2  conftest.c >&5
conftest.c: In function 'main':
conftest.c:14:7: error: 'thisisanerror' undeclared (first use in this function)
conftest.c:14:7: note: each undeclared identifier is reported only once for each function it appears in
configure:3000: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| #define PACKAGE_NAME "XaoS"
| #define PACKAGE_TARNAME "xaos"
| #define PACKAGE_VERSION "3.5"
| #define PACKAGE_STRING "XaoS 3.5"
| #define PACKAGE_BUGREPORT "xaos-devel@lists.sourceforge.net"
| /* end confdefs.h.  */
| 
| int
| main ()
| {
| 
| #if !(defined(__xlc__) || defined(__xlC__) || defined(__IBMC__) || defined(__IBMCPP__))
|       thisisanerror;
| #endif
| 
|   ;
|   return 0;
| }
configure:2993: gcc -c -g -O2  conftest.c >&5
conftest.c: In function 'main':
conftest.c:14:7: error: 'thisisanerror' undeclared (first use in this function)
conftest.c:14:7: note: each undeclared identifier is reported only once for each function it appears in
configure:3000: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| #define PACKAGE_NAME "XaoS"
| #define PACKAGE_TARNAME "xaos"
| #define PACKAGE_VERSION "3.5"
| #define PACKAGE_STRING "XaoS 3.5"
| #define PACKAGE_BUGREPORT "xaos-devel@lists.sourceforge.net"
| /* end confdefs.h.  */
| 
| int
| main ()
| {
| 
| #if !(defined(__PATHCC__) || defined(__PATHSCALE__))
|       thisisanerror;
| #endif
| 
|   ;
|   return 0;
| }
configure:2993: gcc -c -g -O2  conftest.c >&5
configure:3000: $? = 0
configure:3017: result: gnu
configure:3388: checking whether C compiler accepts -malign-double
configure:3417: gcc -c -malign-double  conftest.c >&5
configure:3424: $? = 0
configure:3442: result: yes
configure:3452: checking whether C compiler accepts -fstrict-aliasing
configure:3481: gcc -c -fstrict-aliasing  conftest.c >&5
configure:3488: $? = 0
configure:3506: result: yes
configure:3516: checking whether C compiler accepts -ffast-math
configure:3545: gcc -c -ffast-math  conftest.c >&5
configure:3552: $? = 0
configure:3570: result: yes
configure:3591: checking for gcc architecture flag
configure:3593: result: 
configure:3615: checking for x86 cpuid 0 output
configure:3654: gcc -o conftest -O3 -fomit-frame-pointer -malign-double -fstrict-aliasing -ffast-math   conftest.c  >&5
configure:3658: $? = 0
configure:3664: ./conftest
configure:3668: $? = 0
configure:3685: result: 2:756e6547:6c65746e:49656e69
configure:3701: checking for x86 cpuid 1 output
configure:3740: gcc -o conftest -O3 -fomit-frame-pointer -malign-double -fstrict-aliasing -ffast-math   conftest.c  >&5
configure:3744: $? = 0
configure:3750: ./conftest
configure:3754: $? = 0
configure:3771: result: 6d6:816:180:afe9fbbf
configure:4016: checking whether C compiler accepts -march=pentium-m
configure:4041: gcc -c -march=pentium-m  conftest.c >&5
configure:4048: $? = 0
configure:4064: result: yes
configure:4081: checking for gcc architecture flag
configure:4083: result: -march=pentium-m
configure:4105: checking whether C compiler accepts -O3 -fomit-frame-pointer -malign-double -fstrict-aliasing -ffast-math -march=pentium-m
configure:4130: gcc -c -O3 -fomit-frame-pointer -malign-double -fstrict-aliasing -ffast-math -march=pentium-m  conftest.c >&5
configure:4137: $? = 0
configure:4153: result: yes
configure:4215: checking for ld used by GCC
configure:4279: result: /usr/bin/ld
configure:4288: checking if the linker (/usr/bin/ld) is GNU ld
configure:4301: result: yes
configure:4308: checking for shared library run path origin
configure:4321: result: done
configure:4829: checking for iconv
configure:4861: gcc -o conftest -O3 -fomit-frame-pointer -malign-double -fstrict-aliasing -ffast-math -march=pentium-m   conftest.c  >&5
configure:4868: $? = 0
configure:4945: result: yes
configure:4948: checking for working iconv
configure:5034: gcc -o conftest -O3 -fomit-frame-pointer -malign-double -fstrict-aliasing -ffast-math -march=pentium-m   conftest.c  >&5
configure:5038: $? = 0
configure:5044: ./conftest
configure:5048: $? = 0
configure:5067: result: yes
configure:5097: checking for iconv declaration
configure:5136: gcc -c -O3 -fomit-frame-pointer -malign-double -fstrict-aliasing -ffast-math -march=pentium-m  conftest.c >&5
configure:5143: $? = 0
configure:5162: result: 
         extern size_t iconv (iconv_t cd, char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft);
configure:5172: checking whether make sets $(MAKE)
configure:5194: result: yes
configure:5217: checking for a BSD-compatible install
configure:5285: result: /bin/install -c
configure:5296: checking for a thread-safe mkdir -p
configure:5335: result: /bin/mkdir -p
configure:5345: checking whether NLS is requested
configure:5354: result: yes
configure:5395: checking for msgfmt
configure: trying /usr/bin/msgfmt...
0 translated messages.
configure:5427: result: /usr/bin/msgfmt
configure:5436: checking for gmsgfmt
configure:5467: result: /usr/bin/msgfmt
configure:5518: checking for xgettext
configure: trying /usr/bin/xgettext...
/usr/bin/xgettext: warning: file `/dev/null' extension `' is unknown; will try C
configure:5550: result: /usr/bin/xgettext
configure:5596: checking for msgmerge
configure: trying /usr/bin/msgmerge...
configure:5627: result: /usr/bin/msgmerge
configure:5667: checking for CFPreferencesCopyAppValue
configure:5695: gcc -o conftest -O3 -fomit-frame-pointer -malign-double -fstrict-aliasing -ffast-math -march=pentium-m   conftest.c  -Wl,-framework -Wl,CoreFoundation >&5
conftest.c:10:42: fatal error: CoreFoundation/CFPreferences.h: No such file or directory
compilation terminated.
configure:5702: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| #define PACKAGE_NAME "XaoS"
| #define PACKAGE_TARNAME "xaos"
| #define PACKAGE_VERSION "3.5"
| #define PACKAGE_STRING "XaoS 3.5"
| #define PACKAGE_BUGREPORT "xaos-devel@lists.sourceforge.net"
| #define HAVE_ICONV 1
| #define ICONV_CONST 
| /* end confdefs.h.  */
| #include <CoreFoundation/CFPreferences.h>
| int
| main ()
| {
| CFPreferencesCopyAppValue(NULL, NULL)
|   ;
|   return 0;
| }
configure:5723: result: no
configure:5732: checking for CFLocaleCopyCurrent
configure:5760: gcc -o conftest -O3 -fomit-frame-pointer -malign-double -fstrict-aliasing -ffast-math -march=pentium-m   conftest.c  -Wl,-framework -Wl,CoreFoundation >&5
conftest.c:10:37: fatal error: CoreFoundation/CFLocale.h: No such file or directory
compilation terminated.
configure:5767: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| #define PACKAGE_NAME "XaoS"
| #define PACKAGE_TARNAME "xaos"
| #define PACKAGE_VERSION "3.5"
| #define PACKAGE_STRING "XaoS 3.5"
| #define PACKAGE_BUGREPORT "xaos-devel@lists.sourceforge.net"
| #define HAVE_ICONV 1
| #define ICONV_CONST 
| /* end confdefs.h.  */
| #include <CoreFoundation/CFLocale.h>
| int
| main ()
| {
| CFLocaleCopyCurrent();
|   ;
|   return 0;
| }
configure:5788: result: no
configure:5839: checking for GNU gettext in libc
configure:5869: gcc -o conftest -O3 -fomit-frame-pointer -malign-double -fstrict-aliasing -ffast-math -march=pentium-m   conftest.c  >&5
configure:5876: $? = 0
configure:5898: result: yes
configure:6802: checking whether to use NLS
configure:6804: result: yes
configure:6807: checking where the gettext function comes from
configure:6818: result: libc
configure:6883: checking for msgmerge
configure:6914: result: /usr/bin/msgmerge
configure:7034: checking whether make sets $(MAKE)
configure:7056: result: yes
configure:7108: checking for ranlib
configure:7124: found /usr/bin/ranlib
configure:7135: result: ranlib
configure:7176: checking for a BSD-compatible install
configure:7244: result: /bin/install -c
configure:7295: checking how to run the C preprocessor
configure:7335: gcc -E  conftest.c
configure:7342: $? = 0
configure:7373: gcc -E  conftest.c
conftest.c:13:28: fatal error: ac_nonexistent.h: No such file or directory
compilation terminated.
configure:7380: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| #define PACKAGE_NAME "XaoS"
| #define PACKAGE_TARNAME "xaos"
| #define PACKAGE_VERSION "3.5"
| #define PACKAGE_STRING "XaoS 3.5"
| #define PACKAGE_BUGREPORT "xaos-devel@lists.sourceforge.net"
| #define HAVE_ICONV 1
| #define ICONV_CONST 
| #define ENABLE_NLS 1
| #define HAVE_GETTEXT 1
| #define HAVE_DCGETTEXT 1
| /* end confdefs.h.  */
| #include <ac_nonexistent.h>
configure:7413: result: gcc -E
configure:7442: gcc -E  conftest.c
configure:7449: $? = 0
configure:7480: gcc -E  conftest.c
conftest.c:13:28: fatal error: ac_nonexistent.h: No such file or directory
compilation terminated.
configure:7487: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| #define PACKAGE_NAME "XaoS"
| #define PACKAGE_TARNAME "xaos"
| #define PACKAGE_VERSION "3.5"
| #define PACKAGE_STRING "XaoS 3.5"
| #define PACKAGE_BUGREPORT "xaos-devel@lists.sourceforge.net"
| #define HAVE_ICONV 1
| #define ICONV_CONST 
| #define ENABLE_NLS 1
| #define HAVE_GETTEXT 1
| #define HAVE_DCGETTEXT 1
| /* end confdefs.h.  */
| #include <ac_nonexistent.h>
configure:7527: checking for X
configure:7642: gcc -E  conftest.c
configure:7649: $? = 0
configure:7698: gcc -o conftest -O3 -fomit-frame-pointer -malign-double -fstrict-aliasing -ffast-math -march=pentium-m   conftest.c -lX11  >&5
configure:7705: $? = 0
configure:7767: result: libraries , headers 
configure:7936: gcc -o conftest -O3 -fomit-frame-pointer -malign-double -fstrict-aliasing -ffast-math -march=pentium-m   conftest.c   -lX11 >&5
configure:7943: $? = 0
configure:8111: checking for gethostbyname
configure:8167: gcc -o conftest -O3 -fomit-frame-pointer -malign-double -fstrict-aliasing -ffast-math -march=pentium-m   conftest.c  >&5
configure:8174: $? = 0
configure:8194: result: yes
configure:8347: checking for connect
configure:8403: gcc -o conftest -O3 -fomit-frame-pointer -malign-double -fstrict-aliasing -ffast-math -march=pentium-m   conftest.c  >&5
configure:8410: $? = 0
configure:8430: result: yes
configure:8506: checking for remove
configure:8562: gcc -o conftest -O3 -fomit-frame-pointer -malign-double -fstrict-aliasing -ffast-math -march=pentium-m   conftest.c  >&5
configure:8569: $? = 0
configure:8589: result: yes
configure:8665: checking for shmat
configure:8721: gcc -o conftest -O3 -fomit-frame-pointer -malign-double -fstrict-aliasing -ffast-math -march=pentium-m   conftest.c  >&5
configure:8728: $? = 0
configure:8748: result: yes
configure:8833: checking for IceConnectionNumber in -lICE
configure:8868: gcc -o conftest -O3 -fomit-frame-pointer -malign-double -fstrict-aliasing -ffast-math -march=pentium-m   conftest.c -lICE   >&5
configure:8875: $? = 0
configure:8896: result: yes
configure:9739: checking for grep that handles long lines and -e
configure:9799: result: /bin/grep
configure:9804: checking for egrep
configure:9868: result: /bin/grep -E
configure:9873: checking for ANSI C header files
configure:9903: gcc -c -O3 -fomit-frame-pointer -malign-double -fstrict-aliasing -ffast-math -march=pentium-m  conftest.c >&5
configure:9910: $? = 0
configure:10009: gcc -o conftest -O3 -fomit-frame-pointer -malign-double -fstrict-aliasing -ffast-math -march=pentium-m   conftest.c  >&5
configure:10013: $? = 0
configure:10019: ./conftest
configure:10023: $? = 0
configure:10041: result: yes
configure:10065: checking for sys/types.h
configure:10086: gcc -c -O3 -fomit-frame-pointer -malign-double -fstrict-aliasing -ffast-math -march=pentium-m  conftest.c >&5
configure:10093: $? = 0
configure:10110: result: yes
configure:10065: checking for sys/stat.h
configure:10086: gcc -c -O3 -fomit-frame-pointer -malign-double -fstrict-aliasing -ffast-math -march=pentium-m  conftest.c >&5
configure:10093: $? = 0
configure:10110: result: yes
configure:10065: checking for stdlib.h
configure:10086: gcc -c -O3 -fomit-frame-pointer -malign-double -fstrict-aliasing -ffast-math -march=pentium-m  conftest.c >&5
configure:10093: $? = 0
configure:10110: result: yes
configure:10065: checking for string.h
configure:10086: gcc -c -O3 -fomit-frame-pointer -malign-double -fstrict-aliasing -ffast-math -march=pentium-m  conftest.c >&5
configure:10093: $? = 0
configure:10110: result: yes
configure:10065: checking for memory.h
configure:10086: gcc -c -O3 -fomit-frame-pointer -malign-double -fstrict-aliasing -ffast-math -march=pentium-m  conftest.c >&5
configure:10093: $? = 0
configure:10110: result: yes
configure:10065: checking for strings.h
configure:10086: gcc -c -O3 -fomit-frame-pointer -malign-double -fstrict-aliasing -ffast-math -march=pentium-m  conftest.c >&5
configure:10093: $? = 0
configure:10110: result: yes
configure:10065: checking for inttypes.h
configure:10086: gcc -c -O3 -fomit-frame-pointer -malign-double -fstrict-aliasing -ffast-math -march=pentium-m  conftest.c >&5
configure:10093: $? = 0
configure:10110: result: yes
configure:10065: checking for stdint.h
configure:10086: gcc -c -O3 -fomit-frame-pointer -malign-double -fstrict-aliasing -ffast-math -march=pentium-m  conftest.c >&5
configure:10093: $? = 0
configure:10110: result: yes
configure:10065: checking for unistd.h
configure:10086: gcc -c -O3 -fomit-frame-pointer -malign-double -fstrict-aliasing -ffast-math -march=pentium-m  conftest.c >&5
configure:10093: $? = 0
configure:10110: result: yes
configure:10155: checking alloca.h usability
configure:10172: gcc -c -O3 -fomit-frame-pointer -malign-double -fstrict-aliasing -ffast-math -march=pentium-m  conftest.c >&5
configure:10179: $? = 0
configure:10193: result: yes
configure:10197: checking alloca.h presence
configure:10212: gcc -E  conftest.c
configure:10219: $? = 0
configure:10233: result: yes
configure:10266: checking for alloca.h
configure:10275: result: yes
configure:10155: checking ddraw.h usability
configure:10172: gcc -c -O3 -fomit-frame-pointer -malign-double -fstrict-aliasing -ffast-math -march=pentium-m  conftest.c >&5
conftest.c:57:19: fatal error: ddraw.h: No such file or directory
compilation terminated.
configure:10179: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| #define PACKAGE_NAME "XaoS"
| #define PACKAGE_TARNAME "xaos"
| #define PACKAGE_VERSION "3.5"
| #define PACKAGE_STRING "XaoS 3.5"
| #define PACKAGE_BUGREPORT "xaos-devel@lists.sourceforge.net"
| #define HAVE_ICONV 1
| #define ICONV_CONST 
| #define ENABLE_NLS 1
| #define HAVE_GETTEXT 1
| #define HAVE_DCGETTEXT 1
| #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_ALLOCA_H 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #include <ddraw.h>
configure:10193: result: no
configure:10197: checking ddraw.h presence
configure:10212: gcc -E  conftest.c
conftest.c:24:19: fatal error: ddraw.h: No such file or directory
compilation terminated.
configure:10219: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| #define PACKAGE_NAME "XaoS"
| #define PACKAGE_TARNAME "xaos"
| #define PACKAGE_VERSION "3.5"
| #define PACKAGE_STRING "XaoS 3.5"
| #define PACKAGE_BUGREPORT "xaos-devel@lists.sourceforge.net"
| #define HAVE_ICONV 1
| #define ICONV_CONST 
| #define ENABLE_NLS 1
| #define HAVE_GETTEXT 1
| #define HAVE_DCGETTEXT 1
| #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_ALLOCA_H 1
| /* end confdefs.h.  */
| #include <ddraw.h>
configure:10233: result: no
configure:10266: checking for ddraw.h
configure:10275: result: no
configure:10155: checking htmlhelp.h usability
configure:10172: gcc -c -O3 -fomit-frame-pointer -malign-double -fstrict-aliasing -ffast-math -march=pentium-m  conftest.c >&5
conftest.c:57:22: fatal error: htmlhelp.h: No such file or directory
compilation terminated.
configure:10179: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| #define PACKAGE_NAME "XaoS"
| #define PACKAGE_TARNAME "xaos"
| #define PACKAGE_VERSION "3.5"
| #define PACKAGE_STRING "XaoS 3.5"
| #define PACKAGE_BUGREPORT "xaos-devel@lists.sourceforge.net"
| #define HAVE_ICONV 1
| #define ICONV_CONST 
| #define ENABLE_NLS 1
| #define HAVE_GETTEXT 1
| #define HAVE_DCGETTEXT 1
| #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_ALLOCA_H 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #include <htmlhelp.h>
configure:10193: result: no
configure:10197: checking htmlhelp.h presence
configure:10212: gcc -E  conftest.c
conftest.c:24:22: fatal error: htmlhelp.h: No such file or directory
compilation terminated.
configure:10219: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| #define PACKAGE_NAME "XaoS"
| #define PACKAGE_TARNAME "xaos"
| #define PACKAGE_VERSION "3.5"
| #define PACKAGE_STRING "XaoS 3.5"
| #define PACKAGE_BUGREPORT "xaos-devel@lists.sourceforge.net"
| #define HAVE_ICONV 1
| #define ICONV_CONST 
| #define ENABLE_NLS 1
| #define HAVE_GETTEXT 1
| #define HAVE_DCGETTEXT 1
| #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_ALLOCA_H 1
| /* end confdefs.h.  */
| #include <htmlhelp.h>
configure:10233: result: no
configure:10266: checking for htmlhelp.h
configure:10275: result: no
configure:10155: checking errno.h usability
configure:10172: gcc -c -O3 -fomit-frame-pointer -malign-double -fstrict-aliasing -ffast-math -march=pentium-m  conftest.c >&5
configure:10179: $? = 0
configure:10193: result: yes
configure:10197: checking errno.h presence
configure:10212: gcc -E  conftest.c
configure:10219: $? = 0
configure:10233: result: yes
configure:10266: checking for errno.h
configure:10275: result: yes
configure:10155: checking fcntl.h usability
configure:10172: gcc -c -O3 -fomit-frame-pointer -malign-double -fstrict-aliasing -ffast-math -march=pentium-m  conftest.c >&5
configure:10179: $? = 0
configure:10193: result: yes
configure:10197: checking fcntl.h presence
configure:10212: gcc -E  conftest.c
configure:10219: $? = 0
configure:10233: result: yes
configure:10266: checking for fcntl.h
configure:10275: result: yes
configure:10155: checking float.h usability
configure:10172: gcc -c -O3 -fomit-frame-pointer -malign-double -fstrict-aliasing -ffast-math -march=pentium-m  conftest.c >&5
configure:10179: $? = 0
configure:10193: result: yes
configure:10197: checking float.h presence
configure:10212: gcc -E  conftest.c
configure:10219: $? = 0
configure:10233: result: yes
configure:10266: checking for float.h
configure:10275: result: yes
configure:10155: checking libintl.h usability
configure:10172: gcc -c -O3 -fomit-frame-pointer -malign-double -fstrict-aliasing -ffast-math -march=pentium-m  conftest.c >&5
configure:10179: $? = 0
configure:10193: result: yes
configure:10197: checking libintl.h presence
configure:10212: gcc -E  conftest.c
configure:10219: $? = 0
configure:10233: result: yes
configure:10266: checking for libintl.h
configure:10275: result: yes
configure:10155: checking limits.h usability
configure:10172: gcc -c -O3 -fomit-frame-pointer -malign-double -fstrict-aliasing -ffast-math -march=pentium-m  conftest.c >&5
configure:10179: $? = 0
configure:10193: result: yes
configure:10197: checking limits.h presence
configure:10212: gcc -E  conftest.c
configure:10219: $? = 0
configure:10233: result: yes
configure:10266: checking for limits.h
configure:10275: result: yes
configure:10155: checking locale.h usability
configure:10172: gcc -c -O3 -fomit-frame-pointer -malign-double -fstrict-aliasing -ffast-math -march=pentium-m  conftest.c >&5
configure:10179: $? = 0
configure:10193: result: yes
configure:10197: checking locale.h presence
configure:10212: gcc -E  conftest.c
configure:10219: $? = 0
configure:10233: result: yes
configure:10266: checking for locale.h
configure:10275: result: yes
configure:10155: checking malloc.h usability
configure:10172: gcc -c -O3 -fomit-frame-pointer -malign-double -fstrict-aliasing -ffast-math -march=pentium-m  conftest.c >&5
configure:10179: $? = 0
configure:10193: result: yes
configure:10197: checking malloc.h presence
configure:10212: gcc -E  conftest.c
configure:10219: $? = 0
configure:10233: result: yes
configure:10266: checking for malloc.h
configure:10275: result: yes
configure:10155: checking stddef.h usability
configure:10172: gcc -c -O3 -fomit-frame-pointer -malign-double -fstrict-aliasing -ffast-math -march=pentium-m  conftest.c >&5
configure:10179: $? = 0
configure:10193: result: yes
configure:10197: checking stddef.h presence
configure:10212: gcc -E  conftest.c
configure:10219: $? = 0
configure:10233: result: yes
configure:10266: checking for stddef.h
configure:10275: result: yes
configure:10144: checking for stdlib.h
configure:10151: result: yes
configure:10144: checking for string.h
configure:10151: result: yes
configure:10155: checking sys/time.h usability
configure:10172: gcc -c -O3 -fomit-frame-pointer -malign-double -fstrict-aliasing -ffast-math -march=pentium-m  conftest.c >&5
configure:10179: $? = 0
configure:10193: result: yes
configure:10197: checking sys/time.h presence
configure:10212: gcc -E  conftest.c
configure:10219: $? = 0
configure:10233: result: yes
configure:10266: checking for sys/time.h
configure:10275: result: yes
configure:10155: checking sys/timeb.h usability
configure:10172: gcc -c -O3 -fomit-frame-pointer -malign-double -fstrict-aliasing -ffast-math -march=pentium-m  conftest.c >&5
configure:10179: $? = 0
configure:10193: result: yes
configure:10197: checking sys/timeb.h presence
configure:10212: gcc -E  conftest.c
configure:10219: $? = 0
configure:10233: result: yes
configure:10266: checking for sys/timeb.h
configure:10275: result: yes
configure:10144: checking for unistd.h
configure:10151: result: yes
configure:10291: checking for an ANSI C-conforming const
configure:10366: gcc -c -O3 -fomit-frame-pointer -malign-double -fstrict-aliasing -ffast-math -march=pentium-m  conftest.c >&5
configure:10373: $? = 0
configure:10388: result: yes
configure:10398: checking for inline
configure:10424: gcc -c -O3 -fomit-frame-pointer -malign-double -fstrict-aliasing -ffast-math -march=pentium-m  conftest.c >&5
configure:10431: $? = 0
configure:10449: result: inline
configure:10470: checking for long double
configure:10527: result: yes
configure:10540: checking whether time.h and sys/time.h may both be included
configure:10570: gcc -c -O3 -fomit-frame-pointer -malign-double -fstrict-aliasing -ffast-math -march=pentium-m  conftest.c >&5
configure:10577: $? = 0
configure:10592: result: yes
configure:10610: checking for dirent.h that defines DIR
configure:10639: gcc -c -O3 -fomit-frame-pointer -malign-double -fstrict-aliasing -ffast-math -march=pentium-m  conftest.c >&5
configure:10646: $? = 0
configure:10663: result: yes
configure:10678: checking for library containing opendir
configure:10719: gcc -o conftest -O3 -fomit-frame-pointer -malign-double -fstrict-aliasing -ffast-math -march=pentium-m   conftest.c  >&5
configure:10726: $? = 0
configure:10757: result: none required
configure:10855: checking for sys/wait.h that is POSIX.1 compatible
configure:10891: gcc -c -O3 -fomit-frame-pointer -malign-double -fstrict-aliasing -ffast-math -march=pentium-m  conftest.c >&5
configure:10898: $? = 0
configure:10913: result: yes
configure:10923: checking for pid_t
configure:10951: gcc -c -O3 -fomit-frame-pointer -malign-double -fstrict-aliasing -ffast-math -march=pentium-m  conftest.c >&5
configure:10958: $? = 0
configure:10985: gcc -c -O3 -fomit-frame-pointer -malign-double -fstrict-aliasing -ffast-math -march=pentium-m  conftest.c >&5
conftest.c: In function 'main':
conftest.c:77:20: error: expected expression before ')' token
configure:10992: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| #define PACKAGE_NAME "XaoS"
| #define PACKAGE_TARNAME "xaos"
| #define PACKAGE_VERSION "3.5"
| #define PACKAGE_STRING "XaoS 3.5"
| #define PACKAGE_BUGREPORT "xaos-devel@lists.sourceforge.net"
| #define HAVE_ICONV 1
| #define ICONV_CONST 
| #define ENABLE_NLS 1
| #define HAVE_GETTEXT 1
| #define HAVE_DCGETTEXT 1
| #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_ALLOCA_H 1
| #define HAVE_ERRNO_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_FLOAT_H 1
| #define HAVE_LIBINTL_H 1
| #define HAVE_LIMITS_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_MALLOC_H 1
| #define HAVE_STDDEF_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_SYS_TIMEB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_LONG_DOUBLE 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DIRENT_H 1
| #define HAVE_SYS_WAIT_H 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| int
| main ()
| {
| if (sizeof ((pid_t)))
| 	  return 0;
|   ;
|   return 0;
| }
configure:11015: result: yes
configure:11027: checking for size_t
configure:11055: gcc -c -O3 -fomit-frame-pointer -malign-double -fstrict-aliasing -ffast-math -march=pentium-m  conftest.c >&5
configure:11062: $? = 0
configure:11089: gcc -c -O3 -fomit-frame-pointer -malign-double -fstrict-aliasing -ffast-math -march=pentium-m  conftest.c >&5
conftest.c: In function 'main':
conftest.c:77:21: error: expected expression before ')' token
configure:11096: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| #define PACKAGE_NAME "XaoS"
| #define PACKAGE_TARNAME "xaos"
| #define PACKAGE_VERSION "3.5"
| #define PACKAGE_STRING "XaoS 3.5"
| #define PACKAGE_BUGREPORT "xaos-devel@lists.sourceforge.net"
| #define HAVE_ICONV 1
| #define ICONV_CONST 
| #define ENABLE_NLS 1
| #define HAVE_GETTEXT 1
| #define HAVE_DCGETTEXT 1
| #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_ALLOCA_H 1
| #define HAVE_ERRNO_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_FLOAT_H 1
| #define HAVE_LIBINTL_H 1
| #define HAVE_LIMITS_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_MALLOC_H 1
| #define HAVE_STDDEF_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_SYS_TIMEB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_LONG_DOUBLE 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DIRENT_H 1
| #define HAVE_SYS_WAIT_H 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #ifdef HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #ifdef HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #ifdef STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # ifdef HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #ifdef HAVE_STRING_H
| # if !defined STDC_HEADERS && defined HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #ifdef HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #ifdef HAVE_INTTYPES_H
| # include <inttypes.h>
| #endif
| #ifdef HAVE_STDINT_H
| # include <stdint.h>
| #endif
| #ifdef HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| int
| main ()
| {
| if (sizeof ((size_t)))
| 	  return 0;
|   ;
|   return 0;
| }
configure:11119: result: yes
configure:11131: checking whether struct tm is in sys/time.h or time.h
configure:11161: gcc -c -O3 -fomit-frame-pointer -malign-double -fstrict-aliasing -ffast-math -march=pentium-m  conftest.c >&5
configure:11168: $? = 0
configure:11183: result: time.h
configure:11207: checking size of short
configure:11512: gcc -o conftest -O3 -fomit-frame-pointer -malign-double -fstrict-aliasing -ffast-math -march=pentium-m   conftest.c  >&5
configure:11516: $? = 0
configure:11522: ./conftest
configure:11526: $? = 0
configure:11552: result: 2
configure:11566: checking size of int
configure:11871: gcc -o conftest -O3 -fomit-frame-pointer -malign-double -fstrict-aliasing -ffast-math -march=pentium-m   conftest.c  >&5
configure:11875: $? = 0
configure:11881: ./conftest
configure:11885: $? = 0
configure:11911: result: 4
configure:11925: checking size of long
configure:12230: gcc -o conftest -O3 -fomit-frame-pointer -malign-double -fstrict-aliasing -ffast-math -march=pentium-m   conftest.c  >&5
configure:12234: $? = 0
configure:12240: ./conftest
configure:12244: $? = 0
configure:12270: result: 4
configure:12283: checking for pow in -lm
configure:12318: gcc -o conftest -O3 -fomit-frame-pointer -malign-double -fstrict-aliasing -ffast-math -march=pentium-m   conftest.c -lm   >&5
conftest.c:52:6: warning: conflicting types for built-in function 'pow'
configure:12325: $? = 0
configure:12346: result: yes
configure:12601: checking for working alloca.h
configure:12628: gcc -o conftest -O3 -fomit-frame-pointer -malign-double -fstrict-aliasing -ffast-math -march=pentium-m   conftest.c -lm  >&5
configure:12635: $? = 0
configure:12655: result: yes
configure:12665: checking for alloca
configure:12712: gcc -o conftest -O3 -fomit-frame-pointer -malign-double -fstrict-aliasing -ffast-math -march=pentium-m   conftest.c -lm  >&5
configure:12719: $? = 0
configure:12739: result: yes
configure:12999: checking for ftime
configure:13055: gcc -o conftest -O3 -fomit-frame-pointer -malign-double -fstrict-aliasing -ffast-math -march=pentium-m   conftest.c -lm  >&5
configure:13062: $? = 0
configure:13084: result: yes
configure:12999: checking for getcwd
configure:13055: gcc -o conftest -O3 -fomit-frame-pointer -malign-double -fstrict-aliasing -ffast-math -march=pentium-m   conftest.c -lm  >&5
configure:13062: $? = 0
configure:13084: result: yes
configure:12999: checking for gettimeofday
configure:13055: gcc -o conftest -O3 -fomit-frame-pointer -malign-double -fstrict-aliasing -ffast-math -march=pentium-m   conftest.c -lm  >&5
configure:13062: $? = 0
configure:13084: result: yes
configure:12999: checking for memchr
configure:13055: gcc -o conftest -O3 -fomit-frame-pointer -malign-double -fstrict-aliasing -ffast-math -march=pentium-m   conftest.c -lm  >&5
conftest.c:74:6: warning: conflicting types for built-in function 'memchr'
configure:13062: $? = 0
configure:13084: result: yes
configure:12999: checking for memmove
configure:13055: gcc -o conftest -O3 -fomit-frame-pointer -malign-double -fstrict-aliasing -ffast-math -march=pentium-m   conftest.c -lm  >&5
conftest.c:75:6: warning: conflicting types for built-in function 'memmove'
configure:13062: $? = 0
configure:13084: result: yes
configure:12999: checking for memset
configure:13055: gcc -o conftest -O3 -fomit-frame-pointer -malign-double -fstrict-aliasing -ffast-math -march=pentium-m   conftest.c -lm  >&5
conftest.c:76:6: warning: conflicting types for built-in function 'memset'
configure:13062: $? = 0
configure:13084: result: yes
configure:12999: checking for pow
configure:13055: gcc -o conftest -O3 -fomit-frame-pointer -malign-double -fstrict-aliasing -ffast-math -march=pentium-m   conftest.c -lm  >&5
conftest.c:77:6: warning: conflicting types for built-in function 'pow'
configure:13062: $? = 0
configure:13084: result: yes
configure:12999: checking for select
configure:13055: gcc -o conftest -O3 -fomit-frame-pointer -malign-double -fstrict-aliasing -ffast-math -march=pentium-m   conftest.c -lm  >&5
configure:13062: $? = 0
configure:13084: result: yes
configure:12999: checking for setlocale
configure:13055: gcc -o conftest -O3 -fomit-frame-pointer -malign-double -fstrict-aliasing -ffast-math -march=pentium-m   conftest.c -lm  >&5
configure:13062: $? = 0
configure:13084: result: yes
configure:12999: checking for sqrt
configure:13055: gcc -o conftest -O3 -fomit-frame-pointer -malign-double -fstrict-aliasing -ffast-math -march=pentium-m   conftest.c -lm  >&5
conftest.c:80:6: warning: conflicting types for built-in function 'sqrt'
configure:13062: $? = 0
configure:13084: result: yes
configure:12999: checking for strdup
configure:13055: gcc -o conftest -O3 -fomit-frame-pointer -malign-double -fstrict-aliasing -ffast-math -march=pentium-m   conftest.c -lm  >&5
conftest.c:81:6: warning: conflicting types for built-in function 'strdup'
configure:13062: $? = 0
configure:13084: result: yes
configure:12999: checking for strerror
configure:13055: gcc -o conftest -O3 -fomit-frame-pointer -malign-double -fstrict-aliasing -ffast-math -march=pentium-m   conftest.c -lm  >&5
configure:13062: $? = 0
configure:13084: result: yes
configure:12999: checking for strstr
configure:13055: gcc -o conftest -O3 -fomit-frame-pointer -malign-double -fstrict-aliasing -ffast-math -march=pentium-m   conftest.c -lm  >&5
conftest.c:83:6: warning: conflicting types for built-in function 'strstr'
configure:13062: $? = 0
configure:13084: result: yes
configure:12999: checking for sleep
configure:13055: gcc -o conftest -O3 -fomit-frame-pointer -malign-double -fstrict-aliasing -ffast-math -march=pentium-m   conftest.c -lm  >&5
configure:13062: $? = 0
configure:13084: result: yes
configure:12999: checking for setitimer
configure:13055: gcc -o conftest -O3 -fomit-frame-pointer -malign-double -fstrict-aliasing -ffast-math -march=pentium-m   conftest.c -lm  >&5
configure:13062: $? = 0
configure:13084: result: yes
configure:12999: checking for ftime
configure:13084: result: yes
configure:12999: checking for finite
configure:13055: gcc -o conftest -O3 -fomit-frame-pointer -malign-double -fstrict-aliasing -ffast-math -march=pentium-m   conftest.c -lm  >&5
conftest.c:87:6: warning: conflicting types for built-in function 'finite'
configure:13062: $? = 0
configure:13084: result: yes
configure:12999: checking for fabsl
configure:13055: gcc -o conftest -O3 -fomit-frame-pointer -malign-double -fstrict-aliasing -ffast-math -march=pentium-m   conftest.c -lm  >&5
conftest.c:88:6: warning: conflicting types for built-in function 'fabsl'
configure:13062: $? = 0
configure:13084: result: yes
configure:12999: checking for _fabsl
configure:13055: gcc -o conftest -O3 -fomit-frame-pointer -malign-double -fstrict-aliasing -ffast-math -march=pentium-m   conftest.c -lm  >&5
/tmp/ccz1QLND.o: In function `main':
conftest.c:(.text+0x7): undefined reference to `_fabsl'
collect2: ld returned 1 exit status
configure:13062: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| #define PACKAGE_NAME "XaoS"
| #define PACKAGE_TARNAME "xaos"
| #define PACKAGE_VERSION "3.5"
| #define PACKAGE_STRING "XaoS 3.5"
| #define PACKAGE_BUGREPORT "xaos-devel@lists.sourceforge.net"
| #define HAVE_ICONV 1
| #define ICONV_CONST 
| #define ENABLE_NLS 1
| #define HAVE_GETTEXT 1
| #define HAVE_DCGETTEXT 1
| #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_ALLOCA_H 1
| #define HAVE_ERRNO_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_FLOAT_H 1
| #define HAVE_LIBINTL_H 1
| #define HAVE_LIMITS_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_MALLOC_H 1
| #define HAVE_STDDEF_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_SYS_TIMEB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_LONG_DOUBLE 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DIRENT_H 1
| #define HAVE_SYS_WAIT_H 1
| #define DATAPATH "/usr/share/XaoS"
| #define SIZEOF_SHORT 2
| #define SIZEOF_INT 4
| #define SIZEOF_LONG 4
| #define HAVE_LIBM 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_FTIME 1
| #define HAVE_GETCWD 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_MEMCHR 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MEMSET 1
| #define HAVE_POW 1
| #define HAVE_SELECT 1
| #define HAVE_SETLOCALE 1
| #define HAVE_SQRT 1
| #define HAVE_STRDUP 1
| #define HAVE_STRERROR 1
| #define HAVE_STRSTR 1
| #define HAVE_SLEEP 1
| #define HAVE_SETITIMER 1
| #define HAVE_FTIME 1
| #define HAVE_FINITE 1
| #define HAVE_FABSL 1
| /* end confdefs.h.  */
| /* Define _fabsl to an innocuous variant, in case <limits.h> declares _fabsl.
|    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
| #define _fabsl innocuous__fabsl
| 
| /* System header to define __stub macros and hopefully few prototypes,
|     which can conflict with char _fabsl (); 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 _fabsl
| 
| /* Override any GCC internal prototype to avoid an error.
|    Use char because int might match the return type of a GCC
|    builtin and then its argument prototype would still apply.  */
| #ifdef __cplusplus
| extern "C"
| #endif
| char _fabsl ();
| /* 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__fabsl || defined __stub____fabsl
| choke me
| #endif
| 
| int
| main ()
| {
| return _fabsl ();
|   ;
|   return 0;
| }
configure:13084: result: no
configure:12999: checking for __fabsl
configure:13055: gcc -o conftest -O3 -fomit-frame-pointer -malign-double -fstrict-aliasing -ffast-math -march=pentium-m   conftest.c -lm  >&5
/tmp/ccysv2DH.o: In function `main':
conftest.c:(.text+0x7): undefined reference to `__fabsl'
collect2: ld returned 1 exit status
configure:13062: $? = 1
configure: failed program was:
| /* confdefs.h.  */
| #define PACKAGE_NAME "XaoS"
| #define PACKAGE_TARNAME "xaos"
| #define PACKAGE_VERSION "3.5"
| #define PACKAGE_STRING "XaoS 3.5"
| #define PACKAGE_BUGREPORT "xaos-devel@lists.sourceforge.net"
| #define HAVE_ICONV 1
| #define ICONV_CONST 
| #define ENABLE_NLS 1
| #define HAVE_GETTEXT 1
| #define HAVE_DCGETTEXT 1
| #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_ALLOCA_H 1
| #define HAVE_ERRNO_H 1
| #define HAVE_FCNTL_H 1
| #define HAVE_FLOAT_H 1
| #define HAVE_LIBINTL_H 1
| #define HAVE_LIMITS_H 1
| #define HAVE_LOCALE_H 1
| #define HAVE_MALLOC_H 1
| #define HAVE_STDDEF_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_SYS_TIME_H 1
| #define HAVE_SYS_TIMEB_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_LONG_DOUBLE 1
| #define TIME_WITH_SYS_TIME 1
| #define HAVE_DIRENT_H 1
| #define HAVE_SYS_WAIT_H 1
| #define DATAPATH "/usr/share/XaoS"
| #define SIZEOF_SHORT 2
| #define SIZEOF_INT 4
| #define SIZEOF_LONG 4
| #define HAVE_LIBM 1
| #define HAVE_ALLOCA_H 1
| #define HAVE_ALLOCA 1
| #define HAVE_FTIME 1
| #define HAVE_GETCWD 1
| #define HAVE_GETTIMEOFDAY 1
| #define HAVE_MEMCHR 1
| #define HAVE_MEMMOVE 1
| #define HAVE_MEMSET 1
| #define HAVE_POW 1
| #define HAVE_SELECT 1
| #define HAVE_SETLOCALE 1
| #define HAVE_SQRT 1
| #define HAVE_STRDUP 1
| #define HAVE_STRERROR 1
| #define HAVE_STRSTR 1
| #define HAVE_SLEEP 1
| #define HAVE_SETITIMER 1
| #define HAVE_FTIME 1
| #define HAVE_FINITE 1
| #define HAVE_FABSL 1
| /* end confdefs.h.  */
| /* Define __fabsl to an innocuous variant, in case <limits.h> declares __fabsl.
|    For example, HP-UX 11i <limits.h> declares gettimeofday.  */
| #define __fabsl innocuous___fabsl
| 
| /* System header to define __stub macros and hopefully few prototypes,
|     which can conflict with char __fabsl (); 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 __fabsl
| 
| /* Override any GCC internal prototype to avoid an error.
|    Use char because int might match the return type of a GCC
|    builtin and then its argument prototype would still apply.  */
| #ifdef __cplusplus
| extern "C"
| #endif
| char __fabsl ();
| /* 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___fabsl || defined __stub_____fabsl
| choke me
| #endif
| 
| int
| main ()
| {
| return __fabsl ();
|   ;
|   return 0;
| }
configure:13084: result: no
configure:13109: checking sys/ipc.h usability
configure:13126: gcc -c -O3 -fomit-frame-pointer -malign-double -fstrict-aliasing -ffast-math -march=pentium-m  conftest.c >&5
configure:13133: $? = 0
configure:13147: result: yes
configure:13151: checking sys/ipc.h presence
configure:13166: gcc -E  conftest.c
configure:13173: $? = 0
configure:13187: result: yes
configure:13220: checking for sys/ipc.h
configure:13227: result: yes
configure:13251: checking sys/shm.h usability
configure:13268: gcc -c -O3 -fomit-frame-pointer -malign-double -fstrict-aliasing -ffast-math -march=pentium-m  conftest.c >&5
configure:13275: $? = 0
configure:13289: result: yes
configure:13293: checking sys/shm.h presence
configure:13308: gcc -E  conftest.c
configure:13315: $? = 0
configure:13329: result: yes
configure:13362: checking for sys/shm.h
configure:13369: result: yes
configure:13385: checking X11/extensions/XShm.h
configure:13395: result: no
configure:13401: checking for XShmAttach in -lXext
configure:13436: gcc -o conftest -O3 -fomit-frame-pointer -malign-double -fstrict-aliasing -ffast-math -march=pentium-m   conftest.c -lXext   -lm  >&5
configure:13443: $? = 0
configure:13464: result: yes
configure:13789: checking for gsl-config
configure:13807: found /usr/bin/gsl-config
configure:13820: result: /usr/bin/gsl-config
configure:13828: checking for GSL
configure:13835: result: yes
configure:14016: creating ./config.status

## ---------------------- ##
## Running config.status. ##
## ---------------------- ##

This file was extended by XaoS config.status 3.5, which was
generated by GNU Autoconf 2.63.  Invocation command line was

  CONFIG_FILES    = 
  CONFIG_HEADERS  = 
  CONFIG_LINKS    = 
  CONFIG_COMMANDS = 
  $ ./config.status 

on Archlinux

config.status:864: creating src/i18n/Makefile.in
config.status:864: creating Makefile
config.status:1016: WARNING:  'Makefile.in' seems to ignore the --datarootdir setting
config.status:864: creating src/Makefile
config.status:864: creating src/i18n/Makefile
config.status:864: creating src/engine/Makefile
config.status:864: creating src/util/Makefile
config.status:864: creating src/ui/Makefile
config.status:864: creating src/filter/Makefile
config.status:864: creating src/ui-hlp/Makefile
config.status:864: creating src/ui/ui-drv/aa/Makefile
config.status:864: creating src/ui/ui-drv/x11/Makefile
config.status:864: creating src/ui/ui-drv/win32/Makefile
config.status:864: creating doc/Makefile
config.status:864: creating help/Makefile
config.status:864: creating src/ui/ui-drv/gtk/Makefile
config.status:864: creating src/sffe/Makefile
config.status:864: creating src/include/aconfig.h
config.status:864: creating src/include/version.h
config.status:1104: executing po-directories commands

## ---------------- ##
## Cache variables. ##
## ---------------- ##

ac_cv_build=i686-pc-linux-gnu
ac_cv_c_compiler_gnu=yes
ac_cv_c_const=yes
ac_cv_c_inline=inline
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_DEPS_CFLAGS_set=
ac_cv_env_DEPS_CFLAGS_value=
ac_cv_env_DEPS_LIBS_set=
ac_cv_env_DEPS_LIBS_value=
ac_cv_env_LDFLAGS_set=
ac_cv_env_LDFLAGS_value=
ac_cv_env_LIBS_set=
ac_cv_env_LIBS_value=
ac_cv_env_PKG_CONFIG_set=
ac_cv_env_PKG_CONFIG_value=
ac_cv_env_XMKMF_set=
ac_cv_env_XMKMF_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_func___fabsl=no
ac_cv_func__fabsl=no
ac_cv_func_alloca_works=yes
ac_cv_func_connect=yes
ac_cv_func_fabsl=yes
ac_cv_func_finite=yes
ac_cv_func_ftime=yes
ac_cv_func_getcwd=yes
ac_cv_func_gethostbyname=yes
ac_cv_func_gettimeofday=yes
ac_cv_func_memchr=yes
ac_cv_func_memmove=yes
ac_cv_func_memset=yes
ac_cv_func_pow=yes
ac_cv_func_remove=yes
ac_cv_func_select=yes
ac_cv_func_setitimer=yes
ac_cv_func_setlocale=yes
ac_cv_func_shmat=yes
ac_cv_func_sleep=yes
ac_cv_func_sqrt=yes
ac_cv_func_strdup=yes
ac_cv_func_strerror=yes
ac_cv_func_strstr=yes
ac_cv_have_x='have_x=yes	ac_x_includes='\'''\''	ac_x_libraries='\'''\'''
ac_cv_header_alloca_h=yes
ac_cv_header_ddraw_h=no
ac_cv_header_dirent_dirent_h=yes
ac_cv_header_errno_h=yes
ac_cv_header_fcntl_h=yes
ac_cv_header_float_h=yes
ac_cv_header_htmlhelp_h=no
ac_cv_header_inttypes_h=yes
ac_cv_header_libintl_h=yes
ac_cv_header_limits_h=yes
ac_cv_header_locale_h=yes
ac_cv_header_malloc_h=yes
ac_cv_header_memory_h=yes
ac_cv_header_stdc=yes
ac_cv_header_stddef_h=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_ipc_h=yes
ac_cv_header_sys_shm_h=yes
ac_cv_header_sys_stat_h=yes
ac_cv_header_sys_time_h=yes
ac_cv_header_sys_timeb_h=yes
ac_cv_header_sys_types_h=yes
ac_cv_header_sys_wait_h=yes
ac_cv_header_time=yes
ac_cv_header_unistd_h=yes
ac_cv_host=i686-pc-linux-gnu
ac_cv_lib_ICE_IceConnectionNumber=yes
ac_cv_lib_Xext_XShmAttach=yes
ac_cv_lib_m_pow=yes
ac_cv_objext=o
ac_cv_path_EGREP='/bin/grep -E'
ac_cv_path_GMSGFMT=/usr/bin/msgfmt
ac_cv_path_GREP=/bin/grep
ac_cv_path_GSL_CONFIG=/usr/bin/gsl-config
ac_cv_path_MSGFMT=/usr/bin/msgfmt
ac_cv_path_MSGMERGE=/usr/bin/msgmerge
ac_cv_path_XGETTEXT=/usr/bin/xgettext
ac_cv_path_install='/bin/install -c'
ac_cv_path_mkdir=/bin/mkdir
ac_cv_prog_CPP='gcc -E'
ac_cv_prog_ac_ct_CC=gcc
ac_cv_prog_ac_ct_RANLIB=ranlib
ac_cv_prog_cc_c89=
ac_cv_prog_cc_g=yes
ac_cv_prog_make_make_set=yes
ac_cv_search_opendir='none required'
ac_cv_sizeof_int=4
ac_cv_sizeof_long=4
ac_cv_sizeof_short=2
ac_cv_struct_tm=time.h
ac_cv_type_long_double=yes
ac_cv_type_pid_t=yes
ac_cv_type_size_t=yes
ac_cv_working_alloca_h=yes
acl_cv_hardcode_direct=no
acl_cv_hardcode_libdir_flag_spec='${wl}-rpath ${wl}$libdir'
acl_cv_hardcode_libdir_separator=
acl_cv_hardcode_minus_L=no
acl_cv_libext=a
acl_cv_path_LD=/usr/bin/ld
acl_cv_prog_gnu_ld=yes
acl_cv_rpath=done
acl_cv_shlibext=so
acl_cv_wl=-Wl,
am_cv_func_iconv=yes
am_cv_func_iconv_works=yes
am_cv_lib_iconv=no
am_cv_proto_iconv='extern size_t iconv (iconv_t cd, char * *inbuf, size_t *inbytesleft, char * *outbuf, size_t *outbytesleft);'
am_cv_proto_iconv_arg1=
ax_cv_c_compiler_vendor=gnu
ax_cv_c_flags__O3__fomit_frame_pointer__malign_double__fstrict_aliasing__ffast_math__march_pentium_m=yes
ax_cv_c_flags__ffast_math=yes
ax_cv_c_flags__fstrict_aliasing=yes
ax_cv_c_flags__malign_double=yes
ax_cv_c_flags__march_pentium_m=yes
ax_cv_gcc_archflag=-march=pentium-m
ax_cv_gcc_x86_cpuid_0=2:756e6547:6c65746e:49656e69
ax_cv_gcc_x86_cpuid_1=6d6:816:180:afe9fbbf
gt_cv_func_CFLocaleCopyCurrent=no
gt_cv_func_CFPreferencesCopyAppValue=no
gt_cv_func_gnugettext1_libc=yes

## ----------------- ##
## Output variables. ##
## ----------------- ##

ALLOCA=''
AR='ar'
ASM_CMPLX_O=''
BINPATH='/home/army/Programme/AUR/xaos/xaos-3.5/bin'
CC='gcc'
CFLAGS='-O3 -fomit-frame-pointer -malign-double -fstrict-aliasing -ffast-math -march=pentium-m  -I/usr/include -fomit-frame-pointer -DSFFE_USING -DSFFE_CMPLX_GSL -I/home/army/Programme/AUR/xaos/xaos-3.5/src/include'
CMPLX_O_TARGET=''
CPP='gcc -E'
CPPFLAGS=''
DEFS='-DHAVE_CONFIG_H'
DEPS_CFLAGS=''
DEPS_LIBS=''
DRIVERDIRS=' ui/ui-drv/x11'
DRIVERLIBS='lib/libui.a lib/libui-hlp.a lib/libengine.a lib/libutil.a lib/libfilter.a lib/libuix11.a lib/libsffe.a'
ECHO_C=''
ECHO_N='-n'
ECHO_T=''
EGREP='/bin/grep -E'
EXEEXT=''
GETTEXT_MACRO_VERSION='0.17'
GMSGFMT='/usr/bin/msgfmt'
GMSGFMT_015='/usr/bin/msgfmt'
GREP='/bin/grep'
GSL_CONFIG='/usr/bin/gsl-config'
INSTALL_DATA='${INSTALL} -m 644'
INSTALL_PROGRAM='${INSTALL}'
INSTALL_SCRIPT='${INSTALL}'
INTLLIBS=''
INTL_MACOSX_LIBS=''
LDFLAGS=''
LIBICONV=''
LIBINTL=''
LIBOBJS=''
LIBPATH='/home/army/Programme/AUR/xaos/xaos-3.5/src/lib'
LIBS='-lm  -lXext   -lX11 -L/usr/lib -lgsl -lgslcblas -lm'
LOCALEDIR='/usr/share/locale'
LTLIBICONV=''
LTLIBINTL=''
LTLIBOBJS=''
MKDIR_P='/bin/mkdir -p'
MSGFMT='/usr/bin/msgfmt'
MSGFMT_015='/usr/bin/msgfmt'
MSGMERGE='/usr/bin/msgmerge'
NASM=''
OBJEXT='o'
PACKAGE_BUGREPORT='xaos-devel@lists.sourceforge.net'
PACKAGE_NAME='XaoS'
PACKAGE_STRING='XaoS 3.5'
PACKAGE_TARNAME='xaos'
PACKAGE_VERSION='3.5'
PATH_SEPARATOR=':'
PKG_CONFIG=''
POFILES=' cs.po es.po hu.po fr.po de.po ro.po it.po pt.po'
POSUB='po'
PRTDIAG=''
RANLIB='ranlib'
REALTOPDIR='/home/army/Programme/AUR/xaos/xaos-3.5'
SET_MAKE=''
SHELL='/bin/sh'
SRCPATH='/home/army/Programme/AUR/xaos/xaos-3.5/src'
TOPDIR='/home/army/Programme/AUR/xaos/xaos-3.5'
USE_NLS='yes'
XGETTEXT='/usr/bin/xgettext'
XGETTEXT_015='/usr/bin/xgettext'
XGETTEXT_EXTRA_OPTIONS=''
XMKMF=''
X_CFLAGS=''
X_EXTRA_LIBS=''
X_LIBS=''
X_PRE_LIBS=' -lSM -lICE'
ac_ct_CC='gcc'
bindir='${exec_prefix}/bin'
build='i686-pc-linux-gnu'
build_alias=''
build_cpu='i686'
build_os='linux-gnu'
build_vendor='pc'
datadir='${datarootdir}'
datarootdir='${prefix}/share'
docdir='${datarootdir}/doc/${PACKAGE_TARNAME}'
dvidir='${docdir}'
exec_prefix='${prefix}'
host='i686-pc-linux-gnu'
host_alias=''
host_cpu='i686'
host_os='linux-gnu'
host_vendor='pc'
htmldir='${docdir}'
includedir='${prefix}/include'
infodir='${datarootdir}/info'
libdir='${exec_prefix}/lib'
libexecdir='${exec_prefix}/libexec'
localedir='${datarootdir}/locale'
localstatedir='${prefix}/var'
mandir='${datarootdir}/man'
mkdir_p='/bin/mkdir -p'
oldincludedir='/usr/include'
pdfdir='${docdir}'
prefix='/usr'
program_transform_name='s,x,x,'
psdir='${docdir}'
sbindir='${exec_prefix}/sbin'
sharedstatedir='${prefix}/com'
sysconfdir='${prefix}/etc'
target_alias=''

## ----------- ##
## confdefs.h. ##
## ----------- ##

#define PACKAGE_NAME "XaoS"
#define PACKAGE_TARNAME "xaos"
#define PACKAGE_VERSION "3.5"
#define PACKAGE_STRING "XaoS 3.5"
#define PACKAGE_BUGREPORT "xaos-devel@lists.sourceforge.net"
#define HAVE_ICONV 1
#define ICONV_CONST 
#define ENABLE_NLS 1
#define HAVE_GETTEXT 1
#define HAVE_DCGETTEXT 1
#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_ALLOCA_H 1
#define HAVE_ERRNO_H 1
#define HAVE_FCNTL_H 1
#define HAVE_FLOAT_H 1
#define HAVE_LIBINTL_H 1
#define HAVE_LIMITS_H 1
#define HAVE_LOCALE_H 1
#define HAVE_MALLOC_H 1
#define HAVE_STDDEF_H 1
#define HAVE_STDLIB_H 1
#define HAVE_STRING_H 1
#define HAVE_SYS_TIME_H 1
#define HAVE_SYS_TIMEB_H 1
#define HAVE_UNISTD_H 1
#define HAVE_LONG_DOUBLE 1
#define TIME_WITH_SYS_TIME 1
#define HAVE_DIRENT_H 1
#define HAVE_SYS_WAIT_H 1
#define DATAPATH "/usr/share/XaoS"
#define SIZEOF_SHORT 2
#define SIZEOF_INT 4
#define SIZEOF_LONG 4
#define HAVE_LIBM 1
#define HAVE_ALLOCA_H 1
#define HAVE_ALLOCA 1
#define HAVE_FTIME 1
#define HAVE_GETCWD 1
#define HAVE_GETTIMEOFDAY 1
#define HAVE_MEMCHR 1
#define HAVE_MEMMOVE 1
#define HAVE_MEMSET 1
#define HAVE_POW 1
#define HAVE_SELECT 1
#define HAVE_SETLOCALE 1
#define HAVE_SQRT 1
#define HAVE_STRDUP 1
#define HAVE_STRERROR 1
#define HAVE_STRSTR 1
#define HAVE_SLEEP 1
#define HAVE_SETITIMER 1
#define HAVE_FTIME 1
#define HAVE_FINITE 1
#define HAVE_FABSL 1
#define HAVE_IPC_H 1
#define HAVE_IPC_H 1
#define X11_DRIVER 1

configure: exit 0



Create a new paste based on this one


Comments: