File: config.log

package info (click to toggle)
kuake 0.3-2
  • links: PTS
  • area: main
  • in suites: sarge
  • size: 3,172 kB
  • ctags: 1,408
  • sloc: sh: 10,646; perl: 2,028; cpp: 776; makefile: 96
file content (2022 lines) | stat: -rw-r--r-- 73,803 bytes parent folder | download | duplicates (2)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
This file contains any messages produced by compilers while
running configure, to aid debugging if configure makes a mistake.

It was created by configure, which was
generated by GNU Autoconf 2.57.  Invocation command line was

  $ ./configure 

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

hostname = virgo
uname -m = i686
uname -r = 2.4.22
uname -s = Linux
uname -v = #6 Tue Sep 2 17:43:01 PDT 2003

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

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

PATH: /usr/local/bin
PATH: /usr/bin
PATH: /bin
PATH: /usr/X11R6/bin
PATH: /usr/games
PATH: /opt/www/htdig/bin
PATH: /usr/lib/java/bin
PATH: /usr/lib/java/jre/bin
PATH: /opt/kde/bin
PATH: /usr/lib/qt-3.2.3/bin
PATH: /usr/share/texmf/bin
PATH: .
PATH: /home/martin/bin
PATH: /home/martin/j2sdk1.4.2_01/bin
PATH: /home/martin/ant/bin
PATH: /home/martin/midp1.0.3fcs/bin


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

configure:1509: checking build system type
configure:1527: result: i686-pc-linux-gnu
configure:1535: checking host system type
configure:1549: result: i686-pc-linux-gnu
configure:1557: checking target system type
configure:1571: result: i686-pc-linux-gnu
configure:1617: checking for a BSD-compatible install
configure:1671: result: /usr/bin/ginstall -c
configure:1686: checking for -p flag to install
configure:1699: result: yes
configure:1710: checking whether build environment is sane
configure:1753: result: yes
configure:1773: checking for gawk
configure:1789: found /usr/bin/gawk
configure:1799: result: gawk
configure:1809: checking whether make sets $(MAKE)
configure:1829: result: yes
configure:2041: checking for style of include used by make
configure:2069: result: GNU
configure:2216: checking for gcc
configure:2232: found /usr/bin/gcc
configure:2242: result: gcc
configure:2486: checking for C compiler version
configure:2489: gcc --version </dev/null >&5
gcc (GCC) 3.2.3
Copyright (C) 2002 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:2492: $? = 0
configure:2494: gcc -v </dev/null >&5
Reading specs from /usr/lib/gcc-lib/i486-slackware-linux/3.2.3/specs
Configured with: ../gcc-3.2.3/configure --prefix=/usr --enable-shared --enable-threads=posix --enable-__cxa_atexit --disable-checking --with-gnu-ld --verbose --target=i486-slackware-linux --host=i486-slackware-linux
Thread model: posix
gcc version 3.2.3
configure:2497: $? = 0
configure:2499: gcc -V </dev/null >&5
gcc: argument to `-V' is missing
configure:2502: $? = 1
configure:2526: checking for C compiler default output
configure:2529: gcc     conftest.c  >&5
configure:2532: $? = 0
configure:2578: result: a.out
configure:2583: checking whether the C compiler works
configure:2589: ./a.out
configure:2592: $? = 0
configure:2609: result: yes
configure:2616: checking whether we are cross compiling
configure:2618: result: no
configure:2621: checking for suffix of executables
configure:2623: gcc -o conftest     conftest.c  >&5
configure:2626: $? = 0
configure:2651: result: 
configure:2657: checking for suffix of object files
configure:2679: gcc -c    conftest.c >&5
configure:2682: $? = 0
configure:2704: result: o
configure:2708: checking whether we are using the GNU C compiler
configure:2733: gcc -c    conftest.c >&5
configure:2736: $? = 0
configure:2739: test -s conftest.o
configure:2742: $? = 0
configure:2755: result: yes
configure:2761: checking whether gcc accepts -g
configure:2783: gcc -c -g  conftest.c >&5
configure:2786: $? = 0
configure:2789: test -s conftest.o
configure:2792: $? = 0
configure:2803: result: yes
configure:2820: checking for gcc option to accept ANSI C
configure:2881: gcc  -c    conftest.c >&5
configure:2884: $? = 0
configure:2887: test -s conftest.o
configure:2890: $? = 0
configure:2908: result: none needed
configure:2926: gcc -c    conftest.c >&5
conftest.c:2: syntax error before "me"
configure:2929: $? = 1
configure: failed program was:
| #ifndef __cplusplus
|   choke me
| #endif
configure:3040: checking dependency style of gcc
configure:3102: result: gcc3
configure:3125: checking how to run the C preprocessor
configure:3161: gcc -E  conftest.c
configure:3167: $? = 0
configure:3199: gcc -E  conftest.c
configure:3200:28: ac_nonexistent.h: No such file or directory
configure:3205: $? = 1
configure: failed program was:
| #line 3190 "configure"
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE "kuake"
| #define VERSION "0.1"
| /* end confdefs.h.  */
| #include <ac_nonexistent.h>
configure:3243: result: gcc -E
configure:3268: gcc -E  conftest.c
configure:3274: $? = 0
configure:3306: gcc -E  conftest.c
configure:3307:28: ac_nonexistent.h: No such file or directory
configure:3312: $? = 1
configure: failed program was:
| #line 3297 "configure"
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE "kuake"
| #define VERSION "0.1"
| /* end confdefs.h.  */
| #include <ac_nonexistent.h>
configure:3435: checking for g++
configure:3451: found /usr/bin/g++
configure:3461: result: g++
configure:3477: checking for C++ compiler version
configure:3480: g++ --version </dev/null >&5
g++ (GCC) 3.2.3
Copyright (C) 2002 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:3483: $? = 0
configure:3485: g++ -v </dev/null >&5
Reading specs from /usr/lib/gcc-lib/i486-slackware-linux/3.2.3/specs
Configured with: ../gcc-3.2.3/configure --prefix=/usr --enable-shared --enable-threads=posix --enable-__cxa_atexit --disable-checking --with-gnu-ld --verbose --target=i486-slackware-linux --host=i486-slackware-linux
Thread model: posix
gcc version 3.2.3
configure:3488: $? = 0
configure:3490: g++ -V </dev/null >&5
g++: argument to `-V' missing

configure:3493: $? = 1
configure:3496: checking whether we are using the GNU C++ compiler
configure:3521: g++ -c    conftest.cc >&5
configure:3524: $? = 0
configure:3527: test -s conftest.o
configure:3530: $? = 0
configure:3543: result: yes
configure:3549: checking whether g++ accepts -g
configure:3571: g++ -c -g  conftest.cc >&5
configure:3574: $? = 0
configure:3577: test -s conftest.o
configure:3580: $? = 0
configure:3591: result: yes
configure:3635: g++ -c    conftest.cc >&5
configure:3638: $? = 0
configure:3641: test -s conftest.o
configure:3644: $? = 0
configure:3671: g++ -c    conftest.cc >&5
configure: In function `int main()':
configure:3668: `exit' undeclared (first use this function)
configure:3668: (Each undeclared identifier is reported only once for each 
   function it appears in.)
configure:3674: $? = 1
configure: failed program was:
| #line 3654 "configure"
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE "kuake"
| #define VERSION "0.1"
| /* end confdefs.h.  */
| 
| int
| main ()
| {
| exit (42);
|   ;
|   return 0;
| }
configure:3635: g++ -c    conftest.cc >&5
configure:3638: $? = 0
configure:3641: test -s conftest.o
configure:3644: $? = 0
configure:3671: g++ -c    conftest.cc >&5
configure:3674: $? = 0
configure:3677: test -s conftest.o
configure:3680: $? = 0
configure:3705: checking dependency style of g++
configure:3767: result: gcc3
configure:4063: checking whether g++ supports -Wundef
configure:4100: rm -rf SunWS_cache; g++ -o conftest -Wall -pedantic -W -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -ansi -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -Wcast-align -Wconversion -O2   -Wundef   conftest.cc  1>&5
configure:4103: $? = 0
configure:4106: test -s conftest
configure:4109: $? = 0
configure:4129: result: yes
configure:4141: checking whether g++ supports -Wno-long-long
configure:4178: rm -rf SunWS_cache; g++ -o conftest -Wundef -Wall -pedantic -W -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -ansi -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -Wcast-align -Wconversion -O2   -Wno-long-long   conftest.cc  1>&5
configure:4181: $? = 0
configure:4184: test -s conftest
configure:4187: $? = 0
configure:4207: result: yes
configure:4219: checking whether g++ supports -Wnon-virtual-dtor
configure:4256: rm -rf SunWS_cache; g++ -o conftest -Wno-long-long -Wundef -Wall -pedantic -W -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -ansi -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -Wcast-align -Wconversion -O2   -Wnon-virtual-dtor   conftest.cc  1>&5
configure:4259: $? = 0
configure:4262: test -s conftest
configure:4265: $? = 0
configure:4285: result: yes
configure:4305: checking whether g++ supports -fno-exceptions
configure:4342: rm -rf SunWS_cache; g++ -o conftest -Wnon-virtual-dtor -Wno-long-long -Wundef -Wall -pedantic -W -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -ansi -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -Wcast-align -Wconversion -O2   -fno-exceptions   conftest.cc  1>&5
configure:4345: $? = 0
configure:4348: test -s conftest
configure:4351: $? = 0
configure:4371: result: yes
configure:4383: checking whether g++ supports -fno-check-new
configure:4420: rm -rf SunWS_cache; g++ -o conftest -Wnon-virtual-dtor -Wno-long-long -Wundef -Wall -pedantic -W -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -ansi -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -Wcast-align -Wconversion -O2   -fno-exceptions -fno-check-new   conftest.cc  1>&5
configure:4423: $? = 0
configure:4426: test -s conftest
configure:4429: $? = 0
configure:4449: result: yes
configure:4461: checking whether g++ supports -fexceptions
configure:4498: rm -rf SunWS_cache; g++ -o conftest -Wnon-virtual-dtor -Wno-long-long -Wundef -Wall -pedantic -W -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -ansi -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -Wcast-align -Wconversion -O2   -fno-exceptions -fno-check-new -fexceptions   conftest.cc  1>&5
configure:4501: $? = 0
configure:4504: test -s conftest
configure:4507: $? = 0
configure:4527: result: yes
configure:5128: checking how to run the C++ preprocessor
configure:5160: g++ -E  conftest.cc
configure:5166: $? = 0
configure:5198: g++ -E  conftest.cc
configure:5202:28: ac_nonexistent.h: No such file or directory
configure:5204: $? = 1
configure: failed program was:
| #line 5189 "configure"
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE "kuake"
| #define VERSION "0.1"
| #ifdef __cplusplus
| #include <stdlib.h>
| #endif
| /* end confdefs.h.  */
| #include <ac_nonexistent.h>
configure:5242: result: g++ -E
configure:5267: g++ -E  conftest.cc
configure:5273: $? = 0
configure:5305: g++ -E  conftest.cc
configure:5309:28: ac_nonexistent.h: No such file or directory
configure:5311: $? = 1
configure: failed program was:
| #line 5296 "configure"
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE "kuake"
| #define VERSION "0.1"
| #ifdef __cplusplus
| #include <stdlib.h>
| #endif
| /* end confdefs.h.  */
| #include <ac_nonexistent.h>
configure:5376: checking whether g++ supports -frepo
configure:5413: rm -rf SunWS_cache; g++ -o conftest -Wnon-virtual-dtor -Wno-long-long -Wundef -Wall -pedantic -W -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -ansi -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -Wcast-align -Wconversion -O2 -fno-exceptions -fno-check-new -frepo   conftest.cc  1>&5
conftest.cc:1: warning: -frepo must be used with -c
configure:5416: $? = 0
configure:5419: test -s conftest
configure:5422: $? = 0
configure:5442: result: yes
configure:5650: result: not using lib directory suffix
configure:5706: checking for ld used by GCC
configure:5770: result: /usr/i486-slackware-linux/bin/ld
configure:5779: checking if the linker (/usr/i486-slackware-linux/bin/ld) is GNU ld
GNU ld version 2.14.90.0.6 20030820
configure:5791: result: yes
configure:5796: checking for /usr/i486-slackware-linux/bin/ld option to reload object files
configure:5803: result: -r
configure:5812: checking for BSD-compatible nm
configure:5847: result: /usr/bin/nm -B
configure:5851: checking for a sed that does not truncate output
configure:5927: result: 
configure:5930: checking whether ln -s works
configure:5934: result: yes
configure:5941: checking how to recognise dependant libraries
configure:6128: result: pass_all
configure:6198: gcc -c -ansi -W -Wall -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -O2    conftest.c >&5
configure:6201: $? = 0
configure:6287: checking for egrep
configure:6297: result: grep -E
configure:6302: checking for ANSI C header files
configure:6328: gcc -c -ansi -W -Wall -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -O2    conftest.c >&5
configure:6331: $? = 0
configure:6334: test -s conftest.o
configure:6337: $? = 0
configure:6426: gcc -o conftest -ansi -W -Wall -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -O2     conftest.c  >&5
configure: In function `main':
configure:6429: warning: implicit declaration of function `exit'
configure:6429: $? = 0
configure:6431: ./conftest
configure:6434: $? = 0
configure:6449: result: yes
configure:6473: checking for sys/types.h
configure:6490: gcc -c -ansi -W -Wall -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -O2    conftest.c >&5
configure:6493: $? = 0
configure:6496: test -s conftest.o
configure:6499: $? = 0
configure:6510: result: yes
configure:6473: checking for sys/stat.h
configure:6490: gcc -c -ansi -W -Wall -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -O2    conftest.c >&5
configure:6493: $? = 0
configure:6496: test -s conftest.o
configure:6499: $? = 0
configure:6510: result: yes
configure:6473: checking for stdlib.h
configure:6490: gcc -c -ansi -W -Wall -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -O2    conftest.c >&5
configure:6493: $? = 0
configure:6496: test -s conftest.o
configure:6499: $? = 0
configure:6510: result: yes
configure:6473: checking for string.h
configure:6490: gcc -c -ansi -W -Wall -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -O2    conftest.c >&5
configure:6493: $? = 0
configure:6496: test -s conftest.o
configure:6499: $? = 0
configure:6510: result: yes
configure:6473: checking for memory.h
configure:6490: gcc -c -ansi -W -Wall -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -O2    conftest.c >&5
configure:6493: $? = 0
configure:6496: test -s conftest.o
configure:6499: $? = 0
configure:6510: result: yes
configure:6473: checking for strings.h
configure:6490: gcc -c -ansi -W -Wall -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -O2    conftest.c >&5
configure:6493: $? = 0
configure:6496: test -s conftest.o
configure:6499: $? = 0
configure:6510: result: yes
configure:6473: checking for inttypes.h
configure:6490: gcc -c -ansi -W -Wall -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -O2    conftest.c >&5
configure:6493: $? = 0
configure:6496: test -s conftest.o
configure:6499: $? = 0
configure:6510: result: yes
configure:6473: checking for stdint.h
configure:6490: gcc -c -ansi -W -Wall -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -O2    conftest.c >&5
configure:6493: $? = 0
configure:6496: test -s conftest.o
configure:6499: $? = 0
configure:6510: result: yes
configure:6473: checking for unistd.h
configure:6490: gcc -c -ansi -W -Wall -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -O2    conftest.c >&5
configure:6493: $? = 0
configure:6496: test -s conftest.o
configure:6499: $? = 0
configure:6510: result: yes
configure:6536: checking dlfcn.h usability
configure:6549: gcc -c -ansi -W -Wall -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -O2    conftest.c >&5
configure:6552: $? = 0
configure:6555: test -s conftest.o
configure:6558: $? = 0
configure:6568: result: yes
configure:6572: checking dlfcn.h presence
configure:6583: gcc -E  conftest.c
configure:6589: $? = 0
configure:6608: result: yes
configure:6644: checking for dlfcn.h
configure:6651: result: yes
configure:6668: checking the maximum length of command line arguments
configure:6716: result: 32768
configure:6727: checking command to parse /usr/bin/nm -B output from gcc object
configure:6812: gcc -c -ansi -W -Wall -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -O2    conftest.c >&5
conftest.c:5: warning: no previous prototype for `nm_test_func'
configure:6815: $? = 0
configure:6819: /usr/bin/nm -B conftest.o \| sed -n -e 's/^.*[ 	]\([ABCDGISTW][ABCDGISTW]*\)[ 	][ 	]*\(\)\([_A-Za-z][_A-Za-z0-9]*\)$/\1 \2\3 \3/p' \> conftest.nm
configure:6822: $? = 0
configure:6874: gcc -o conftest -ansi -W -Wall -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -O2     conftest.c conftstm.o >&5
configure:6877: $? = 0
configure:6915: result: ok
configure:6919: checking for objdir
configure:6934: result: .libs
configure:7024: checking for ranlib
configure:7040: found /usr/bin/ranlib
configure:7051: result: ranlib
configure:7104: checking for strip
configure:7120: found /usr/bin/strip
configure:7131: result: strip
configure:7394: checking if gcc static flag  works
conftest.c:1: warning: return type defaults to `int'
configure:7417: result: no
configure:7434: checking if gcc supports -fno-rtti -fno-exceptions
cc1: warning: ignoring command line option '-fno-rtti'
cc1: warning: (it is valid for C++ but not the selected language)
cc1: warning: ignoring command line option '-fno-rtti'
cc1: warning: (it is valid for C++ but not the selected language)
configure:7458: result: no
configure:7473: checking for gcc option to produce PIC
configure:7626: result: -fPIC
configure:7633: checking if gcc PIC flag -fPIC works
configure:7657: result: yes
configure:7681: checking if gcc supports -c -o file.o
configure:7722: result: yes
configure:7748: checking whether the gcc linker (/usr/i486-slackware-linux/bin/ld) supports shared libraries
configure:8531: result: yes
configure:8553: checking whether -lc should be explicitly linked in
configure:8558: gcc -c -ansi -W -Wall -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -O2    conftest.c >&5
conftest.c:1: warning: `dummy' defined but not used
configure:8561: $? = 0
configure:8575: gcc -shared conftest.o  -v -Wl,-soname -Wl,conftest -o conftest 2\>\&1 \| grep  -lc  \>/dev/null 2\>\&1
configure:8578: $? = 0
configure:8590: result: no
configure:8596: checking how to hardcode library paths into programs
configure:8620: result: immediate
configure:8634: checking whether stripping libraries is possible
configure:8639: result: yes
configure:8646: checking dynamic linker characteristics
configure:9097: result: GNU/Linux ld.so
configure:9750: checking if libtool supports shared libraries
configure:9752: result: yes
configure:9755: checking whether to build shared libraries
configure:9776: result: yes
configure:9779: checking whether to build static libraries
configure:9783: result: no
configure:9862: creating libtool
configure:10587: checking whether the g++ linker (/usr/i486-slackware-linux/bin/ld) supports shared libraries
configure:11242: result: yes
configure:11259: g++ -c -Wnon-virtual-dtor -Wno-long-long -Wundef -Wall -pedantic -W -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -ansi -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -Wcast-align -Wconversion -O2 -fno-exceptions -fno-check-new  conftest.cc >&5
configure:11262: $? = 0
configure:11362: checking for g++ option to produce PIC
configure:11598: result: -fPIC
configure:11605: checking if g++ PIC flag -fPIC works
configure:11629: result: yes
configure:11653: checking if g++ supports -c -o file.o
configure:11694: result: yes
configure:11720: checking whether the g++ linker (/usr/i486-slackware-linux/bin/ld) supports shared libraries
configure:11742: result: yes
configure:11764: checking whether -lc should be explicitly linked in
configure:11769: g++ -c -Wnon-virtual-dtor -Wno-long-long -Wundef -Wall -pedantic -W -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -ansi -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -Wcast-align -Wconversion -O2 -fno-exceptions -fno-check-new  conftest.cc >&5
conftest.cc:1: warning: `int dummy' defined but not used
configure:11772: $? = 0
configure:11786: g++ -shared -nostdlib  conftest.o   -v -Wl,-soname -Wl,conftest -o conftest 2\>\&1 \| grep  -lc  \>/dev/null 2\>\&1
configure:11789: $? = 1
configure:11801: result: yes
configure:11807: checking how to hardcode library paths into programs
configure:11831: result: immediate
configure:11845: checking whether stripping libraries is possible
configure:11850: result: yes
configure:11857: checking dynamic linker characteristics
configure:12308: result: GNU/Linux ld.so
configure:13377: checking if gcj supports -fno-rtti -fno-exceptions
configure:13401: result: no
configure:13416: checking for gcj option to produce PIC
configure:13569: result: -fPIC
configure:13576: checking if gcj PIC flag -fPIC works
configure:13600: result: no
configure:13624: checking if gcj supports -c -o file.o
configure:13665: result: no
configure:13691: checking whether the gcj linker (/usr/i486-slackware-linux/bin/ld) supports shared libraries
configure:14474: result: yes
configure:14496: checking whether -lc should be explicitly linked in
configure:14501: gcj -c -ansi -W -Wall -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -O2    conftest.java >&5
gcj: can't specify `-D' without `--main'

configure:14504: $? = 1
configure:14533: result: yes
configure:14539: checking how to hardcode library paths into programs
configure:14563: result: immediate
configure:14577: checking whether stripping libraries is possible
configure:14582: result: yes
configure:14589: checking dynamic linker characteristics
configure:15040: result: GNU/Linux ld.so
configure:16585: checking for msgfmt
configure:16612: result: /usr/bin/msgfmt
configure:16621: checking for gmsgfmt
configure:16652: result: /usr/bin/msgfmt
configure:16671: checking for xgettext
configure:16698: result: /usr/bin/xgettext
configure:16726: checking for main in -lutil
configure:16751: gcc -o conftest -ansi -W -Wall -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -O2     conftest.c -lutil   >&5
configure:16754: $? = 0
configure:16757: test -s conftest
configure:16760: $? = 0
configure:16772: result: yes
configure:16778: checking for main in -lcompat
configure:16803: gcc -o conftest -ansi -W -Wall -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -O2     conftest.c -lcompat   >&5
/usr/lib/gcc-lib/i486-slackware-linux/3.2.3/../../../../i486-slackware-linux/bin/ld: cannot find -lcompat
collect2: ld returned 1 exit status
configure:16806: $? = 1
configure: failed program was:
| #line 16785 "configure"
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE "kuake"
| #define VERSION "0.1"
| #ifdef __cplusplus
| #include <stdlib.h>
| #endif
| #define HAVE_TEMPLATE_REPOSITORY 1
| #define KDELIBSUFF ""
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| /* end confdefs.h.  */
| 
| 
| int
| main ()
| {
| main ();
|   ;
|   return 0;
| }
configure:16824: result: no
configure:16831: checking for crypt in -lcrypt
configure:16862: gcc -o conftest -ansi -W -Wall -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -O2     conftest.c -lcrypt   >&5
configure:16865: $? = 0
configure:16868: test -s conftest
configure:16871: $? = 0
configure:16883: result: yes
configure:16967: checking for socklen_t
configure:17007: g++ -c -Wnon-virtual-dtor -Wno-long-long -Wundef -Wall -pedantic -W -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -ansi -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -Wcast-align -Wconversion -O2 -fno-exceptions -fno-check-new  conftest.cc >&5
configure:17010: $? = 0
configure:17013: test -s conftest.o
configure:17016: $? = 0
configure:17079: result: socklen_t
configure:17101: checking for dnet_ntoa in -ldnet
configure:17132: gcc -o conftest -ansi -W -Wall -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -O2     conftest.c -ldnet   >&5
/usr/lib/gcc-lib/i486-slackware-linux/3.2.3/../../../../i486-slackware-linux/bin/ld: cannot find -ldnet
collect2: ld returned 1 exit status
configure:17135: $? = 1
configure: failed program was:
| #line 17108 "configure"
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE "kuake"
| #define VERSION "0.1"
| #ifdef __cplusplus
| #include <stdlib.h>
| #endif
| #define HAVE_TEMPLATE_REPOSITORY 1
| #define KDELIBSUFF ""
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_CRYPT 1
| #define ksize_t socklen_t
| /* end confdefs.h.  */
| 
| /* 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 dnet_ntoa ();
| int
| main ()
| {
| dnet_ntoa ();
|   ;
|   return 0;
| }
configure:17153: result: no
configure:17160: checking for dnet_ntoa in -ldnet_stub
configure:17191: gcc -o conftest -ansi -W -Wall -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -O2     conftest.c -ldnet_stub   >&5
/usr/lib/gcc-lib/i486-slackware-linux/3.2.3/../../../../i486-slackware-linux/bin/ld: cannot find -ldnet_stub
collect2: ld returned 1 exit status
configure:17194: $? = 1
configure: failed program was:
| #line 17167 "configure"
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE "kuake"
| #define VERSION "0.1"
| #ifdef __cplusplus
| #include <stdlib.h>
| #endif
| #define HAVE_TEMPLATE_REPOSITORY 1
| #define KDELIBSUFF ""
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_CRYPT 1
| #define ksize_t socklen_t
| /* end confdefs.h.  */
| 
| /* 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 dnet_ntoa ();
| int
| main ()
| {
| dnet_ntoa ();
|   ;
|   return 0;
| }
configure:17212: result: no
configure:17219: checking for inet_ntoa
configure:17269: gcc -o conftest -ansi -W -Wall -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -O2     conftest.c  >&5
configure:17272: $? = 0
configure:17275: test -s conftest
configure:17278: $? = 0
configure:17289: result: yes
configure:17352: checking for connect
configure:17402: gcc -o conftest -ansi -W -Wall -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -O2     conftest.c  >&5
configure:17405: $? = 0
configure:17408: test -s conftest
configure:17411: $? = 0
configure:17422: result: yes
configure:17486: checking for remove
configure:17536: gcc -o conftest -ansi -W -Wall -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -O2     conftest.c  >&5
configure:17539: $? = 0
configure:17542: test -s conftest
configure:17545: $? = 0
configure:17556: result: yes
configure:17621: checking for shmat
configure:17671: gcc -o conftest -ansi -W -Wall -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -O2     conftest.c  >&5
configure:17674: $? = 0
configure:17677: test -s conftest
configure:17680: $? = 0
configure:17691: result: yes
configure:17772: checking crt_externs.h usability
configure:17785: gcc -c -ansi -W -Wall -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -O2    conftest.c >&5
configure:17836:25: crt_externs.h: No such file or directory
configure:17788: $? = 1
configure: failed program was:
| #line 17774 "configure"
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE "kuake"
| #define VERSION "0.1"
| #ifdef __cplusplus
| #include <stdlib.h>
| #endif
| #define HAVE_TEMPLATE_REPOSITORY 1
| #define KDELIBSUFF ""
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_CRYPT 1
| #define ksize_t socklen_t
| /* 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 <crt_externs.h>
configure:17804: result: no
configure:17808: checking crt_externs.h presence
configure:17819: gcc -E  conftest.c
configure:17838:25: crt_externs.h: No such file or directory
configure:17825: $? = 1
configure: failed program was:
| #line 17810 "configure"
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE "kuake"
| #define VERSION "0.1"
| #ifdef __cplusplus
| #include <stdlib.h>
| #endif
| #define HAVE_TEMPLATE_REPOSITORY 1
| #define KDELIBSUFF ""
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_CRYPT 1
| #define ksize_t socklen_t
| /* end confdefs.h.  */
| #include <crt_externs.h>
configure:17844: result: no
configure:17880: checking for crt_externs.h
configure:17887: result: no
configure:17900: checking for _NSGetEnviron
configure:17950: gcc -o conftest -ansi -W -Wall -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -O2     conftest.c  >&5
/tmp/cca6djB0.o(.text+0xf): In function `main':
: undefined reference to `_NSGetEnviron'
/tmp/cca6djB0.o(.data+0x0): undefined reference to `_NSGetEnviron'
collect2: ld returned 1 exit status
configure:17953: $? = 1
configure: failed program was:
| #line 17905 "configure"
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE "kuake"
| #define VERSION "0.1"
| #ifdef __cplusplus
| #include <stdlib.h>
| #endif
| #define HAVE_TEMPLATE_REPOSITORY 1
| #define KDELIBSUFF ""
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_CRYPT 1
| #define ksize_t socklen_t
| /* end confdefs.h.  */
| /* System header to define __stub macros and hopefully few prototypes,
|     which can conflict with char _NSGetEnviron (); 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
| /* 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 _NSGetEnviron ();
| /* 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__NSGetEnviron) || defined (__stub____NSGetEnviron)
| choke me
| #else
| char (*f) () = _NSGetEnviron;
| #endif
| #ifdef __cplusplus
| }
| #endif
| 
| int
| main ()
| {
| return f != _NSGetEnviron;
|   ;
|   return 0;
| }
configure:17970: result: no
configure:17988: checking for sys/types.h
configure:17993: result: yes
configure:17988: checking for stdint.h
configure:17993: result: yes
configure:18127: checking for poll in -lpoll
configure:18158: gcc -o conftest -ansi -W -Wall -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -O2     conftest.c -lpoll   >&5
/usr/lib/gcc-lib/i486-slackware-linux/3.2.3/../../../../i486-slackware-linux/bin/ld: cannot find -lpoll
collect2: ld returned 1 exit status
configure:18161: $? = 1
configure: failed program was:
| #line 18134 "configure"
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE "kuake"
| #define VERSION "0.1"
| #ifdef __cplusplus
| #include <stdlib.h>
| #endif
| #define HAVE_TEMPLATE_REPOSITORY 1
| #define KDELIBSUFF ""
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_CRYPT 1
| #define ksize_t socklen_t
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_STDINT_H 1
| /* end confdefs.h.  */
| 
| /* 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 poll ();
| int
| main ()
| {
| poll ();
|   ;
|   return 0;
| }
configure:18179: result: no
configure:18197: checking CoreAudio/CoreAudio.h usability
configure:18210: gcc -c -ansi -W -Wall -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -O2    conftest.c >&5
configure:18263:33: CoreAudio/CoreAudio.h: No such file or directory
configure:18213: $? = 1
configure: failed program was:
| #line 18199 "configure"
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE "kuake"
| #define VERSION "0.1"
| #ifdef __cplusplus
| #include <stdlib.h>
| #endif
| #define HAVE_TEMPLATE_REPOSITORY 1
| #define KDELIBSUFF ""
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_CRYPT 1
| #define ksize_t socklen_t
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_STDINT_H 1
| /* end confdefs.h.  */
| #include <stdio.h>
| #if HAVE_SYS_TYPES_H
| # include <sys/types.h>
| #endif
| #if HAVE_SYS_STAT_H
| # include <sys/stat.h>
| #endif
| #if STDC_HEADERS
| # include <stdlib.h>
| # include <stddef.h>
| #else
| # if HAVE_STDLIB_H
| #  include <stdlib.h>
| # endif
| #endif
| #if HAVE_STRING_H
| # if !STDC_HEADERS && HAVE_MEMORY_H
| #  include <memory.h>
| # endif
| # include <string.h>
| #endif
| #if HAVE_STRINGS_H
| # include <strings.h>
| #endif
| #if HAVE_INTTYPES_H
| # include <inttypes.h>
| #else
| # if HAVE_STDINT_H
| #  include <stdint.h>
| # endif
| #endif
| #if HAVE_UNISTD_H
| # include <unistd.h>
| #endif
| #include <CoreAudio/CoreAudio.h>
configure:18229: result: no
configure:18233: checking CoreAudio/CoreAudio.h presence
configure:18244: gcc -E  conftest.c
configure:18265:33: CoreAudio/CoreAudio.h: No such file or directory
configure:18250: $? = 1
configure: failed program was:
| #line 18235 "configure"
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE "kuake"
| #define VERSION "0.1"
| #ifdef __cplusplus
| #include <stdlib.h>
| #endif
| #define HAVE_TEMPLATE_REPOSITORY 1
| #define KDELIBSUFF ""
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_CRYPT 1
| #define ksize_t socklen_t
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_STDINT_H 1
| /* end confdefs.h.  */
| #include <CoreAudio/CoreAudio.h>
configure:18269: result: no
configure:18305: checking for CoreAudio/CoreAudio.h
configure:18312: result: no
configure:18331: checking for res_init
configure:18379: g++ -c -Wnon-virtual-dtor -Wno-long-long -Wundef -Wall -pedantic -W -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -ansi -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -Wcast-align -Wconversion -O2 -fno-exceptions -fno-check-new -pedantic-errors  conftest.cc >&5
configure:18382: $? = 0
configure:18385: test -s conftest.o
configure:18388: $? = 0
configure:18410: result: yes
configure:18413: checking if res_init needs custom prototype
configure:18506: result: no
configure:18535: checking for killpg in -lucb
configure:18566: gcc -o conftest -ansi -W -Wall -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -O2     conftest.c -lucb   >&5
/usr/lib/gcc-lib/i486-slackware-linux/3.2.3/../../../../i486-slackware-linux/bin/ld: cannot find -lucb
collect2: ld returned 1 exit status
configure:18569: $? = 1
configure: failed program was:
| #line 18542 "configure"
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE "kuake"
| #define VERSION "0.1"
| #ifdef __cplusplus
| #include <stdlib.h>
| #endif
| #define HAVE_TEMPLATE_REPOSITORY 1
| #define KDELIBSUFF ""
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_CRYPT 1
| #define ksize_t socklen_t
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_RES_INIT 1
| #define HAVE_RES_INIT_PROTO 1
| /* end confdefs.h.  */
| 
| /* 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 killpg ();
| int
| main ()
| {
| killpg ();
|   ;
|   return 0;
| }
configure:18587: result: no
configure:18660: checking for int
configure:18685: gcc -c -ansi -W -Wall -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -O2    conftest.c >&5
configure:18688: $? = 0
configure:18691: test -s conftest.o
configure:18694: $? = 0
configure:18705: result: yes
configure:18708: checking size of int
configure:18983: gcc -o conftest -ansi -W -Wall -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -O2     conftest.c  >&5
configure:19009: warning: no previous prototype for `longval'
configure:19010: warning: no previous prototype for `ulongval'
configure:18986: $? = 0
configure:18988: ./conftest
configure:18991: $? = 0
configure:19014: result: 4
configure:19020: checking for long
configure:19045: gcc -c -ansi -W -Wall -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -O2    conftest.c >&5
configure:19048: $? = 0
configure:19051: test -s conftest.o
configure:19054: $? = 0
configure:19065: result: yes
configure:19068: checking size of long
configure:19343: gcc -o conftest -ansi -W -Wall -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -O2     conftest.c  >&5
configure:19370: warning: no previous prototype for `longval'
configure:19371: warning: no previous prototype for `ulongval'
configure:19346: $? = 0
configure:19348: ./conftest
configure:19351: $? = 0
configure:19374: result: 4
configure:19380: checking for char *
configure:19405: gcc -c -ansi -W -Wall -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -O2    conftest.c >&5
configure:19408: $? = 0
configure:19411: test -s conftest.o
configure:19414: $? = 0
configure:19425: result: yes
configure:19428: checking size of char *
configure:19703: gcc -o conftest -ansi -W -Wall -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -O2     conftest.c  >&5
configure:19731: warning: no previous prototype for `longval'
configure:19732: warning: no previous prototype for `ulongval'
configure:19706: $? = 0
configure:19708: ./conftest
configure:19711: $? = 0
configure:19734: result: 4
configure:19740: checking for char
configure:19765: gcc -c -ansi -W -Wall -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -O2    conftest.c >&5
configure:19768: $? = 0
configure:19771: test -s conftest.o
configure:19774: $? = 0
configure:19785: result: yes
configure:19788: checking size of char
configure:20063: gcc -o conftest -ansi -W -Wall -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -O2     conftest.c  >&5
configure:20092: warning: no previous prototype for `longval'
configure:20093: warning: no previous prototype for `ulongval'
configure:20066: $? = 0
configure:20068: ./conftest
configure:20071: $? = 0
configure:20094: result: 1
configure:20102: checking for dlopen in -ldl
configure:20133: gcc -o conftest -ansi -W -Wall -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -O2     conftest.c -ldl   >&5
configure:20136: $? = 0
configure:20139: test -s conftest
configure:20142: $? = 0
configure:20154: result: yes
configure:20164: checking for shl_unload in -ldld
configure:20195: gcc -o conftest -ansi -W -Wall -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -O2     conftest.c -ldld   >&5
/usr/lib/gcc-lib/i486-slackware-linux/3.2.3/../../../../i486-slackware-linux/bin/ld: cannot find -ldld
collect2: ld returned 1 exit status
configure:20198: $? = 1
configure: failed program was:
| #line 20171 "configure"
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE "kuake"
| #define VERSION "0.1"
| #ifdef __cplusplus
| #include <stdlib.h>
| #endif
| #define HAVE_TEMPLATE_REPOSITORY 1
| #define KDELIBSUFF ""
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_CRYPT 1
| #define ksize_t socklen_t
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_RES_INIT 1
| #define HAVE_RES_INIT_PROTO 1
| #define SIZEOF_INT 4
| #define SIZEOF_LONG 4
| #define SIZEOF_CHAR_P 4
| #define SIZEOF_CHAR 1
| /* end confdefs.h.  */
| 
| /* 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 shl_unload ();
| int
| main ()
| {
| shl_unload ();
|   ;
|   return 0;
| }
configure:20216: result: no
configure:20237: checking for vsnprintf
configure:20287: gcc -o conftest -ansi -W -Wall -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -O2     conftest.c  >&5
configure:20290: $? = 0
configure:20293: test -s conftest
configure:20296: $? = 0
configure:20307: result: yes
configure:20237: checking for snprintf
configure:20287: gcc -o conftest -ansi -W -Wall -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -O2     conftest.c  >&5
configure:20290: $? = 0
configure:20293: test -s conftest
configure:20296: $? = 0
configure:20307: result: yes
configure:20345: checking for X
configure:20391: gcc -E  conftest.c
configure:20397: $? = 0
configure:20488: gcc -o conftest -ansi -W -Wall -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -O2     conftest.c -lXt  >&5
configure: In function `main':
configure:20513: warning: implicit declaration of function `XtMalloc'
/usr/lib/gcc-lib/i486-slackware-linux/3.2.3/../../../../i486-slackware-linux/bin/ld: cannot find -lXt
collect2: ld returned 1 exit status
configure:20491: $? = 1
configure: failed program was:
| #line 20471 "configure"
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE "kuake"
| #define VERSION "0.1"
| #ifdef __cplusplus
| #include <stdlib.h>
| #endif
| #define HAVE_TEMPLATE_REPOSITORY 1
| #define KDELIBSUFF ""
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_CRYPT 1
| #define ksize_t socklen_t
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_RES_INIT 1
| #define HAVE_RES_INIT_PROTO 1
| #define SIZEOF_INT 4
| #define SIZEOF_LONG 4
| #define SIZEOF_CHAR_P 4
| #define SIZEOF_CHAR 1
| #define HAVE_VSNPRINTF 1
| #define HAVE_SNPRINTF 1
| /* end confdefs.h.  */
| 
| int
| main ()
| {
| XtMalloc()
|   ;
|   return 0;
| }
configure:20642: result: libraries /usr/X11R6/lib, headers /usr/X11R6/include
configure:20676: checking for IceConnectionNumber in -lICE
configure:20707: gcc -o conftest -ansi -W -Wall -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -O2     -L/usr/X11R6/lib conftest.c -lICE   >&5
configure:20710: $? = 0
configure:20713: test -s conftest
configure:20716: $? = 0
configure:20728: result: yes
configure:20742: checking for libXext
configure:20778: gcc -o conftest -ansi -W -Wall -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -O2     -L/usr/X11R6/lib  conftest.c -lXext -lX11  >&5
configure:20781: $? = 0
configure:20784: test -s conftest
configure:20787: $? = 0
configure:20805: result: yes
configure:20818: checking for Xinerama
configure:20892: result: no
configure:21019: checking for pthread_create in -lpthread
configure:21050: gcc -o conftest -ansi -W -Wall -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -O2     conftest.c -lpthread   >&5
configure:21053: $? = 0
configure:21056: test -s conftest
configure:21059: $? = 0
configure:21071: result: yes
configure:21491: checking for extra includes
configure:21519: result: no
configure:21523: checking for extra libs
configure:21552: result: no
configure:21558: checking for libz
configure:21593: gcc -o conftest -ansi -W -Wall -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -O2   -I/usr/X11R6/include   -D_REENTRANT  conftest.c -L/usr/X11R6/lib  -lz  >&5
configure:21596: $? = 0
configure:21599: test -s conftest
configure:21602: $? = 0
configure:21624: result: -lz
configure:21637: checking for libpng
configure:21680: gcc -o conftest -ansi -W -Wall -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -O2   -I/usr/X11R6/include   -D_REENTRANT  conftest.c  -L/usr/X11R6/lib  -lpng -lz -lm -lX11  >&5
configure:21683: $? = 0
configure:21686: test -s conftest
configure:21689: $? = 0
configure:21712: result: -lpng -lz -lm
configure:21723: checking for libjpeg6b
configure:21770: gcc -o conftest -ansi -W -Wall -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -O2   -I/usr/X11R6/include   -D_REENTRANT  conftest.c -L/usr/X11R6/lib  -ljpeg6b -lm >&5
/usr/lib/gcc-lib/i486-slackware-linux/3.2.3/../../../../i486-slackware-linux/bin/ld: cannot find -ljpeg6b
collect2: ld returned 1 exit status
configure:21773: $? = 1
configure: failed program was:
| #line 21739 "configure"
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE "kuake"
| #define VERSION "0.1"
| #ifdef __cplusplus
| #include <stdlib.h>
| #endif
| #define HAVE_TEMPLATE_REPOSITORY 1
| #define KDELIBSUFF ""
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_CRYPT 1
| #define ksize_t socklen_t
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_RES_INIT 1
| #define HAVE_RES_INIT_PROTO 1
| #define SIZEOF_INT 4
| #define SIZEOF_LONG 4
| #define SIZEOF_CHAR_P 4
| #define SIZEOF_CHAR 1
| #define HAVE_VSNPRINTF 1
| #define HAVE_SNPRINTF 1
| #define HAVE_LIBZ 1
| #define HAVE_LIBPNG 1
| /* end confdefs.h.  */
| /* Override any gcc2 internal prototype to avoid an error.  */
| struct jpeg_decompress_struct;
| typedef struct jpeg_decompress_struct * j_decompress_ptr;
| typedef int size_t;
| #ifdef __cplusplus
| extern "C" {
| #endif
|     void jpeg_CreateDecompress(j_decompress_ptr cinfo,
|                                     int version, size_t structsize);
| #ifdef __cplusplus
| }
| #endif
| /* We use char because int might match the return type of a gcc2
|     builtin and then its argument prototype would still apply.  */
| 
| int
| main ()
| {
| jpeg_CreateDecompress(0L, 0, 0);
|   ;
|   return 0;
| }
configure:21800: result: no
configure:21803: checking for libjpeg
configure:21850: gcc -o conftest -ansi -W -Wall -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -O2   -I/usr/X11R6/include   -D_REENTRANT  conftest.c -L/usr/X11R6/lib  -ljpeg -lm >&5
configure:21853: $? = 0
configure:21856: test -s conftest
configure:21859: $? = 0
configure:21877: result: -ljpeg
configure: 21904: ${prefix}/include/jpeglib.h
configure: 21904: /usr/include/jpeglib.h
taking that
configure:22074: checking for Qt
configure: 22142: /usr/lib/qt-3.2.3/include/qstyle.h
taking that
tried NO
configure:22251: rm -rf SunWS_cache; g++ -o conftest -Wnon-virtual-dtor -Wno-long-long -Wundef -Wall -pedantic -W -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -ansi -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -Wcast-align -Wconversion -O2 -fno-exceptions -fno-check-new -I/usr/lib/qt-3.2.3/include -I/usr/X11R6/include  -DQT_THREAD_SUPPORT  -D_REENTRANT  -L/usr/lib/qt-3.2.3/lib -L/usr/X11R6/lib   conftest.cc  -lqt-mt -lpng -lz -lm -ljpeg -ldl  -lXext -lX11 -lSM -lICE  -lpthread 1>&5
configure:22254: $? = 0
configure:22313: result: libraries /usr/lib/qt-3.2.3/lib, headers /usr/lib/qt-3.2.3/include using -mt
configure:22323: checking if Qt compiles without flags
configure:22420: rm -rf SunWS_cache; g++ -o conftest -Wnon-virtual-dtor -Wno-long-long -Wundef -Wall -pedantic -W -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -ansi -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -Wcast-align -Wconversion -O2 -fno-exceptions -fno-check-new -I/usr/lib/qt-3.2.3/include  -DQT_THREAD_SUPPORT  -D_REENTRANT  -L/usr/X11R6/lib conftest.cc -lqt-mt -lpng -lz -lm -ljpeg -ldl  -lXext -lX11 -lSM -lICE  -lXext -lX11  1>&5
/usr/lib/gcc-lib/i486-slackware-linux/3.2.3/../../../../i486-slackware-linux/bin/ld: cannot find -lqt-mt
collect2: ld returned 1 exit status
configure:22423: $? = 1
configure: failed program was:
#include "confdefs.h"
#include <qglobal.h>
#include <qapplication.h>
#include <qcursor.h>
#include <qstylefactory.h>
#include <private/qucomextra_p.h>
#if ! (QT_VERSION >= 300)
#error 1
#endif

int main() {
    (void)QStyleFactory::create(QString::null);
    QCursor c(Qt::WhatsThisCursor);
    return 0;
}
configure:22456: result: no
configure:22494: checking for moc
configure:22563: result: /usr/lib/qt-3.2.3/bin/moc
configure:22571: checking for uic
configure:22622: result: /usr/lib/qt-3.2.3/bin/uic
configure:22650: checking whether uic supports -L 
configure:22661: /usr/lib/qt-3.2.3/bin/uic -L /nonexistant conftest.ui >/dev/null
configure:22664: $? = 0
configure:22676: result: yes
configure:22688: checking whether uic supports -nounload 
configure:22699: /usr/lib/qt-3.2.3/bin/uic -nounload  conftest.ui >/dev/null
configure:22702: $? = 0
configure:22714: result: yes
configure:22750: checking if Qt needs -ljpeg
configure:22792: rm -rf SunWS_cache; g++ -o conftest -Wnon-virtual-dtor -Wno-long-long -Wundef -Wall -pedantic -W -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -ansi -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -Wcast-align -Wconversion -O2 -fno-exceptions -fno-check-new -I/usr/lib/qt-3.2.3/include -I/usr/X11R6/include   -DQT_THREAD_SUPPORT  -D_REENTRANT  conftest.cc -L/usr/X11R6/lib -L/usr/lib/qt-3.2.3/lib -lqt-mt -lpng -lz -lm  -ldl -lXext -lX11 -lSM -lICE 1>&5
configure: In function `int main()':
configure:22820: warning: `char**argv' might be used uninitialized in this 
   function
configure:22795: $? = 0
configure:22798: test -s conftest
configure:22801: $? = 0
configure:22828: result: no
configure:22854: checking for rpath
configure:22880: result: yes
configure:22883: checking for KDE
configure: 22934: /opt/kde/include/ksharedptr.h
taking that
configure: 22964: /opt/kde/lib/libkio.la
taking that
configure: 22982: /opt/kde/lib/kde3/plugins/designer/kdewidgets.la
taking that
configure:23056: result: libraries /opt/kde/lib, headers /opt/kde/include
configure:23112: checking for KDE paths
configure:23672: result: defaults
configure:23692: checking for dcopidl
configure:23751: result: /opt/kde/bin/dcopidl
configure:23758: checking for dcopidl2cpp
configure:23817: result: /opt/kde/bin/dcopidl2cpp
configure:23824: checking for mcopidl
configure:23883: result: /opt/kde/bin/mcopidl
configure:23890: checking for artsc-config
configure:23949: result: /opt/kde/bin/artsc-config
configure:23956: checking for kde-config
configure:24007: result: /opt/kde/bin/kde-config
configure:24014: checking for meinproc
configure:24065: result: /opt/kde/bin/meinproc
configure: 24084: /opt/kde/share/apps/ksgmltools2/customization/kde-chunk.xsl
taking that
configure:24224: checking whether byte ordering is bigendian
configure:24252: gcc -c -ansi -W -Wall -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -O2    -DQT_THREAD_SUPPORT  -D_REENTRANT conftest.c >&5
configure:24255: $? = 0
configure:24258: test -s conftest.o
configure:24261: $? = 0
configure:24286: gcc -c -ansi -W -Wall -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -O2    -DQT_THREAD_SUPPORT  -D_REENTRANT conftest.c >&5
configure: In function `main':
configure:24313: `not' undeclared (first use in this function)
configure:24313: (Each undeclared identifier is reported only once
configure:24313: for each function it appears in.)
configure:24313: syntax error before "big"
configure:24289: $? = 1
configure: failed program was:
| #line 24264 "configure"
| /* confdefs.h.  */
| 
| #define PACKAGE_NAME ""
| #define PACKAGE_TARNAME ""
| #define PACKAGE_VERSION ""
| #define PACKAGE_STRING ""
| #define PACKAGE_BUGREPORT ""
| #define PACKAGE "kuake"
| #define VERSION "0.1"
| #ifdef __cplusplus
| #include <stdlib.h>
| #endif
| #define HAVE_TEMPLATE_REPOSITORY 1
| #define KDELIBSUFF ""
| #define STDC_HEADERS 1
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_SYS_STAT_H 1
| #define HAVE_STDLIB_H 1
| #define HAVE_STRING_H 1
| #define HAVE_MEMORY_H 1
| #define HAVE_STRINGS_H 1
| #define HAVE_INTTYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_UNISTD_H 1
| #define HAVE_DLFCN_H 1
| #define HAVE_CRYPT 1
| #define ksize_t socklen_t
| #define HAVE_SYS_TYPES_H 1
| #define HAVE_STDINT_H 1
| #define HAVE_RES_INIT 1
| #define HAVE_RES_INIT_PROTO 1
| #define SIZEOF_INT 4
| #define SIZEOF_LONG 4
| #define SIZEOF_CHAR_P 4
| #define SIZEOF_CHAR 1
| #define HAVE_VSNPRINTF 1
| #define HAVE_SNPRINTF 1
| #define HAVE_LIBZ 1
| #define HAVE_LIBPNG 1
| #define HAVE_LIBJPEG 1
| #define HAVE_LIBPTHREAD 1
| /* end confdefs.h.  */
| #include <sys/types.h>
| #include <sys/param.h>
| 
| int
| main ()
| {
| #if BYTE_ORDER != BIG_ENDIAN
|  not big endian
| #endif
| 
|   ;
|   return 0;
| }
configure:24409: result: no
configure:24429: checking for MAXPATHLEN
configure:24457: gcc -E  -DQT_THREAD_SUPPORT  -D_REENTRANT conftest.c 2>/dev/null | grep '^KDE_HELLO' >conftest.out
configure:24460: $? = 0
configure:24472: result: 4096
configure:24501: checking if doc should be compiled
configure:24513: result: yes
configure:24501: checking if po should be compiled
configure:24513: result: yes
configure:24501: checking if src should be compiled
configure:24513: result: yes
configure:24652: creating ./config.status

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

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

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

on virgo

config.status:700: creating config.h
config.status:958: executing depfiles commands

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

ac_cv_build=i686-pc-linux-gnu
ac_cv_build_alias=i686-pc-linux-gnu
ac_cv_c_bigendian=no
ac_cv_c_compiler_gnu=yes
ac_cv_cxx_compiler_gnu=yes
ac_cv_env_CC_set=
ac_cv_env_CC_value=
ac_cv_env_CFLAGS_set=
ac_cv_env_CFLAGS_value=
ac_cv_env_CPPFLAGS_set=
ac_cv_env_CPPFLAGS_value=
ac_cv_env_CPP_set=
ac_cv_env_CPP_value=
ac_cv_env_CXXCPP_set=
ac_cv_env_CXXCPP_value=
ac_cv_env_CXXFLAGS_set=
ac_cv_env_CXXFLAGS_value=
ac_cv_env_CXX_set=
ac_cv_env_CXX_value=
ac_cv_env_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_func__NSGetEnviron=no
ac_cv_func_connect=yes
ac_cv_func_inet_ntoa=yes
ac_cv_func_remove=yes
ac_cv_func_shmat=yes
ac_cv_func_snprintf=yes
ac_cv_func_vsnprintf=yes
ac_cv_have_dlfcn=yes
ac_cv_have_kde='have_kde=yes     ac_kde_includes=/opt/kde/include ac_kde_libraries=/opt/kde/lib'
ac_cv_have_qt='have_qt=yes     ac_qt_includes=/usr/lib/qt-3.2.3/include ac_qt_libraries=/usr/lib/qt-3.2.3/lib'
ac_cv_have_xinerama=no
ac_cv_header_CoreAudio_CoreAudio_h=no
ac_cv_header_crt_externs_h=no
ac_cv_header_dlfcn_h=yes
ac_cv_header_inttypes_h=yes
ac_cv_header_memory_h=yes
ac_cv_header_stdc=yes
ac_cv_header_stdint_h=yes
ac_cv_header_stdlib_h=yes
ac_cv_header_string_h=yes
ac_cv_header_strings_h=yes
ac_cv_header_sys_stat_h=yes
ac_cv_header_sys_types_h=yes
ac_cv_header_unistd_h=yes
ac_cv_host=i686-pc-linux-gnu
ac_cv_host_alias=i686-pc-linux-gnu
ac_cv_lib_ICE_IceConnectionNumber=yes
ac_cv_lib_compat_main=no
ac_cv_lib_crypt_crypt=yes
ac_cv_lib_dl_dlopen=yes
ac_cv_lib_dld_shl_unload=no
ac_cv_lib_dnet_dnet_ntoa=no
ac_cv_lib_dnet_stub_dnet_ntoa=no
ac_cv_lib_jpeg_6b=no
ac_cv_lib_jpeg_normal=-ljpeg
ac_cv_lib_png='-lpng -lz -lm'
ac_cv_lib_poll_poll=no
ac_cv_lib_pthread_pthread_create=yes
ac_cv_lib_ucb_killpg=no
ac_cv_lib_util_main=yes
ac_cv_lib_z=-lz
ac_cv_maxpathlen=4096
ac_cv_objext=o
ac_cv_path_GMSGFMT=/usr/bin/msgfmt
ac_cv_path_MSGFMT=/usr/bin/msgfmt
ac_cv_path_XGETTEXT=/usr/bin/xgettext
ac_cv_path_install='/usr/bin/ginstall -c'
ac_cv_prog_AWK=gawk
ac_cv_prog_CPP='gcc -E'
ac_cv_prog_CXXCPP='g++ -E'
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_make_make_set=yes
ac_cv_sizeof_char=1
ac_cv_sizeof_char_p=4
ac_cv_sizeof_int=4
ac_cv_sizeof_long=4
ac_cv_socklen_t=socklen_t
ac_cv_target=i686-pc-linux-gnu
ac_cv_target_alias=i686-pc-linux-gnu
ac_cv_type_char=yes
ac_cv_type_char_p=yes
ac_cv_type_int=yes
ac_cv_type_long=yes
am_cv_CC_dependencies_compiler_type=gcc3
am_cv_CXX_dependencies_compiler_type=gcc3
kde_cv_all_paths='kde_have_all_paths="yes" 	kde_htmldir="\${prefix}/share/doc/HTML" 	kde_appsdir="\${prefix}/share/applnk" 	kde_icondir="\${prefix}/share/icons" 	kde_sounddir="\${prefix}/share/sounds" 	kde_datadir="\${prefix}/share/apps" 	kde_locale="\${prefix}/share/locale" 	kde_cgidir="\${exec_prefix}/cgi-bin" 	kde_confdir="\${prefix}/share/config" 	kde_mimedir="\${prefix}/share/mimelnk" 	kde_toolbardir="\${prefix}/share/toolbar" 	kde_wallpaperdir="\${prefix}/share/wallpapers" 	kde_templatesdir="\${prefix}/share/templates" 	kde_bindir="\${exec_prefix}/bin" 	kde_servicesdir="\${prefix}/share/services" 	kde_servicetypesdir="\${prefix}/share/servicetypes" 	kde_moduledir="\${libdir}/kde3"    kde_styledir="\${libdir}/kde3/plugins/styles" 	kde_widgetdir="/opt/kde/lib/kde3/plugins/designer" 	kde_result=defaults'
kde_cv_func_res_init=yes
kde_cv_have_libXext=yes
kde_cv_have_x='have_x=yes          kde_x_includes=/usr/X11R6/include kde_x_libraries=/usr/X11R6/lib'
kde_cv_path=/opt/kde/bin/meinproc
kde_cv_path_artsc_config=/opt/kde/bin/artsc-config
kde_cv_path_dcopidl=/opt/kde/bin/dcopidl
kde_cv_path_dcopidl2cpp=/opt/kde/bin/dcopidl2cpp
kde_cv_path_kde_config=/opt/kde/bin/kde-config
kde_cv_path_mcopidl=/opt/kde/bin/mcopidl
kde_cv_path_meinproc=/opt/kde/bin/meinproc
kde_cv_path_moc=/usr/lib/qt-3.2.3/bin/moc
kde_cv_path_uic=/usr/lib/qt-3.2.3/bin/uic
kde_cv_prog_cxx_Wno_long_long=yes
kde_cv_prog_cxx_Wnon_virtual_dtor=yes
kde_cv_prog_cxx_Wundef=yes
kde_cv_prog_cxx_fexceptions=yes
kde_cv_prog_cxx_fno_check_new=yes
kde_cv_prog_cxx_fno_exceptions=yes
kde_cv_prog_cxx_frepo=yes
kde_cv_prog_uic_L=yes
kde_cv_prog_uic_nounload=yes
kde_cv_proto_res_init=no
kde_cv_qt_direct=no
kde_cv_qt_jpeg=no
lt_cv_deplibs_check_method=pass_all
lt_cv_file_magic_cmd='$MAGIC_CMD'
lt_cv_file_magic_test_file='/lib/libc.so.6 /lib/libc-2.3.2.so'
lt_cv_ld_reload_flag=-r
lt_cv_objdir=.libs
lt_cv_path_LD=/usr/i486-slackware-linux/bin/ld
lt_cv_path_NM='/usr/bin/nm -B'
lt_cv_path_SED=/usr/bin/sed
lt_cv_prog_compiler_c_o=yes
lt_cv_prog_compiler_c_o_CXX=yes
lt_cv_prog_compiler_c_o_GCJ=no
lt_cv_prog_compiler_rtti_exceptions=no
lt_cv_prog_gnu_ld=yes
lt_cv_sys_global_symbol_pipe='sed -n -e '\''s/^.*[ 	]\([ABCDGISTW][ABCDGISTW]*\)[ 	][ 	]*\(\)\([_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_prog_compiler_c_o_GCJ='"no"'
lt_lt_cv_sys_global_symbol_pipe='"sed -n -e '\''s/^.*[ 	]\\([ABCDGISTW][ABCDGISTW]*\\)[ 	][ 	]*\\(\\)\\([_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'\''"'

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

ACLOCAL='${SHELL} /home/martin/Desktop/kuake-0.2.2/admin/missing --run aclocal-1.7'
AMDEPBACKSLASH='\'
AMDEP_FALSE='#'
AMDEP_TRUE=''
AMTAR='${SHELL} /home/martin/Desktop/kuake-0.2.2/admin/missing --run tar'
ARTSCCONFIG='/opt/kde/bin/artsc-config'
AUTOCONF='${SHELL} /home/martin/Desktop/kuake-0.2.2/admin/missing --run autoconf'
AUTODIRS=''
AUTOHEADER='${SHELL} /home/martin/Desktop/kuake-0.2.2/admin/missing --run autoheader'
AUTOMAKE='${SHELL} /home/martin/Desktop/kuake-0.2.2/admin/missing --run automake-1.7'
AWK='gawk'
CC='gcc'
CCDEPMODE='depmode=gcc3'
CFLAGS='-ansi -W -Wall -pedantic -Wshadow -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -O2  '
CONF_FILES=' $(top_srcdir)/./admin/configure.in.min $(top_srcdir)/configure.in.in'
CPP='gcc -E'
CPPFLAGS=' -DQT_THREAD_SUPPORT  -D_REENTRANT'
CXX='g++'
CXXCPP='g++ -E'
CXXDEPMODE='depmode=gcc3'
CXXFLAGS='-Wnon-virtual-dtor -Wno-long-long -Wundef -Wall -pedantic -W -Wpointer-arith -Wmissing-prototypes -Wwrite-strings -ansi -D_XOPEN_SOURCE=500 -D_BSD_SOURCE -Wcast-align -Wconversion -O2 -fno-exceptions -fno-check-new'
CYGPATH_W='echo'
DCOPIDL2CPP='/opt/kde/bin/dcopidl2cpp'
DCOPIDL='/opt/kde/bin/dcopidl'
DCOP_DEPENDENCIES='$(DCOPIDL)'
DEFS='-DHAVE_CONFIG_H'
DEPDIR='.deps'
ECHO='echo'
ECHO_C=''
ECHO_N='-n'
ECHO_T=''
EGREP='grep -E'
EXEEXT=''
FRAMEWORK_COREAUDIO=''
GMSGFMT='/usr/bin/msgfmt'
INSTALL_DATA='${INSTALL} -m 644'
INSTALL_PROGRAM='${INSTALL} $(INSTALL_STRIP_FLAG)'
INSTALL_SCRIPT='${INSTALL}'
INSTALL_STRIP_PROGRAM='${SHELL} $(install_sh) -c -s'
KDECONFIG='/opt/kde/bin/kde-config'
KDE_EXTRA_RPATH=''
KDE_INCLUDES='-I/opt/kde/include'
KDE_LDFLAGS='-L/opt/kde/lib'
KDE_MT_LDFLAGS=''
KDE_MT_LIBS='-lpthread'
KDE_PLUGIN='-avoid-version -module -no-undefined $(KDE_RPATH) $(KDE_MT_LDFLAGS)'
KDE_RPATH='-R $(kde_libraries) -R $(qt_libraries) -R $(x_libraries)'
KDE_USE_CLOSURE_FALSE='#'
KDE_USE_CLOSURE_TRUE=''
KDE_USE_FINAL_FALSE=''
KDE_USE_FINAL_TRUE='#'
KDE_XSL_STYLESHEET='/opt/kde/share/apps/ksgmltools2/customization/kde-chunk.xsl'
LDFLAGS=''
LIBCOMPAT=''
LIBCRYPT='-lcrypt'
LIBDL='-ldl'
LIBJPEG='-ljpeg'
LIBOBJS=''
LIBPNG='-lpng -lz -lm'
LIBPTHREAD='-lpthread'
LIBRESOLV=''
LIBS=''
LIBSM='-lSM -lICE'
LIBSOCKET=''
LIBTOOL='$(SHELL) $(top_builddir)/libtool --silent'
LIBUCB=''
LIBUTIL='-lutil'
LIBXINERAMA=''
LIBZ='-lz'
LIB_KAB='-lkab'
LIB_KDECORE='-lkdecore'
LIB_KDEPRINT='-lkdeprint'
LIB_KDEUI='-lkdeui'
LIB_KFILE='-lkio'
LIB_KFM=''
LIB_KHTML='-lkhtml'
LIB_KIO='-lkio'
LIB_KPARTS='-lkparts'
LIB_KSPELL='-lkspell'
LIB_KSYCOCA='-lkio'
LIB_POLL=''
LIB_QPE=''
LIB_QT='-lqt-mt  $(LIBPNG) -lXext $(LIB_X11) $(LIBSM) -lpthread'
LIB_SMB='-lsmb'
LIB_X11='-lX11 $(LIBSOCKET)'
LIB_XEXT='-lXext'
LN_S='ln -s'
LTLIBOBJS=''
MAKEINFO='${SHELL} /home/martin/Desktop/kuake-0.2.2/admin/missing --run makeinfo'
MCOPIDL='/opt/kde/bin/mcopidl'
MEINPROC='/opt/kde/bin/meinproc'
MOC='/usr/lib/qt-3.2.3/bin/moc'
MSGFMT='/usr/bin/msgfmt'
NOOPT_CFLAGS='-O0'
NOOPT_CXXFLAGS='-O0'
NOREPO='-fno-repo'
OBJEXT='o'
PACKAGE='kuake'
PACKAGE_BUGREPORT=''
PACKAGE_NAME=''
PACKAGE_STRING=''
PACKAGE_TARNAME=''
PACKAGE_VERSION=''
PATH_SEPARATOR=':'
QTE_NORTTI=''
QT_INCLUDES='-I/usr/lib/qt-3.2.3/include'
QT_LDFLAGS='-L/usr/lib/qt-3.2.3/lib'
RANLIB='ranlib'
REPO='-frepo'
SET_MAKE=''
SHELL='/bin/sh'
STRIP='strip'
TOPSUBDIRS=' doc po src'
UIC='/usr/lib/qt-3.2.3/bin/uic -L $(kde_widgetdir) -nounload'
UIC_TR='tr2i18n'
USER_INCLUDES=''
USER_LDFLAGS=''
USE_EXCEPTIONS='-fexceptions'
USE_RTTI=''
USE_THREADS=''
VERSION='0.1'
WOVERLOADED_VIRTUAL=''
XGETTEXT='/usr/bin/xgettext'
X_EXTRA_LIBS=''
X_INCLUDES='-I/usr/X11R6/include'
X_LDFLAGS='-L/usr/X11R6/lib'
X_PRE_LIBS=''
ac_ct_CC='gcc'
ac_ct_CXX='g++'
ac_ct_RANLIB='ranlib'
ac_ct_STRIP='strip'
all_includes='-I/opt/kde/include -I/usr/lib/qt-3.2.3/include -I/usr/X11R6/include '
all_libraries='-L/usr/X11R6/lib -L/usr/lib/qt-3.2.3/lib -L/opt/kde/lib '
am__fastdepCC_FALSE='#'
am__fastdepCC_TRUE=''
am__fastdepCXX_FALSE='#'
am__fastdepCXX_TRUE=''
am__include='include'
am__quote=''
bindir='${exec_prefix}/bin'
build='i686-pc-linux-gnu'
build_alias=''
build_cpu='i686'
build_os='linux-gnu'
build_vendor='pc'
datadir='${prefix}/share'
exec_prefix='${prefix}'
host='i686-pc-linux-gnu'
host_alias=''
host_cpu='i686'
host_os='linux-gnu'
host_vendor='pc'
includedir='${prefix}/include'
infodir='${prefix}/info'
install_sh='/home/martin/Desktop/kuake-0.2.2/admin/install-sh'
kde_appsdir='${prefix}/share/applnk'
kde_bindir='${exec_prefix}/bin'
kde_confdir='${prefix}/share/config'
kde_datadir='${prefix}/share/apps'
kde_htmldir='${prefix}/share/doc/HTML'
kde_icondir='${prefix}/share/icons'
kde_includes='/opt/kde/include'
kde_libraries='/opt/kde/lib'
kde_libs_htmldir='/opt/kde/share/doc/HTML'
kde_libs_prefix='/opt/kde'
kde_locale='${prefix}/share/locale'
kde_mimedir='${prefix}/share/mimelnk'
kde_moduledir='${libdir}/kde3'
kde_qtver='3'
kde_servicesdir='${prefix}/share/services'
kde_servicetypesdir='${prefix}/share/servicetypes'
kde_sounddir='${prefix}/share/sounds'
kde_styledir='${libdir}/kde3/plugins/styles'
kde_templatesdir='${prefix}/share/templates'
kde_wallpaperdir='${prefix}/share/wallpapers'
kde_widgetdir='/opt/kde/lib/kde3/plugins/designer'
libdir='${exec_prefix}/lib'
libexecdir='${exec_prefix}/libexec'
localstatedir='${prefix}/var'
mandir='${prefix}/man'
oldincludedir='/usr/include'
prefix='/opt/kde'
program_transform_name='s,x,x,'
qt_includes='/usr/lib/qt-3.2.3/include'
qt_libraries='/usr/lib/qt-3.2.3/lib'
sbindir='${exec_prefix}/sbin'
sharedstatedir='${prefix}/com'
sysconfdir='${prefix}/etc'
target='i686-pc-linux-gnu'
target_alias=''
target_cpu='i686'
target_os='linux-gnu'
target_vendor='pc'
x_includes='/usr/X11R6/include'
x_libraries='/usr/X11R6/lib'

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

#define HAVE_CRYPT 1
#define HAVE_DLFCN_H 1
#define HAVE_INTTYPES_H 1
#define HAVE_LIBJPEG 1
#define HAVE_LIBPNG 1
#define HAVE_LIBPTHREAD 1
#define HAVE_LIBZ 1
#define HAVE_MEMORY_H 1
#define HAVE_RES_INIT 1
#define HAVE_RES_INIT_PROTO 1
#define HAVE_SNPRINTF 1
#define HAVE_STDINT_H 1
#define HAVE_STDINT_H 1
#define HAVE_STDLIB_H 1
#define HAVE_STRINGS_H 1
#define HAVE_STRING_H 1
#define HAVE_SYS_STAT_H 1
#define HAVE_SYS_TYPES_H 1
#define HAVE_SYS_TYPES_H 1
#define HAVE_TEMPLATE_REPOSITORY 1
#define HAVE_UNISTD_H 1
#define HAVE_VSNPRINTF 1
#define KDELIBSUFF ""
#define KDEMAXPATHLEN 4096
#define PACKAGE "kuake"
#define PACKAGE_BUGREPORT ""
#define PACKAGE_NAME ""
#define PACKAGE_STRING ""
#define PACKAGE_TARNAME ""
#define PACKAGE_VERSION ""
#define SIZEOF_CHAR 1
#define SIZEOF_CHAR_P 4
#define SIZEOF_INT 4
#define SIZEOF_LONG 4
#define STDC_HEADERS 1
#define VERSION "0.1"
#define ksize_t socklen_t
#endif
#ifdef __cplusplus
#include <stdlib.h>

configure: exit 0