summaryrefslogtreecommitdiffstats
path: root/configure.in
blob: add03463f6fd6de87b6e0e66a2d9676c8bf9647f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
1571
1572
1573
1574
1575
1576
1577
1578
1579
1580
1581
1582
1583
1584
1585
1586
1587
1588
1589
1590
1591
1592
1593
1594
1595
1596
1597
1598
1599
1600
1601
1602
1603
1604
1605
1606
1607
1608
1609
1610
1611
1612
1613
1614
1615
1616
1617
1618
1619
1620
1621
1622
1623
1624
1625
1626
1627
1628
1629
1630
1631
1632
1633
1634
1635
1636
1637
1638
1639
1640
1641
1642
1643
1644
1645
1646
1647
1648
1649
1650
1651
1652
1653
1654
1655
1656
1657
1658
1659
1660
1661
1662
1663
1664
1665
1666
1667
1668
1669
1670
1671
1672
1673
1674
1675
1676
1677
1678
1679
1680
1681
1682
1683
1684
1685
1686
1687
1688
1689
1690
1691
1692
1693
1694
1695
1696
1697
1698
1699
1700
1701
1702
1703
1704
1705
1706
1707
1708
1709
1710
1711
1712
1713
1714
1715
1716
1717
1718
1719
1720
1721
1722
1723
1724
1725
1726
1727
1728
1729
1730
1731
1732
1733
1734
1735
1736
1737
1738
1739
1740
1741
1742
1743
1744
1745
1746
1747
1748
1749
1750
1751
1752
1753
1754
1755
1756
1757
1758
1759
1760
1761
1762
1763
1764
1765
1766
1767
1768
1769
1770
1771
1772
1773
1774
1775
1776
1777
1778
1779
1780
1781
1782
1783
1784
1785
1786
1787
1788
1789
1790
1791
1792
1793
1794
1795
1796
1797
1798
1799
1800
1801
1802
1803
1804
1805
1806
1807
1808
1809
1810
1811
1812
1813
1814
1815
1816
1817
1818
1819
1820
1821
1822
1823
1824
1825
1826
1827
1828
1829
1830
1831
1832
1833
1834
1835
1836
1837
1838
1839
1840
1841
1842
1843
1844
1845
1846
1847
1848
1849
1850
1851
1852
1853
1854
1855
1856
1857
1858
1859
1860
1861
1862
1863
1864
1865
1866
1867
1868
1869
1870
1871
1872
1873
1874
1875
1876
1877
1878
1879
1880
1881
1882
1883
1884
1885
1886
1887
1888
1889
1890
1891
1892
1893
1894
1895
1896
1897
1898
1899
1900
1901
1902
1903
1904
1905
1906
1907
1908
1909
1910
1911
1912
1913
1914
1915
1916
1917
1918
1919
1920
1921
1922
1923
1924
1925
1926
1927
1928
1929
1930
1931
1932
1933
1934
1935
1936
1937
1938
1939
1940
1941
1942
1943
1944
1945
1946
1947
1948
1949
1950
1951
1952
1953
1954
1955
1956
1957
1958
1959
1960
1961
1962
1963
1964
1965
1966
1967
1968
1969
1970
1971
1972
1973
1974
1975
1976
1977
1978
1979
1980
1981
1982
1983
1984
1985
1986
1987
1988
1989
1990
1991
1992
1993
1994
1995
1996
1997
1998
1999
2000
2001
2002
2003
2004
2005
2006
2007
2008
2009
2010
2011
2012
2013
2014
2015
2016
2017
2018
2019
2020
2021
2022
2023
2024
2025
2026
2027
2028
2029
2030
2031
2032
2033
2034
2035
2036
2037
2038
2039
2040
2041
2042
2043
2044
2045
2046
2047
2048
2049
2050
2051
2052
2053
2054
2055
2056
2057
2058
2059
2060
2061
2062
2063
2064
2065
2066
2067
2068
2069
2070
2071
2072
2073
2074
2075
2076
2077
2078
2079
2080
2081
2082
2083
2084
2085
2086
2087
2088
2089
2090
2091
2092
2093
2094
2095
2096
2097
2098
2099
2100
2101
2102
2103
2104
2105
2106
2107
2108
2109
2110
2111
2112
2113
2114
2115
2116
2117
2118
2119
2120
2121
2122
2123
2124
2125
2126
2127
2128
2129
2130
2131
2132
2133
2134
2135
2136
2137
2138
2139
2140
2141
2142
2143
2144
2145
2146
2147
2148
2149
2150
2151
2152
2153
2154
2155
2156
2157
2158
2159
2160
2161
2162
2163
2164
2165
2166
2167
2168
2169
2170
2171
2172
2173
2174
2175
2176
2177
2178
2179
2180
2181
2182
2183
2184
2185
2186
2187
2188
2189
2190
2191
2192
2193
2194
2195
2196
2197
2198
2199
2200
2201
2202
2203
2204
2205
2206
2207
2208
2209
2210
2211
2212
2213
2214
2215
2216
2217
2218
2219
2220
2221
2222
2223
2224
2225
2226
2227
2228
2229
2230
2231
2232
2233
2234
2235
2236
2237
2238
2239
2240
2241
2242
2243
2244
2245
2246
2247
2248
2249
2250
2251
2252
2253
2254
2255
2256
2257
2258
2259
2260
2261
2262
2263
2264
2265
2266
2267
2268
2269
2270
2271
2272
2273
2274
2275
2276
2277
2278
2279
2280
2281
2282
2283
2284
2285
2286
2287
2288
2289
2290
2291
2292
2293
2294
2295
2296
2297
2298
2299
2300
2301
2302
2303
2304
2305
2306
2307
2308
2309
2310
2311
2312
2313
2314
2315
2316
2317
2318
2319
2320
2321
2322
2323
2324
2325
2326
2327
2328
2329
2330
2331
2332
2333
2334
2335
2336
2337
2338
2339
2340
2341
2342
2343
2344
2345
2346
2347
2348
2349
2350
2351
2352
2353
2354
2355
2356
2357
2358
2359
2360
2361
2362
2363
2364
2365
2366
2367
2368
2369
2370
2371
2372
2373
2374
2375
2376
2377
2378
2379
2380
2381
2382
2383
2384
2385
2386
2387
2388
2389
2390
2391
2392
2393
2394
2395
2396
2397
2398
2399
2400
2401
2402
2403
2404
2405
2406
2407
2408
2409
2410
2411
2412
2413
2414
2415
2416
2417
2418
2419
2420
2421
2422
2423
2424
2425
2426
2427
2428
2429
2430
2431
2432
2433
2434
2435
2436
2437
2438
2439
2440
2441
2442
2443
2444
2445
2446
2447
2448
2449
2450
2451
2452
2453
2454
2455
2456
2457
2458
2459
2460
2461
2462
2463
2464
2465
2466
2467
2468
2469
2470
2471
2472
2473
2474
2475
2476
2477
2478
2479
2480
2481
2482
2483
2484
2485
2486
2487
2488
2489
2490
2491
2492
2493
2494
2495
2496
2497
2498
2499
2500
2501
2502
2503
2504
2505
2506
2507
2508
2509
2510
2511
2512
2513
2514
2515
2516
2517
2518
2519
2520
2521
2522
2523
2524
2525
2526
2527
2528
2529
2530
2531
2532
2533
2534
2535
2536
2537
2538
2539
2540
2541
2542
2543
2544
2545
2546
2547
2548
2549
2550
2551
2552
2553
2554
2555
2556
2557
2558
2559
2560
2561
2562
2563
2564
2565
2566
2567
2568
2569
2570
2571
2572
2573
2574
2575
2576
2577
2578
2579
2580
2581
2582
2583
2584
2585
2586
2587
2588
2589
2590
2591
2592
2593
2594
2595
2596
2597
2598
2599
2600
2601
2602
2603
2604
2605
2606
2607
2608
2609
2610
2611
2612
2613
2614
2615
2616
2617
2618
2619
2620
2621
2622
2623
2624
2625
2626
2627
2628
2629
2630
2631
2632
2633
2634
2635
2636
2637
2638
2639
2640
2641
2642
2643
2644
2645
2646
2647
2648
2649
2650
2651
2652
2653
2654
2655
2656
2657
2658
2659
2660
2661
2662
2663
2664
2665
2666
dnl =======================================================
dnl FILE: ./admin/configure.in.min
dnl =======================================================

dnl    This file is part of the KDE libraries/packages
dnl    Copyright (C) 2001 Stephan Kulow (coolo@kde.org)
 
dnl    This file is free software; you can redistribute it and/or
dnl    modify it under the terms of the GNU Library General Public
dnl    License as published by the Free Software Foundation; either
dnl    version 2 of the License, or (at your option) any later version.
 
dnl    This library is distributed in the hope that it will be useful,
dnl    but WITHOUT ANY WARRANTY; without even the implied warranty of
dnl    MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.  See the GNU
dnl    Library General Public License for more details.
 
dnl    You should have received a copy of the GNU Library General Public License
dnl    along with this library; see the file COPYING.LIB.  If not, write to
dnl    the Free Software Foundation, Inc., 51 Franklin Street, Fifth Floor,
dnl    Boston, MA 02110-1301, USA.

# Original Author was Kalle@kde.org
# I lifted it in some mater. (Stephan Kulow)
# I used much code from Janos Farkas

dnl Process this file with autoconf to produce a configure script.

AC_INIT(acinclude.m4) dnl a source file from your sub dir

dnl This is so we can use kde-common
AC_CONFIG_AUX_DIR(admin)

dnl This ksh/zsh feature conflicts with `cd blah ; pwd`
unset CDPATH

dnl Checking host/target/build systems, for make, install etc.
AC_CANONICAL_SYSTEM 
dnl Perform program name transformation
AC_ARG_PROGRAM

dnl Automake doc recommends to do this only here. (Janos)
AM_INIT_AUTOMAKE(koffice, "1.6.3") dnl searches for some needed programs

AM_MAINTAINER_MODE

KDE_SET_PREFIX

dnl generate the config header
AM_CONFIG_HEADER(config.h) dnl at the distribution this done

dnl Checks for programs.
AC_CHECK_COMPILERS
AC_ENABLE_SHARED(yes)
AC_ENABLE_STATIC(no)
KDE_PROG_LIBTOOL

dnl for NLS support. Call them in this order!
dnl WITH_NLS is for the po files
AM_KDE_WITH_NLS

KDE_USE_QT(3.3)
AC_PATH_KDE
dnl =======================================================
dnl FILE: configure.in.in
dnl =======================================================

#MIN_CONFIG(3.3)

# Remember to synchronize the version number with the file koffice/lib/kofficecore/kofficeversion.h
dnl PACKAGE set before

CXXFLAGS="$CXXFLAGS $KDE_DEFAULT_CXXFLAGS"

AC_CHECK_HEADERS(unistd.h sys/param.h floatingpoint.h paths.h)
AC_C_BIGENDIAN
AC_CHECK_KDEMAXPATHLEN

KDE_INIT_DOXYGEN([The KOffice API Reference], [Version $VERSION])

# Check for GraphicsMagick...

have_graphicsmagick=no
KDE_FIND_PATH(GraphicsMagick-config, GRAPHICS_MAGICK_CONFIG, [${prefix}/bin ${exec_prefix}/bin /usr/local/bin /opt/local/bin], [
  AC_MSG_WARN([Could not find GraphicsMagick anywhere, check http://www.graphicsmagick.org/ for GraphicsMagick >= 1.1.7.])
])

if test -n "$GRAPHICS_MAGICK_CONFIG"; then
 vers=`$GRAPHICS_MAGICK_CONFIG --version 2>/dev/null | $AWK 'BEGIN { FS = "."; } { printf "%d", ($1 * 1000 + $2) * 1000 + $3;}'`
  if test -n "$vers" && test "$vers" -ge 1001007;  then
     LIBGMAGICK_LIBS="`$GRAPHICS_MAGICK_CONFIG --libs`"
     LIBGMAGICK_LDFLAGS="`$GRAPHICS_MAGICK_CONFIG --ldflags`"
     LIBGMAGICK_RPATH=
     for args in $LIBGMAGICK_LIBS; do
	  case $args in
	    -L*)
  	       LIBGMAGICK_RPATH="$LIBMAGICK_RPATH $args"
 	       ;;
          esac
     done
     LIBGMAGICK_RPATH=`echo $LIBGMAGICK_RPATH | $SED -e "s/-L/-R/g"`
     LIBGMAGICK_CPPFLAGS="`$GRAPHICS_MAGICK_CONFIG --cppflags`"
     AC_DEFINE(HAVE_GMAGICK,1, [GraphicsMagick is available])
     have_graphicsmagick=yes
  else
     AC_MSG_WARN([You need at least GraphicsMagick 1.1.7])
  fi

fi

if test ! "$USE_RPATH" = "yes"; then
    LIBGMAGICK_RPATH=
fi

AC_SUBST(LIBGMAGICK_LIBS)
AC_SUBST(LIBGMAGICK_LDFLAGS)
AC_SUBST(LIBGMAGICK_CPPFLAGS)
AC_SUBST(LIBGMAGICK_RPATH)
AM_CONDITIONAL(include_graphicsmagick_filter, test "$have_graphicsmagick" = "yes" -a HAVE_GMAGICK)

# End of GraphicsMagick check

# Check for ImageMagick...

have_imagemagick=no
KDE_FIND_PATH(Magick-config, MAGICK_CONFIG, [${prefix}/bin ${exec_prefix}/bin /usr/local/bin /opt/local/bin], [
  AC_MSG_WARN([Could not find ImageMagick anywhere, check http://www.imagemagick.org/ for ImageMagick >= 5.5.2.])
])

if test -n "$MAGICK_CONFIG"; then
  vers=`$MAGICK_CONFIG --version 2>/dev/null | $AWK 'BEGIN { FS = "."; } { printf "%d", ($1 * 1000 + $2) * 1000 + $3;}'`
  if test -n "$vers" && test "$vers" -ge 5005002 
  then
     if test "$vers" -ge 6000003
     then
        AC_DEFINE(HAVE_MAGICK6, 1, [ImageMagick Version 6])
     fi
     if test "$vers" -ge 6001000
     then
        AC_DEFINE(HAVE_MAGICK61, 1, [ImageMagick Version 6.1])
     fi
     LIBMAGICK_LIBS="`$MAGICK_CONFIG --libs`"
     LIBMAGICK_LDFLAGS="`$MAGICK_CONFIG --ldflags`"
     LIBMAGICK_RPATH=
     for args in $LIBMAGICK_LIBS; do
	  case $args in
	    -L*)
  	       LIBMAGICK_RPATH="$LIBMAGICK_RPATH $args"
 	       ;;
          esac
     done
     LIBMAGICK_RPATH=`echo $LIBMAGICK_RPATH | $SED -e "s/-L/-R/g"`
     LIBMAGICK_CPPFLAGS="`$MAGICK_CONFIG --cppflags`"
     AC_DEFINE(HAVE_MAGICK,1, [ImageMagick is available])
     have_imagemagick=yes
  else
     AC_MSG_WARN([You need at least ImageMagick 5.5.2])
  fi
fi

if test ! "$USE_RPATH" = "yes"; then
    LIBMAGICK_RPATH=
fi

AC_SUBST(LIBMAGICK_LIBS)
AC_SUBST(LIBMAGICK_LDFLAGS)
AC_SUBST(LIBMAGICK_CPPFLAGS)
AC_SUBST(LIBMAGICK_RPATH)
AM_CONDITIONAL(include_imagemagick_filter, test "$have_imagemagick" = "yes" -a HAVE_MAGICK61 -a ! "$have_graphicsmagick" = "yes" -a ! HAVE_GMAGICK)

# End of ImageMagick check

##########################################################################
# This last check is copied from kdenonbeta/gsf/configure.in.in
##########################################################################
# KOFFICE_PKG_CHECK_MODULES(GSTUFF, gtk+-2.0 >= 1.3 glib = 1.3.4, action-if, action-not)
# defines GSTUFF_LIBS, GSTUFF_CFLAGS, see pkg-config man page
# also defines GSTUFF_PKG_ERRORS on error
# Note: This is specially tweaked for karbon's fontconfig check. Please fix
# it before using it for other tests :-)
AC_DEFUN([KOFFICE_PKG_CHECK_MODULES], [
  succeeded=no

  if test -z "$PKG_CONFIG"; then
    AC_PATH_PROG(PKG_CONFIG, pkg-config, no)
  fi

  if test "$PKG_CONFIG" = "no" ; then
     echo "*** The pkg-config script could not be found. Make sure it is"
     echo "*** in your path, or set the PKG_CONFIG environment variable"
     echo "*** to the full path to pkg-config."
     echo "*** Or see http://www.freedesktop.org/software/pkgconfig to get pkg-config."
     echo "***"
     echo "*** Due to that we can't perform the check for fontconfig..."    # added for karbon (Werner)
  else
     PKG_CONFIG_MIN_VERSION=0.9.0
     if $PKG_CONFIG --atleast-pkgconfig-version $PKG_CONFIG_MIN_VERSION; then
        AC_MSG_CHECKING(for $2)

        if $PKG_CONFIG --exists "$2" ; then
            AC_MSG_RESULT(yes)
            succeeded=yes

            AC_MSG_CHECKING($1_CFLAGS)
            $1_CFLAGS=`$PKG_CONFIG --cflags "$2"`
            AC_MSG_RESULT($$1_CFLAGS)

            AC_MSG_CHECKING($1_LIBS)
            $1_LIBS=`$PKG_CONFIG --libs "$2"`
            AC_MSG_RESULT($$1_LIBS)
        else
            $1_CFLAGS=""
            $1_LIBS=""
            ## If we have a custom action on failure, don't print errors, but 
            ## do set a variable so people can do so.
            $1_PKG_ERRORS=`$PKG_CONFIG --errors-to-stdout --print-errors "$2"`
            ifelse([$4], ,echo $$1_PKG_ERRORS,)
        fi

        AC_SUBST($1_CFLAGS)
        AC_SUBST($1_LIBS)
     else
        echo "*** Your version of pkg-config is too old. You need version $PKG_CONFIG_MIN_VERSION or newer."
        echo "*** See http://www.freedesktop.org/software/pkgconfig"
     fi
  fi

  if test $succeeded = yes; then
     ifelse([$3], , :, [$3])
#  else                           # removed for karbon (Werner)
#    ifelse([$4], , AC_MSG_ERROR([Library requirements ($2) not met; consider adjusting the PKG_CONFIG_PATH environment variable if your libraries are in a nonstandard prefix so pkg-config can find them.]), [$4])
  fi
])

# --- Check for KDE 3.2 or 3.3 ---

AC_MSG_CHECKING([for KDE version])

AC_LANG_SAVE
AC_LANG_CPLUSPLUS
kdeversion_save_CXXFLAGS="$CXXFLAGS"
kdeversion_safe_LIBS="$LIBS"
LIBS="$LIBS $X_EXTRA_LIBS"
CXXFLAGS="$CXXFLAGS $all_includes"

AC_COMPILE_IFELSE([
#include <kdeversion.h>
#if ! ( KDE_IS_VERSION( 3, 2, 90 ) )
#error KDE 3.2
#endif
],
	need_kde32_compat="no"
,
	need_kde32_compat="yes"
)

AC_COMPILE_IFELSE([
#include <kdeversion.h>
#if ! ( KDE_IS_VERSION( 3, 3, 90 ) )
#error KDE 3.3
#endif
],
	need_kde33_compat="no"
,
	need_kde33_compat="yes"
)

AC_COMPILE_IFELSE([
#include <kdeversion.h>
#if ! ( KDE_IS_VERSION( 3, 4, 90 ) )
#error KDE 3.4
#endif
],
	need_kde34_compat="no"
,
	need_kde34_compat="yes"
)

AC_COMPILE_IFELSE([
#include <kdeversion.h>
#if ! ( KDE_IS_VERSION( 3, 5, 2 ) )
#error KDE 3.5.x (x < 2)
#endif
],
	need_kde351_compat="no"
,
	need_kde351_compat="yes"
)
CXXFLAGS="$kdeversion_save_CXXFLAGS"
LIBS="$kdeversion_safe_LIBS"
AC_LANG_RESTORE

if test "$need_kde32_compat" = "yes"; then
	AC_MSG_RESULT([KDE 3.2.x])
else
	if test "$need_kde33_compat" = "yes"; then
		AC_MSG_RESULT([KDE 3.3.x])
	else 
		if test "$need_kde34_compat" = "yes"; then
			AC_MSG_RESULT([KDE 3.4.x])
                else
                        if test "$need_kde351_compat" = "yes"; then
                                AC_MSG_RESULT([KDE 3.5.x (x < 2)])
                        else
			        AC_MSG_RESULT([KDE 3.5.x (x >=2) or SVN trunk])
                        fi
		fi
	fi
fi

AM_CONDITIONAL(need_kde32_compatibility, test "$need_kde32_compat" = "yes")
AM_CONDITIONAL(need_kde33_compatibility, test "$need_kde33_compat" = "yes")
AM_CONDITIONAL(need_kde34_compatibility, test "$need_kde34_compat" = "yes")
AM_CONDITIONAL(need_kde351_compatibility, test "$need_kde351_compat" = "yes")

# Keep the old KDE 3.1 test, as long as it is still used
AM_CONDITIONAL(need_kde31_compatibility, test "supported" = "no")

# --- End KDE 3.2 check ---

# --- OpenEXR check ---

KDE_FIND_PATH(pkg-config, PKGCONFIG, [${prefix}/bin ${exec_prefix}/bin /usr/bin /usr/local/bin /opt/local/bin], [
  AC_MSG_WARN([Could not find pkg-config])
])

AC_MSG_CHECKING([for OpenEXR])

if test -n "$PKGCONFIG"; then
  vers=`$PKGCONFIG OpenEXR --modversion 2>/dev/null`
  if test -n "$vers"
  then
     OPENEXR_LIBS="`$PKGCONFIG OpenEXR --libs`"
     OPENEXR_RPATH=
     for args in $OPENEXR_LIBS; do
          case $args in
            -L*)
               OPENEXR_RPATH="$OPENEXR_RPATH $args"
               ;;
          esac
     done
     OPENEXR_RPATH=`echo $OPENEXR_RPATH | $SED -e "s/-L/-R/g"`
     OPENEXR_CFLAGS="`$PKGCONFIG OpenEXR --cflags`"

     AC_DEFINE_UNQUOTED(HAVE_OPENEXR, 1, [Defines if your system has the OpenEXR library])
  fi
fi

if test ! "$USE_RPATH" = "yes"; then
    OPENEXR_RPATH=
fi

if test -n "$OPENEXR_LIBS"
then
  AC_MSG_RESULT([yes])
else
  AC_MSG_RESULT([not found])
fi

AC_SUBST(OPENEXR_LIBS)
AC_SUBST(OPENEXR_CFLAGS)
AC_SUBST(OPENEXR_RPATH)

AM_CONDITIONAL(have_openexr, test -n "$OPENEXR_LIBS")

# --- End of OpenEXR check ---
dnl =======================================================
dnl FILE: ./example/configure.in.in
dnl =======================================================

dnl This is here so that example isn't compiled and intalled by default.
dnl Do NOT put this file in your application, if you want it compiled !

DO_NOT_COMPILE="$DO_NOT_COMPILE example"
dnl =======================================================
dnl FILE: ./filters/krita/configure.in.in
dnl =======================================================

# Check if the tiff lib is available
AC_FIND_TIFF
AM_CONDITIONAL(have_tiff, test -n "$LIBTIFF")

AC_FIND_PNG
AM_CONDITIONAL(have_png, test -n "$LIBPNG")

AC_FIND_JPEG
AM_CONDITIONAL(have_jpeg, test -n "$LIBJPEG")

#---------------------------------------------------------
# libexif detection
# taken from libkexif's configure.in.in
#---------------------------------------------------------

LIBEXIF=no

#PKG_CHECK_MODULES(LIBEXIF, libexif >= 0.5.7, ,
#        [ AC_MSG_WARN([libexif >= 0.5.7 not found.])
#          LIBEXIF=yes ])


#PKG_CHECK_MODULES(LIBEXIF06, libexif >= 0.6.9,
#        AC_DEFINE(HAVE_EXIF06,1,[check for libexif > 0.6]),
#                AC_MSG_WARN([Using old version of libexif.]))

PKG_CHECK_MODULES(LIBEXIF, libexif >= 0.6.12 , ,
        [ AC_MSG_WARN([libexif >= 0.6.12 not found.])
          LIBEXIF=yes ])

AC_SUBST(LIBEXIF_LIBS)
AC_SUBST(LIBEXIF_CFLAGS)

#---------------------------------------------------------
# libexif detection
#---------------------------------------------------------
AC_MSG_CHECKING([if C++ program with exif can be compiled])
AC_LANG_SAVE
AC_LANG_CPLUSPLUS
ac_save_CXXFLAGS="$CXXFLAGS"
CXXFLAGS="$CXXFLAGS $LIBEXIF_CFLAGS"
AC_CACHE_VAL(exif_build,
[
    AC_TRY_COMPILE([
    extern "C" {
#include <libexif/exif-loader.h>
#include <libexif/exif-utils.h>
}
    ],[
        ExifLoader *l = exif_loader_new ();
        exif_loader_write_file (l,"kikoo");
        return 0;
    ], exif_build=yes,
    exif_build=no)
])
AC_MSG_RESULT($exif_build)
if test "$exif_build" = "no"; then
    LIBEXIF=""
fi
CXXFLAGS="$ac_save_CXXFLAGS"
AC_LANG_RESTORE

                
AM_CONDITIONAL(have_exif, test -n "$LIBEXIF")
AM_CONDITIONAL(include_jpeg_filter, test -n "$LIBJPEG" -a -n "$LIBEXIF")
AM_CONDITIONAL(include_tiff_filter, test -n "$LIBTIFF" -a -n "$LIBEXIF")
dnl =======================================================
dnl FILE: ./filters/krita/pdf/configure.in.in
dnl =======================================================

# Compile the pdf import filter only if Poppler is available
PKG_CHECK_MODULES(POPPLER, poppler-qt >= 0.5.1, have_poppler=yes, have_poppler=no)

AM_CONDITIONAL(include_PDF, test "x$have_poppler" = xyes) 
dnl =======================================================
dnl FILE: ./filters/kword/msword/configure.in.in
dnl =======================================================

AC_ARG_WITH(libwv2,AC_HELP_STRING([--with-libwv2=DIR],[use libwv2 in DIR]),[
	if [ test "x$withval" != "xno" ]; then
		if [ test "x$withval" != "xyes" ]; then
			WV2_DIR=$withval
		fi
		search_for_wv2=yes
	else
		search_for_wv2=no
	fi
],[	search_for_wv2=yes
])

if [ test $search_for_wv2 != no ]; then
	if [ test -n "$WV2_DIR" ]; then
		KDE_FIND_PATH(wv2-config, WV2_CONFIG, [$WV2_DIR/bin], [
		  AC_MSG_WARN([Could not find libwv2, check http://www.sourceforge.net/projects/wvware/])
		])
	else
		KDE_FIND_PATH(wv2-config, WV2_CONFIG, [${prefix}/bin ${exec_prefix}/bin /usr/local/bin /opt/local/bin], [
		  AC_MSG_WARN([Could not find libwv2 anywhere, check http://www.sourceforge.net/projects/wvware/])
		])
	fi
fi

if test -n "$WV2_CONFIG"; then
  vers=`$WV2_CONFIG --version 2>/dev/null | $SED -e 's/libwv2 //' | $AWK 'BEGIN { FS = "."; } { printf "%d", ($1 * 1000 + $2) * 1000 + $3;}'`
  if test -n "$vers" && test "$vers" -ge 1009
  then
     LIBWV2_LIBS="`$WV2_CONFIG --libs`"
     LIBWV2_RPATH=
     for args in $LIBWV2_LIBS; do
	  case $args in
	    -L*)
  	       LIBWV2_RPATH="$LIBWV2_RPATH $args"
 	       ;;
          esac
     done
     LIBWV2_RPATH=`echo $LIBWV2_RPATH | $SED -e "s/-L/-R/g"`
     LIBWV2_CFLAGS="`$WV2_CONFIG --cflags`"

     AC_DEFINE_UNQUOTED(HAVE_WV2, 1, [Defines if your system has the wv2 library])
  else
     AC_MSG_WARN([You need at least version 0.1.9 of libwv2])
  fi
fi


AC_SUBST(LIBWV2_LIBS)
AC_SUBST(LIBWV2_CFLAGS)
AC_SUBST(LIBWV2_RPATH)
AM_CONDITIONAL(include_wv2_msword_filter, test -n "$LIBWV2_LIBS")
dnl =======================================================
dnl FILE: ./filters/kword/pdf/xpdf/configure.in.in
dnl =======================================================


AC_HEADER_DIRENT
AC_HEADER_STDC
AC_CHECK_FUNCS(rewinddir popen mkstemp)

dnl ##### Check for fseeko/ftello or fseek64/ftell64
dnl The LARGEFILE and FSEEKO macros have to be called in C, not C++, mode.
AC_SYS_LARGEFILE
AC_FUNC_FSEEKO
AC_CHECK_FUNCS(fseek64)
AC_CHECK_FUNCS(ftell64)

dnl ##### Check for libpaper (Debian).
KDE_CHECK_HEADERS(paper.h)
KDE_CHECK_LIB(paper, paperinit, [LIBPAPER="-lpaper"])
AC_SUBST(LIBPAPER)
dnl =======================================================
dnl FILE: ./filters/kword/wordperfect/configure.in.in
dnl =======================================================

KDE_FIND_PATH(pkg-config, PKGCONFIG, [${prefix}/bin ${exec_prefix}/bin /usr/bin /usr/local/bin /opt/local/bin], [
  AC_MSG_WARN([Could not find pkg-config])
])

if test -n "$PKGCONFIG"; then
  vers=`$PKGCONFIG libwpd-0.8 --modversion 2>/dev/null`
  if test -n "$vers"
  then
     LIBWPD_LIBS="`$PKGCONFIG libwpd-0.8 --libs`"
     LIBWPD_RPATH=
     for args in $LIBWPD_LIBS; do
          case $args in
            -L*)
               LIBWPD_RPATH="$LIBWPD_RPATH $args"
               ;;
          esac
     done
     LIBWPD_RPATH=`echo $LIBWPD_RPATH | $SED -e "s/-L/-R/g"`
     LIBWPD_CFLAGS="`$PKGCONFIG libwpd-0.8 --cflags`"

     AC_DEFINE_UNQUOTED(HAVE_WPD, 1, [Defines if your system has the libwpd library])
  fi
fi


AC_SUBST(LIBWPD_LIBS)
AC_SUBST(LIBWPD_CFLAGS)
AC_SUBST(LIBWPD_RPATH)

AM_CONDITIONAL(include_wpd_filter, test -n "$LIBWPD_LIBS")

dnl =======================================================
dnl FILE: ./filters/xsltfilter/configure.in.in
dnl =======================================================


KDE_FIND_PATH(xml2-config, XML_CONFIG, [${prefix}/bin ${exec_prefix}/bin /usr/local/bin /opt/local/bin], [
  AC_MSG_WARN([Could not find libxml2 anywhere, check ftp://xmlsoft.org/ for libxml >= 2.4.8. (we also keep a version of it in kdesupport for CVS users' convience)])
  HELP_SUBDIR=
])

if test -n "$XML_CONFIG"; then
  vers=`$XML_CONFIG --version 2>/dev/null | $SED -e 's/libxml //' | $AWK 'BEGIN { FS = "."; } { printf "%d", ($1 * 1000 + $2) * 1000 + $3;}'`
  if test -n "$vers" && test "$vers" -ge 2004008
  then
     LIBXML_LIBS="`$XML_CONFIG --libs`"
     LIBXML_RPATH=
     for args in $LIBXML_LIBS; do
	  case $args in
	    -L*)
  	       LIBXML_RPATH="$LIBXML_RPATH $args"
 	       ;;
          esac
     done
     LIBXML_RPATH=`echo $LIBXML_RPATH | $SED -e "s/-L/-R/g"`
     LIBXML_CFLAGS="`$XML_CONFIG --cflags`"

     KDE_FIND_PATH(xmllint, XMLLINT, [${prefix}/bin ${exec_prefix}/bin /usr/local/bin /opt/local/bin], [XMLLINT=""])
     AC_DEFINE_UNQUOTED(XMLLINT, "$XMLLINT", [Defines the executable of xmllint])
  else
     AC_MSG_WARN([You need at least libxml 2.4.8])
     HELP_SUBDIR=
  fi
fi

KDE_FIND_PATH(xslt-config, XSLT_CONFIG, [${prefix}/bin ${exec_prefix}/bin /usr/local/bin /opt/local/bin], [
  AC_MSG_WARN([Could not find libxslt anywhere, check ftp://xmlsoft.org/ for libxslt >= 1.0.7. (we also keep a version of it in kdesupport for CVS users' convience)])
  HELP_SUBDIR=
])

if test -n "$XSLT_CONFIG"; then
   vers=`$XSLT_CONFIG --version 2>/dev/null | $AWK 'BEGIN { FS = "."; } { printf "%d", ($1 * 1000 + $2) * 1000 + $3;}'`
   if test -n "$vers" && test "$vers" -ge 1000007; then
     LIBXSLT_LIBS="`$XSLT_CONFIG --libs`"
     LIBXSLT_RPATH=
     for args in $LIBXSLT_LIBS; do
       case $args in
        -L*)
  	  LIBXSLT_RPATH="$LIBXSLT_RPATH $args"
 	  ;;
       esac
     done
     LIBXSLT_RPATH=`echo $LIBXSLT_RPATH | $SED -e "s/-L/-R/g"`
     LIBXSLT_CFLAGS="`$XSLT_CONFIG --cflags`"

   else
     AC_MSG_WARN([You need at least libxslt 1.0.7])
     HELP_SUBDIR=
   fi
fi

if test ! "$USE_RPATH" = "yes"; then
    LIBXSLT_RPATH=
    LIBXML_RPATH=
fi

AC_SUBST(LIBXSLT_LIBS)
AC_SUBST(LIBXSLT_CFLAGS)
AC_SUBST(LIBXSLT_RPATH)

AC_SUBST(LIBXML_LIBS)
AC_SUBST(LIBXML_CFLAGS)
AC_SUBST(LIBXML_RPATH)

AM_CONDITIONAL(include_XSLTFILTERS, test -n "$LIBXML_LIBS" -a -n "$LIBXSLT_LIBS")
dnl =======================================================
dnl FILE: ./karbon/configure.in.in
dnl =======================================================


KDE_FIND_PATH(freetype-config, FREETYPE_CONFIG, [${prefix}/bin ${exec_prefix}/bin /usr/local/bin /opt/local/bin], [
  AC_MSG_WARN([Could not find libfreetype anywhere, check http://www.freetype.org/])
])

if test -n "$FREETYPE_CONFIG"; then
  vers=`$FREETYPE_CONFIG --version 2>/dev/null | $SED -e 's/libfreetype //' | $AWK 'BEGIN { FS = "."; } { printf "%d", ($1 * 1000 + $2) * 1000 + $3;}'`
  if test -n "$vers" && test "$vers" -ge 5000000
  then
     LIBFREETYPE_LIBS="`$FREETYPE_CONFIG --libs`"
     LIBFREETYPE_RPATH=
     for args in $LIBFREETYPE_LIBS; do
	  case $args in
	    -L*)
  	       LIBFREETYPE_RPATH="$LIBFREETYPE_RPATH $args"
 	       ;;
          esac
     done
     LIBFREETYPE_RPATH=`echo $LIBFREETYPE_RPATH | $SED -e "s/-L/-R/g"`
     LIBFREETYPE_CFLAGS="`$FREETYPE_CONFIG --cflags`"
  else
     AC_MSG_WARN([You need at least libfreetype 5.0])
  fi
fi

AC_SUBST(LIBFREETYPE_LIBS)
AC_SUBST(LIBFREETYPE_CFLAGS)
AC_SUBST(LIBFREETYPE_RPATH)


KDE_FIND_PATH(libart2-config, LIBART_CONFIG, [${prefix}/bin ${exec_prefix}/bin /usr/local/bin /opt/local/bin], [
  AC_MSG_WARN([Could not find libart anywhere, check http://www.levien.com/libart/])
])

if test -n "$LIBART_CONFIG"; then
  vers=`$LIBART_CONFIG --version 2>/dev/null | $AWK 'BEGIN { FS = "."; } { printf "%d", ($1 * 1000 + $2) * 1000 + $3;}'`
  if test -n "$vers" && test "$vers" -ge 2003008
  then
     LIBART_LIBS="`$LIBART_CONFIG --libs`"
     LIBART_RPATH=
     for args in $LIBART_LIBS; do
	  case $args in
	    -L*)
  	       LIBART_RPATH="$LIBART_RPATH $args"
 	       ;;
          esac
     done
     LIBART_RPATH=`echo $LIBART_RPATH | $SED -e "s/-L/-R/g"`
     LIBART_CFLAGS="`$LIBART_CONFIG --cflags`"

     AC_DEFINE_UNQUOTED(HAVE_LIBART, 1, [Defines if your system has the libart library])
  else
     AC_MSG_WARN([You need at least libart 2.3.8])
  fi
fi

AC_SUBST(LIBART_LIBS)
AC_SUBST(LIBART_CFLAGS)
AC_SUBST(LIBART_RPATH)


# Check for fontconfig
KDE_FIND_PATH(fontconfig-config, FONTCONFIG_CONFIG, [${prefix}/bin ${exec_prefix}/bin /usr/bin /usr/local/bin /opt/local/bin], [
        KDE_FIND_PATH(pkg-config, PKGCONFIG, [${prefix}/bin ${exec_prefix}/bin /usr/bin /usr/local/bin /opt/local/bin], [
            AC_MSG_WARN([Could not find neither pkg-config nor fontconfig-config, check http://www.fontconfig.org/ ])
        ])
])

if test -n "$PKGCONFIG"; then
  vers=`$PKGCONFIG fontconfig --modversion 2>/dev/null | $SED -e 's/libfontconfig //' | $AWK 'BEGIN { FS = "."; } { printf "%d", ($1 * 1000 + $2) * 1000 + $3;}'`
  if test -n "$vers" && test "$vers" -ge 1000001
  then
     LIBFONTCONFIG_LIBS="`$PKGCONFIG fontconfig --libs`"
     LIBFONTCONFIG_RPATH=
     for args in $LIBFONTCONFIG_LIBS; do
          case $args in
            -L*)
               LIBFONTCONFIG_RPATH="$LIBFONTCONFIG_RPATH $args"
               ;;
          esac
     done
     LIBFONTCONFIG_RPATH=`echo $LIBFONTCONFIG_RPATH | $SED -e "s/-L/-R/g"`
     LIBFONTCONFIG_CFLAGS="`$PKGCONFIG fontconfig --cflags`"

     AC_DEFINE_UNQUOTED(HAVE_FONTCONFIG, 1, [Defines if your system has the libfontconfig library])
  fi
fi

if test -n "$FONTCONFIG_CONFIG"; then
  vers=`$FONTCONFIG_CONFIG --version 2>/dev/null | $SED -e 's/libfontconfig //' | $AWK 'BEGIN { FS = "."; } { printf "%d", ($1 * 1000 + $2) * 1000 + $3;}'`
  if test -n "$vers" && test "$vers" -ge 1000001
  then
     LIBFONTCONFIG_LIBS="`$FONTCONFIG_CONFIG --libs`"
     LIBFONTCONFIG_RPATH=
     for args in $LIBFONTCONFIG_LIBS; do
          case $args in
            -L*)
               LIBFONTCONFIG_RPATH="$LIBFONTCONFIG_RPATH $args"
               ;;
          esac
     done
     LIBFONTCONFIG_RPATH=`echo $LIBFONTCONFIG_RPATH | $SED -e "s/-L/-R/g"`
     LIBFONTCONFIG_CFLAGS="`$FONTCONFIG_CONFIG --cflags`"

     AC_DEFINE_UNQUOTED(HAVE_FONTCONFIG, 1, [Defines if your system has the libfontconfig library])
  fi
fi

AC_SUBST(LIBFONTCONFIG_LIBS)
AC_SUBST(LIBFONTCONFIG_CFLAGS)
AC_SUBST(LIBFONTCONFIG_RPATH)

if test -z "$LIBART_LIBS"; then
	DO_NOT_COMPILE="$DO_NOT_COMPILE karbon"
fi

if test -n "$LIBFREETYPE_LIBS" -a -n "$LIBFONTCONFIG_LIBS"; then
	AC_DEFINE_UNQUOTED(HAVE_KARBONTEXT, 1, [Defines if your system has the fontconfig and freetype libraries])
fi
dnl =======================================================
dnl FILE: ./kexi/3rdparty/configure.in.in
dnl =======================================================

dnl This is copied from gpsim-0.21.1/acinclude.m4, which was itself
dnl copied from the NcFTP distribution. 
dnl Modified by David Faure <faure@kde.org> for kexi's purposes.
dnl
dnl  Original author Mike Gleason mgleason@NcFTP.com
dnl
dnl
AC_DEFUN([kexi_LIB_READLINE], [
AC_MSG_CHECKING([for Readline library])

kexi_cv_lib_readline=no
ac_save_LIBS="$LIBS"
# Note: $LIBCURSES is permitted to be empty.
for LIBREADLINE in "-lreadline" "-lreadline $LIBCURSES" "-lreadline -ltermcap" "-lreadline -lncurses" "-lreadline -lcurses"
do
	LIBS="$ac_save_LIBS $LIBREADLINE"
	AC_TRY_RUN([
	/* program */
#include <stdio.h>
#include <stdlib.h>
#include <readline/readline.h>
 
main(int argc, char **argv)
{
	/* Note:  don't actually call readline, since it may block;
	 * We just want to see if it (dynamic) linked in okay.
	 */
	if (argc == 0)	/* never true */
		readline(0);
	exit(0);
}
],[
	# action if true
	kexi_cv_lib_readline=yes
],[
	# action if false
	kexi_cv_lib_readline=no
],[
	# action if cross compiling
	kexi_cv_lib_readline=no
])

	if test "$kexi_cv_lib_readline" = yes ; then break ; fi
done
# restore LIBS
LIBS="$ac_save_LIBS"

if test "$kexi_cv_lib_readline" = no ; then
	LIBREADLINE=""
	AC_MSG_RESULT("not found - kexisql will not be compiled")
else
	AC_MSG_RESULT($LIBREADLINE)
	AC_DEFINE(HAVE_READLINE, 1, [define if you have libreadline available])
fi

AM_CONDITIONAL(have_readline, test "$kexi_cv_lib_readline" = "yes")
AC_SUBST(LIBREADLINE)
])

kexi_LIB_READLINE
dnl =======================================================
dnl FILE: ./kexi/configure.in.in
dnl =======================================================


#KEXI_VERSION=
AC_SUBST(LIB_KEXI_KMDI, '-lkmdi')
AC_SUBST(LIB_KEXI_KMDI_INCLUDES, '')

dnl =======================================================
dnl FILE: ./kexi/kexidb/drivers/configure.in.in
dnl =======================================================

dnl ========================================
dnl checks for MySQL
dnl taken form KDEDB
dnl ========================================

AC_ARG_ENABLE(mysql,
	AC_HELP_STRING([--enable-mysql],[build MySQL-plugin [default=yes]]),
              mysql_plugin=$enableval, mysql_plugin=yes)

if test "x$mysql_plugin" = "xyes"; then
  compile_mysql_plugin="yes"
else
  compile_mysql_plugin="no"
fi

AC_ARG_WITH(mysql_includes,
AC_HELP_STRING([--with-mysql-includes=DIR],[use MySQL-includes installed in this directory]),
[
  ac_mysql_incdir=$withval
], ac_mysql_incdir=
)

AC_ARG_WITH(mysql_libraries,
AC_HELP_STRING([--with-mysql-libraries=DIR],[use MySQL-libs installed in this directory ]),
[
  ac_mysql_libdir=$withval
], ac_mysql_libdir=
)

dnl ==============================================
dnl check whether MySQL should be compiled
dnl and where headers and libraries are installed
dnl if present compile mysql-plugin
dnl ==============================================

AC_MSG_CHECKING([for MySQL])

if test "$compile_mysql_plugin" = "yes"; then
  if test -n "$ac_mysql_incdir" -o -n "$ac_mysql_libdir"; then
dnl *** Configure arguments for includes or libs given    ***
dnl *** and MySQL not explicitly disabled.                ***
dnl *** Check that the paths given to configure are valid ***
    AC_MSG_CHECKING([for MySQL headers])
    mysql_incdirs="$ac_mysql_incdir /usr/local/include /usr/include"
    AC_FIND_FILE(mysql/mysql.h, $mysql_incdirs, mysql_incdir)
    if test -r $mysql_incdir/mysql/mysql.h; then
      MYSQL_INC=$mysql_incdir
      AC_MSG_RESULT([$MYSQL_INC])
      AC_SUBST(MYSQL_INC)
    else
      compile_mysql_plugin="no"
      AC_MSG_RESULT([not found])
    fi

    AC_MSG_CHECKING([for MySQL libraries])
    mysql_libdirs="$ac_mysql_libdir /usr/local/lib$kdelibsuff /usr/lib$kdelibsuff"
    AC_FIND_FILE(mysql/libmysqlclient.so, $mysql_libdirs, mysql_libdir)
    if test -r $mysql_libdir/mysql/libmysqlclient.so; then
      MYSQL_LIBS=$mysql_libdir
      AC_MSG_RESULT([$MYSQL_LIBS])
      AC_SUBST(MYSQL_LIBS)
    else
      compile_mysql_plugin="no"
      AC_MSG_RESULT([not found])
    fi
  else
dnl *** No configure arguments for includes or libs given ***
dnl *** and MySQL not explicitly disabled.                ***
    KDE_FIND_PATH(mysql_config, MYSQL_CONFIG,
      [${prefix}/bin ${exec_prefix}/bin /usr/local/bin /usr/bin ], [
      AC_MSG_RESULT([not found])
    ])

    if test -n "$MYSQL_CONFIG"; then
      mysql_incdir=`$MYSQL_CONFIG --cflags| $SED -e "s,-I,,g" | cut -d " " -f 1`
      mysql_libdir=`$MYSQL_CONFIG --libs| $SED -e "s,',,g"`
      MYSQL_INC=$mysql_incdir
      MYSQL_LIBS=$mysql_libdir
      AC_SUBST(MYSQL_INC)
      AC_SUBST(MYSQL_LIBS)
      compile_mypsql_plugin="yes"
      AC_MSG_RESULT([headers $mysql_incdir, libraries $mysql_libdir])
    else
      compile_mysql_plugin="no"
    fi
  fi
else
dnl *** MySQL plugin explicitly disabled.            ***
dnl *** Show that we are doing as requested.              ***
  AC_MSG_NOTICE([Not attempting to configure MySQL as requested])
fi

AM_CONDITIONAL(compile_mysql_plugin, test "$compile_mysql_plugin" = "yes")

dnl ========================================
dnl Checks for PostgreSQL
dnl ========================================

dnl ========================================
dnl libpq
dnl   Add configure-args
dnl ========================================

dnl Assume we're building until something fails, unless explicitly disabled
AC_ARG_ENABLE(pgsql,
AC_HELP_STRING([--enable-pgsql],[build PostgreSQL-plugin [default=yes]]),
 pgsql_plugin=$enableval, pgsql_plugin=yes)

if test "x$pgsql_plugin" = "xyes"; then
  compile_pgsql_plugin="yes"
else
  compile_pgsql_plugin="no"
fi

AC_ARG_WITH(pgsql-includes,
AC_HELP_STRING([--with-pgsql-includes=DIR],[use PostgreSQL(libpq)-includes installed in this directory ]),
[
  ac_pgsql_incdir=$withval
], ac_pgsql_incdir=
)

AC_ARG_WITH(pgsql-libraries,
AC_HELP_STRING([--with-pgsql-libraries=DIR],[use PostgreSQL(libpq)-libraries installed in this directory ]),
[
  ac_pgsql_libdir=$withval
], ac_pgsql_libdir=
)


dnl ========================================
dnl   header/library directories
dnl ========================================

if test "$compile_pgsql_plugin" = "yes"; then
  if test -n "$ac_pgsql_incdir" -o -n "$ac_pgsql_libdir"; then
dnl *** Configure arguments for includes or libs given    ***
dnl *** and PostgreSQL not explicitly disabled.           ***
dnl *** Check that the paths given to configure are valid ***
    AC_MSG_CHECKING([for PostgreSQL C API headers])
    pgsql_incdirs="$ac_pgsql_incdir /usr/local/include /usr/include"
    AC_FIND_FILE(libpq-fe.h, $pgsql_incdirs, pgsql_incdir)
    if test -r $pgsql_incdir/libpq-fe.h; then
      PG_INCDIR=$pgsql_incdir
      AC_MSG_RESULT([$PG_INCDIR])
      AC_SUBST(PG_INCDIR)
    else
      compile_pgsql_plugin="no"
      AC_MSG_RESULT([not found])
    fi

    AC_MSG_CHECKING([for PostgreSQL C API libraries])
    pgsql_libdirs="$ac_pgsql_libdir /usr/local/lib$kdelibsuff /usr/lib$kdelibsuff"
    AC_FIND_FILE(libpq.so, $pgsql_libdirs, pgsql_libdir)
    if test -r $pgsql_libdir/libpq.so; then
      PG_LIBDIR=$pgsql_libdir
      AC_MSG_RESULT([$PG_LIBDIR])
      AC_SUBST(PG_LIBDIR)
    else
      compile_pgsql_plugin="no"
      AC_MSG_RESULT([not found])
    fi
  else
dnl *** No configure arguments for includes or libs given ***
dnl *** and PostgreSQL not explicitly disabled.           ***
    KDE_FIND_PATH(pg_config, PG_CONFIG,
      [${prefix}/bin ${exec_prefix}/bin /usr/local/bin /usr/bin ], [
      AC_MSG_RESULT([not found])
    ])

    if test -n "$PG_CONFIG"; then
      pgsql_incdir=`$PG_CONFIG --includedir`
      pgsql_libdir=`$PG_CONFIG --libdir`
      PG_INCDIR=$pgsql_incdir
      PG_LIBDIR=$pgsql_libdir
      AC_SUBST(PG_LIBDIR)
      compile_pgsql_plugin="yes"
      AC_MSG_RESULT([headers $pgsql_incdir, libraries $pgsql_libdir])
    else
      compile_pgsql_plugin="no"
    fi
  fi
else
dnl *** PostgreSQL plugin explicitly disabled.            ***
dnl *** Show that we are doing as requested.              ***
  AC_MSG_NOTICE([Not attempting to configure PostgreSQL as requested])
fi

AM_CONDITIONAL(compile_pgsql_plugin, test "$compile_pgsql_plugin" = "yes")


dnl ========================================
dnl libpqxx checks
dnl ========================================

AC_ARG_WITH(pqxx-includes,
AC_HELP_STRING([--with-pqxx-includes=DIR],[use PostgreSQL(libpqxx)-includes installed in this directory ]),
[
  ac_pqxx_incdir=$withval
], ac_pqxx_incdir=
)

AC_ARG_WITH(pqxx-libraries,
AC_HELP_STRING([--with-pqxx-libraries=DIR],[use PostgreSQL(libpqxx)-libraries installed in this directory ]),
[
  ac_pqxx_libdir=$withval
], ac_pqxx_libdir=
)


dnl ========================================
dnl   libpqxx headers
dnl ========================================
if test "$compile_pgsql_plugin" = "yes"; then
  AC_MSG_CHECKING([for PostgreSQL C++ includes])
  pqxx_incdirs="$ac_pqxx_incdir /usr/local/include /usr/include"
  AC_FIND_FILE(pqxx/pqxx, $pqxx_incdirs, pqxx_incdir)
  if test -r $pqxx_incdir/pqxx/pqxx; then
    PQXX_INCDIR=$pqxx_incdir
    AC_MSG_RESULT([$PQXX_INCDIR])
    AC_SUBST(PQXX_INCDIR)
  else
    compile_pgsql_plugin="no"
    AC_MSG_RESULT([not found])
  fi
fi

dnl ========================================
dnl   libpqxx libraries
dnl ========================================
if test "$compile_pgsql_plugin" = "yes"; then
  AC_MSG_CHECKING([for PostgreSQL C++ libraries])
  pqxx_libdirs="$ac_pqxx_libdir /usr/local/lib$kdelibsuff /usr/lib$kdelibsuff"
  AC_FIND_FILE(libpqxx.so, $pqxx_libdirs, pqxx_libdir)
  if test -r $pqxx_libdir/libpqxx.so; then
    PQXX_LIBDIR=$pqxx_libdir
    AC_MSG_RESULT([$PQXX_LIBDIR])
    AC_SUBST(PQXX_LIBDIR)
  else
    compile_pgsql_plugin="no"
    AC_MSG_RESULT([not found])
  fi
fi

AM_CONDITIONAL(compile_pgsql_plugin, test "$compile_pgsql_plugin" = "yes")
dnl =======================================================
dnl FILE: ./kexi/main/configure.in.in
dnl =======================================================


dnl ======================================
dnl KNewStuff Configuration
dnl ======================================
dnl
dnl Copyright (C) 2004 Josef Spillner <spillner@kde.org>
dnl This file is to be used within KDE's build system.
dnl It defines $(LIB_KNEWSTUFF) if knewstuff has been found,
dnl and a HAVE_KNEWSTUFF #define statement is added.
dnl

AC_MSG_CHECKING([for KDE library: knewstuff])

ac_knewstuff_includes=NO ac_knewstuff_libraries=NO
knewstuff_libraries=""
knewstuff_includes=""

AC_CACHE_VAL(ac_cv_have_knewstuff,
[
AC_FIND_FILE(knewstuff/downloaddialog.h, $kde_incdirs, knewstuff_incdir)
ac_knewstuff_includes="$knewstuff_incdir"

AC_FIND_FILE(libknewstuff.so, $kde_libdirs, knewstuff_libdir)
ac_knewstuff_libraries="$knewstuff_libdir"

if test "$ac_knewstuff_includes" = NO || test "$ac_knewstuff_libraries" = NO; then
  ac_cv_have_knewstuff="have_knewstuff=no"
  ac_knewstuff_notfound=""
else
  have_knewstuff="yes"
fi
])

eval "$ac_cv_have_knewstuff"

if test "$have_knewstuff" != yes; then
  AC_MSG_RESULT([$have_knewstuff])
else
  AC_MSG_RESULT([$have_knewstuff (libraries $ac_knewstuff_libraries, headers $ac_knewstuff_includes)])

dnl  AC_DEFINE_UNQUOTED(HAVE_KNEWSTUFF, 1, [Add KNewStuff functionality.])
  CXXFLAGS="$CXXFLAGS -DHAVE_KNEWSTUFF"

  LIB_KNEWSTUFF='-lknewstuff'
  AC_SUBST(LIB_KNEWSTUFF)
fi

AC_CHECK_FILE([kexi/3rdparty/kexifeedbackwizard/lib/kexifeedbackwizard.cpp],
  have_internal_feedback="yes"
,
  have_internal_feedback="no"
)

AC_MSG_CHECKING([for KDE library: kfeedbackwizard])

ac_kfeedback_includes=NO ac_kfeedback_libraries=NO
kfeedback_libraries=""
kfeedback_includes=""

AC_CACHE_VAL(ac_cv_have_kfeedback,
[
AC_FIND_FILE(kfeedbackwizard.h, $kde_incdirs, kfeedback_incdir)
ac_kfeedback_includes="$kfeedback_incdir"

AC_FIND_FILE(libkfeedbackwizard.so, $kde_libdirs, kfeedback_libdir)
ac_kfeedback_libraries="$kfeedback_libdir"

if test "$ac_kfeedback_includes" = NO || test "$ac_kfeedback_libraries" = NO; then
  ac_cv_have_kfeedback="have_kfeedback=no"
  ac_kfeedback_notfound=""
else
  have_kfeedback="yes"
fi
])

eval "$ac_cv_have_kfeedback"

INC_KFEEDBACK=''
LIB_KFEEDBACK=''
if test "$have_kfeedback" != yes; then
  if test "$have_internal_feedback" = yes; then
    CXXFLAGS="$CXXFLAGS -DFEEDBACK_CLASS=KexiFeedbackWizard -DFEEDBACK_INCLUDE=\"<kexifeedbackwizard.h>\""
    use_kexifb="yes"
    AC_MSG_RESULT([using internal])
    INC_KFEEDBACK='-I../3rdparty/kexifeedbackwizard/lib'
    LIB_KFEEDBACK='../3rdparty/kexifeedbackwizard/lib/libkexifeedbackwizard.la'
  else
    use_kexifb="no"
    AC_MSG_RESULT([dont use])
  fi
else
  use_kexifb="no"
  AC_MSG_RESULT([$have_kfeedback (libraries $ac_kfeedback_libraries, headers $ac_kfeedback_includes)])

dnl  AC_DEFINE_UNQUOTED(HAVE_KFEEDBACK, 1, [Add KNewStuff functionality.])
  CXXFLAGS="$CXXFLAGS -DFEEDBACK_CLASS=KFeedbackWizard -DFEEDBACK_INCLUDE=\"<kfeedbackwizard.h>\""

  LIB_KFEEDBACK='-lkfeedbackwizard'
fi
AC_SUBST(LIB_KFEEDBACK)
AC_SUBST(INC_KFEEDBACK)
AM_CONDITIONAL(use_kexifeedback, test "$use_kexifb" = "yes")
dnl =======================================================
dnl FILE: ./kexi/migration/configure.in.in
dnl =======================================================

# KexiMDB isn't built as part of Kexi right now.
#AC_ARG_ENABLE(keximdb,
#    AC_HELP_STRING([--enable-keximdb],
#                   [build KexiMDB (MS Access) plugin [default=no]]),
#    compile_keximdb_plugin=$enableval, compile_keximdb_plugin=no)
#
#AM_CONDITIONAL(compile_keximdb_plugin, test "x$compile_keximdb_plugin" != "xno")
dnl =======================================================
dnl FILE: ./kexi/plugins/configure.in.in
dnl =======================================================

# disabled
#AC_ARG_ENABLE(kexi-reports,
#    AC_HELP_STRING([--enable-kexi-reports],
#                   [build Kexi reports plugin (EXPERIMENTAL) [default=no]]),
#    compile_kexi_reports_plugin=$enableval, compile_kexi_reports_plugin=no)
#AM_CONDITIONAL(compile_kexi_reports_plugin, test "x$compile_kexi_reports_plugin" != "xno")
#
#if test "$compile_kexi_reports_plugin" == "yes"; then
#    AC_DEFINE(KEXI_REPORTS_SUPPORT, 1, [build Kexi reports plugin])
#fi

AC_ARG_ENABLE(kexi-macros,
    AC_HELP_STRING([--enable-kexi-macros],
                   [build Kexi macro plugin (EXPERIMENTAL) [default=yes]]),
    compile_kexi_macros_plugin=$enableval, compile_kexi_macros_plugin=no)
AM_CONDITIONAL(compile_kexi_macros_plugin, test "x$compile_kexi_macros_plugin" == "xyes")

if test "$compile_kexi_macros_plugin" == "yes"; then
    AC_DEFINE(KEXI_MACROS_SUPPORT, 1, [build Kexi macros plugin])
fi
dnl =======================================================
dnl FILE: ./kexi/plugins/macros/configure.in.in
dnl =======================================================

# Check for kunittest
AC_MSG_CHECKING([for kunittest])

# First we check if the console unittester could be compiled
have_kunittest_header="no"
KDE_CHECK_HEADER(kunittest/tester.h, have_kunittest_header="yes", , )
AM_CONDITIONAL(include_kunittest, test "$have_kunittest_header" = "yes")

# Second we check if the GUI-unittester could be compiled
have_kunittestgui_header="no"
KDE_CHECK_HEADER(kunittest/runnergui.h, have_kunittestgui_header="yes", , )
AM_CONDITIONAL(include_kunittestgui, test "$have_kunittestgui_header" = "yes")

dnl =======================================================
dnl FILE: ./kivio/configure.in.in
dnl =======================================================

dnl Do we have Python? 
KDE_CHECK_PYTHON
dnl =======================================================
dnl FILE: ./kpresenter/configure.in.in
dnl =======================================================

AC_HAVE_DPMS()
dnl =======================================================
dnl FILE: ./krita/configure.in.in
dnl =======================================================

KDE_CHECK_LIB(Xi, XOpenDisplay, [
	LIB_XINPUTEXT="-lXi"
	AC_DEFINE(HAVE_XINPUTEXT, 1, [Define if you have the X11 Input Extension])
	])
AC_SUBST(LIB_XINPUTEXT)

# Check for lcms
AC_MSG_CHECKING([for lcms >= 1.15])

have_lcms_header='no'
KDE_CHECK_HEADER(lcms/lcms.h,have_lcms_header='yes',,)
if test "$have_lcms_header" = 'yes'
then
        AC_DEFINE(LCMS_HEADER, <lcms/lcms.h>, [The correct header])

	echo "#include <lcms/lcms.h>" > conftest.$ac_ext
	echo "#if LCMS_VERSION < 115" >> conftest.$ac_ext
	echo "#error Need lcms >= 1.15" >> conftest.$ac_ext
	echo "#endif" >> conftest.$ac_ext
	echo "int main() {}" >> conftest.$ac_ext

else
        # Alternative! Debian does it this way...
	KDE_CHECK_HEADER(lcms.h,have_lcms_header='yes',,)

    if test "$have_lcms_header" = 'yes'
    then
       	AC_DEFINE(LCMS_HEADER, <lcms.h>, [The correct header])

	   echo "#include <lcms.h>" > conftest.$ac_ext
	   echo "#if LCMS_VERSION < 115" >> conftest.$ac_ext
	   echo "#error Need lcms >= 1.15" >> conftest.$ac_ext
	   echo "#endif" >> conftest.$ac_ext
	   echo "int main() {}" >> conftest.$ac_ext
    else
        KDE_CHECK_HEADER(lcms.h,have_lcms_header='yes',,)
        # and now debian also does it this way... can't they decide for one way of doing stuff ?
        
       AC_DEFINE(LCMS_HEADER, <liblcms1/lcms.h>, [The correct header])

       echo "#include <liblcms1/lcms.h>" > conftest.$ac_ext
       echo "#if LCMS_VERSION < 115" >> conftest.$ac_ext
       echo "#error Need lcms >= 1.15" >> conftest.$ac_ext
       echo "#endif" >> conftest.$ac_ext
       echo "int main() {}" >> conftest.$ac_ext

   fi
fi


ac_link='$LIBTOOL_SHELL --mode=link ${CXX-g++} -o conftest $CXXFLAGS $all_includes $CPPFLAGS $LDFLAGS $all_libraries conftest.$ac_ext -llcms 1>&5'

if AC_TRY_EVAL(ac_link) && test -s conftest; then
    	AC_MSG_RESULT(yes)
        HAVELCMS="yes"
        LCMS_LIBS="-llcms"
else
	AC_MSG_RESULT(no)
	HAVELCMS="no"
	LCMS_LIBS=""
        DO_NOT_COMPILE="$DO_NOT_COMPILE krita"
fi

AC_SUBST(LCMS_LIBS)

# IM 6.1.3 changed the number of arguments to GetMagickInfoList

AC_MSG_CHECKING(if GetMagickInfoList has only 2 arguments)
CPPFLAGS_TMP="$CPPFLAGS"   # Save preprocessor flags
CPPFLAGS="$LIBMAGICK_CPPFLAGS"

AC_TRY_COMPILE(
	[#include <stdio.h>
	#if HAVE_SYS_TYPES_H
	#include <sys/types.h>
	#endif
	#include "magick/api.h"],
	[const char *pattern; unsigned long ncolors; (void)GetMagickInfoList(pattern, &ncolors)],
	magick_info_list='yes',
	magick_info_list='no')

CPPFLAGS="$CPPFLAGS_TMP"  # Restore preprocessor flags

if test "$magick_info_list" = 'yes'; then
	AC_MSG_RESULT(yes)
  AC_DEFINE([HAVE_OLD_GETMAGICKINFOLIST], 1, [GetMagickInfoList has different number of arguments with versions >= 6.1.3])
else
	AC_MSG_RESULT(no)
fi

# Check for kunittest
AC_MSG_CHECKING([for kunittest])

have_kunittest_header="no"
KDE_CHECK_HEADER(kunittest/tester.h, have_kunittest_header="yes", , )
AM_CONDITIONAL(include_kunittest_tests, test "$have_kunittest_header" = "yes")

# --- OpenGL check ---

AC_HAVE_GL( [], [] )

# --- End of OpenGL check ---

# Check for powf.

AC_CHECK_FUNC(powf, [have_powf="yes"], [AC_CHECK_LIB(m, powf, [have_powf="yes"], [have_powf="no"])])

if test "$have_powf" = 'yes'; then
  AC_DEFINE([HAVE_POWF], 1, [Define to 1 if your system has powf in <maths.h>])
fi\
dnl =======================================================
dnl FILE: ./krita/plugins/configure.in.in
dnl =======================================================

KDE_CHECK_HEADER(kjsembed/jsproxy_imp.h, have_kjsembed=yes, have_kjsembed=no)
AM_CONDITIONAL(use_kjsembed, test x$have_kjsembed = xyes)
dnl =======================================================
dnl FILE: ./krita/plugins/viewplugins/imagesize/configure.in.in
dnl =======================================================

AC_CHECK_DECLS([round], [], [], [#include <math.h>])
dnl =======================================================
dnl FILE: ./kspread/plugins/calculator/configure.in.in
dnl =======================================================

AC_CHECK_HEADERS(ieeefp.h)

AC_CHECK_FUNCS(fabsl)

AC_DEFUN([KDE_C_LONG_DOUBLE],
[
  AC_CACHE_CHECK(for long double, ac_cv_c_long_double,
  [
    AC_TRY_RUN(
    [
#include <stdio.h>
#include <stdlib.h>
#include <string.h>
#include <math.h>

int main() {
/* The Stardent Vistra knows sizeof(long double), but does not support it.  */
long double foo = 1.0;
char buffer[10];
/* On Ultrix 4.3 cc, long double is 4 and double is 8.  */
int result = (sizeof(long double) < sizeof(double));
/* the following is needed for a broken printf in glibc2 */
if (!result) {
    foo = foo * 3;
    sprintf(buffer,"%0.0Lf",foo);
    result = strcmp(buffer, "3");
/* and now something mean ;-) */
    foo = powl(fabsl(foo), 1);
}
exit(result); }
    ],
    ac_cv_c_long_double=yes, ac_cv_c_long_double=no,
    ac_cv_c_long_double=no
    )
  ])
  if test $ac_cv_c_long_double = yes; then
    AC_DEFINE(HAVE_LONG_DOUBLE, 1, [Define if you have support for long double in printf])
  fi
])
KDE_C_LONG_DOUBLE

AC_LANG_C
KDE_CHECK_LIB(m, isinf, [
  AC_DEFINE_UNQUOTED(HAVE_FUNC_ISINF, 1, [Define if you have isinf])
])
dnl =======================================================
dnl FILE: ./kword/mailmerge/configure.in.in
dnl =======================================================

dnl only compile the sql plugin if qt was compiled with sql support


AC_MSG_CHECKING([for SQL support in QT])

LIBS_SAVE_KWSL="$LIBS"
CXXFLAGS_SAVE_KWSL="$CXXFLAGS"
CFLAGS_SAVE_KWSL="$CFLAGS"

AC_LANG_SAVE
AC_LANG_CPLUSPLUS

LIBS="$all_libraries -lqimgio -lpng -lz $LIBJPEG $LIBQT"
CXXFLAGS="$CXXFLAGS -I$qt_includes $all_includes"

AC_TRY_COMPILE([
#include <qglobal.h>
],
[
#ifdef QT_NO_SQL
#error "No QT-SQL support"
#endif
],
ac_trycompile_kwsl_qtsql=yes,
ac_trycompile_kwsl_qtsql=no)

CXXFLAGS="$CXXFLAGS_SAVE_KWSL"
LIBS="$LIBS_SAVE_KWSL"
AC_LANG_RESTORE

if eval "test \"`echo $ac_trycompile_kwsl_qtsql`\" = yes"; then
  SQLDIR=sql
  AC_SUBST(SQLDIR)
  AC_MSG_RESULT([QT supports SQL - compile qtsqlmailmerge])
else
  SQLDIR=
  AC_SUBST(SQLDIR)
  AC_MSG_RESULT([QT supports SQL -- qtsqlmailmerge will not be built])
fi

AM_CONDITIONAL(include_sql, test -n "$SQLDIR")
dnl =======================================================
dnl FILE: ./lib/configure.in.in
dnl =======================================================

AC_SUBST(KWMF_INCLUDES, '-I$(top_srcdir)/lib/kwmf -I$(top_builddir)/lib/kwmf')
AC_SUBST(KSTORE_INCLUDES, '-I$(top_srcdir)/lib/store -I$(top_builddir)/lib/store')
AC_SUBST(KOTEXT_INCLUDES, '-I$(top_srcdir)/lib/kotext -I$(top_builddir)/lib/kotext')
AC_SUBST(KOPAINTER_INCLUDES, '-I$(top_srcdir)/lib/kopainter -I$(top_builddir)/lib/kopainter')
AC_SUBST(KOPALETTE_INCLUDES, '-I$(top_srcdir)/lib/kopalette -I$(top_builddir)/lib/kopalette')
AC_SUBST(KOFFICECORE_INCLUDES, '-I$(top_srcdir)/lib/kofficecore -I$(top_builddir)/lib/kofficecore')
AC_SUBST(KOFFICEUI_INCLUDES, '-I$(top_srcdir)/lib/kofficeui -I$(top_builddir)/lib/kofficeui')
AC_SUBST(KFORMULA_INCLUDES, '-I$(top_srcdir)/lib/kformula -I$(top_builddir)/lib/kformula')
dnl those are included with e.g. <koproperty/set.h>
AC_SUBST(KOPROPERTY_INCLUDES, '-I$(top_srcdir)/lib -I$(top_builddir)/lib')
AC_SUBST(KROSS_INCLUDES, '-I$(top_srcdir)/lib/kross -I$(top_builddir)/lib/kross')
AC_SUBST(LIB_KOFFICEUI, '$(top_builddir)/lib/kofficeui/libkofficeui.la')
AC_SUBST(LIB_KOFFICECORE, '$(top_builddir)/lib/kofficecore/libkofficecore.la')
AC_SUBST(LIB_KSTORE, '$(top_builddir)/lib/store/libkstore.la')
AC_SUBST(LIB_KOTEXT, '$(top_builddir)/lib/kotext/libkotext.la')
AC_SUBST(LIB_KOPAINTER, '$(top_builddir)/lib/kopainter/libkopainter.la')
AC_SUBST(LIB_KOPALETTE, '$(top_builddir)/lib/kopalette/libkopalette.la')
AC_SUBST(LIB_KWMF, '$(top_builddir)/lib/kwmf/libkwmf.la')
AC_SUBST(LIB_KOWMF, '$(top_builddir)/lib/kwmf/libkowmf.la')
AC_SUBST(LIB_KFORMULA, '$(top_builddir)/lib/kformula/libkformulalib.la')
AC_SUBST(LIB_KOPROPERTY, '$(top_builddir)/lib/koproperty/libkoproperty.la')
AC_SUBST(LIB_KROSS_API, '$(top_builddir)/lib/kross/api/libkrossapi.la')
AC_SUBST(LIB_KROSS_MAIN, '$(top_builddir)/lib/kross/main/libkrossmain.la')

AC_SUBST(interfacedir, '$(top_srcdir)/lib/interfaces')
AC_SUBST(KOFFICE_LIBS, '$(LIB_KOFFICEUI) $(LIB_KOFFICECORE) $(LIB_KSTORE)')
AC_SUBST(KOFFICE_INCLUDES, '$(KOFFICEUI_INCLUDES) $(KOFFICECORE_INCLUDES) $(KSTORE_INCLUDES) $(KWMF_INCLUDES) $(KOPALETTE_INCLUDES)')

AC_DEFINE_UNQUOTED(PREFIX,"$prefix",[Define the PREFIX where to install this package])

dnl =======================================================
dnl FILE: ./lib/kotext/configure.in.in
dnl =======================================================

   AC_LANG_SAVE
   AC_LANG_C
   dnl Check for aspell library
   KDE_CHECK_HEADERS([kspell2/broker.h])
   if test "x$ac_cv_header_kspell2_broker_h" = "xyes"; then
           dnl the header and the lib exist -> ok
           dnl this is for config.h
           AC_DEFINE(HAVE_LIBKSPELL2, 1, [If we are going to use libkspell2 for spell-checking])
           LIBKSPELL2="-lkspell2"
           AC_MSG_RESULT([found in $ac_kspell2_includes])
   else
           LIBKSPELL2=""
           AC_MSG_RESULT([not found -- spell-checking will be disabled])
   fi
   AC_SUBST(LIBKSPELL2)
   AC_LANG_RESTORE
dnl =======================================================
dnl FILE: ./lib/kross/configure.in.in
dnl =======================================================

AC_ARG_ENABLE(scripting,
    AC_HELP_STRING([--enable-scripting],
                   [build scripting library (Kross) [default=yes]]),
    compile_kross=$enableval, compile_kross=yes)
AM_CONDITIONAL(compile_kross, test "x$compile_kross" = "xyes")

###############################
# Check if Python is installed.

if test "x$compile_kross" = "xyes" ; then
    #KDE_CHECK_PYTHON(2.3)
    KDE_CHECK_PYTHON
fi

# Compile the Kross python plugin only if both, $LIBPYTHON and
# $PYTHONINC, are defined.
AM_CONDITIONAL(compile_kross_python,
               test -n "$LIBPYTHON" && test -n "$PYTHONINC")

###############################
# Check for Ruby

if test "x$compile_kross" = "xyes" ; then
  AC_CHECK_PROGS([RUBY], [ruby ruby1.8 ruby18], ruby)

  if test -n "$RUBY"; then
    AC_MSG_CHECKING(for Ruby dirs)
    RUBY_ARCHDIR=`$RUBY -r rbconfig -e 'printf("%s",Config::CONFIG@<:@"archdir"@:>@)'`
    RUBY_SITEARCHDIR=`$RUBY -r rbconfig -e 'printf("%s",Config::CONFIG@<:@"sitearchdir"@:>@)'`
    RUBY_SITEDIR=`$RUBY -r rbconfig -e 'printf("%s",Config::CONFIG@<:@"sitelibdir"@:>@)'`
    RUBY_INCLUDEDIR=`$RUBY -r rbconfig -e 'printf("%s",Config::CONFIG@<:@"rubyincludedir"@:>@)'`
    RUBY_LIBDIR=`$RUBY -r rbconfig -e 'printf("%s",Config::CONFIG@<:@"libdir"@:>@)'`
    RUBY_LIBRUBYARG=`$RUBY -r rbconfig -e 'printf("%s",Config::CONFIG@<:@"LIBRUBYARG_SHARED"@:>@)'`
    RUBY_ENABLESHARED=`$RUBY -r rbconfig -e 'printf("%s",Config::CONFIG@<:@"ENABLE_SHARED"@:>@)'`
    AC_MSG_RESULT([
                   archdir $RUBY_ARCHDIR,
                   sitearchdir $RUBY_SITEARCHDIR,
                   sitedir $RUBY_SITEDIR,
                   includedir $RUBY_INCLUDEDIR,
                   libdir $RUBY_LIBDIR,
                   librubyarg $RUBY_LIBRUBYARG,
                   rubysharedenabled $RUBY_ENABLESHARED])
    AC_SUBST(RUBY_ARCHDIR)
    AC_SUBST(RUBY_SITEARCHDIR)
    AC_SUBST(RUBY_SITEDIR)
    AC_SUBST(RUBY_INCLUDEDIR)
    AC_SUBST(RUBY_LIBDIR)
    AC_SUBST(RUBY_LIBRUBYARG)
    AC_SUBST(RUBY_ENABLESHARED)

    AC_MSG_CHECKING(for Ruby header)

    if test ! -r $RUBY_INCLUDEDIR/ruby.h; then
      # if $RUBY_INCLUDEDIR is not valid try to use $RUBY_ARCHDIR
      RUBY_INCLUDEDIR=$RUBY_ARCHDIR
    fi

    if test ! -r $RUBY_INCLUDEDIR/ruby.h; then
      RUBY_LIBDIR=""
      AC_MSG_RESULT([not found])
    else
      AC_MSG_RESULT([found]) # header

      AC_MSG_CHECKING(Ruby shared library)
      if test "x$RUBY_ENABLESHARED" != "xyes" ; then
        AC_MSG_RESULT([shared library not found])
        RUBY_LIBDIR="" 
      else
        if test -z "$RUBY_LIBRUBYARG" ; then
          AC_MSG_RESULT([link argument not found])
          RUBY_LIBDIR="" 
        else
          AC_MSG_RESULT([found]) # shared library link arg

          AC_MSG_CHECKING([if C++ program with ruby can be compiled])
          AC_LANG_SAVE
          AC_LANG_CPLUSPLUS
          ac_save_CXXFLAGS="$CXXFLAGS"
          CXXFLAGS="$CXXFLAGS -I$RUBY_INCLUDEDIR"
          AC_CACHE_VAL(ruby_build,
          [
            AC_TRY_COMPILE([
                #include <ruby.h>
                #include <version.h>
            ],[
            
#if(RUBY_VERSION_MAJOR==1 && RUBY_VERSION_MINOR == 8 && RUBY_VERSION_TEENY <= 1)
#error "need at least ruby 1.8.2\n"
#endif

                ruby_init();
                return 0;
            ], ruby_build=yes,
            ruby_build=no)
          ])
          AC_MSG_RESULT($ruby_build)
          if test "$ruby_build" = "no"; then
            RUBY_LIBDIR=""
          fi
          CXXFLAGS="$ac_save_CXXFLAGS"
          AC_LANG_RESTORE
        fi # have ruby shared lib argument
      fi # have shared lib
    fi # have ruby header
  fi # have ruby
fi # compiling kross

AM_CONDITIONAL(compile_kross_ruby, test -n "$RUBY_LIBDIR")
KDE_CREATE_SUBDIRSLIST
AM_CONDITIONAL(lib_SUBDIR_included, test "x$lib_SUBDIR_included" = xyes)
AM_CONDITIONAL(interfaces_SUBDIR_included, test "x$interfaces_SUBDIR_included" = xyes)
AM_CONDITIONAL(autocorrect_SUBDIR_included, test "x$autocorrect_SUBDIR_included" = xyes)
AM_CONDITIONAL(doc_SUBDIR_included, test "x$doc_SUBDIR_included" = xyes)
AM_CONDITIONAL(example_SUBDIR_included, test "x$example_SUBDIR_included" = xyes)
AM_CONDITIONAL(karbon_SUBDIR_included, test "x$karbon_SUBDIR_included" = xyes)
AM_CONDITIONAL(kchart_SUBDIR_included, test "x$kchart_SUBDIR_included" = xyes)
AM_CONDITIONAL(kdgantt_SUBDIR_included, test "x$kdgantt_SUBDIR_included" = xyes)
AM_CONDITIONAL(kformula_SUBDIR_included, test "x$kformula_SUBDIR_included" = xyes)
AM_CONDITIONAL(kivio_SUBDIR_included, test "x$kivio_SUBDIR_included" = xyes)
AM_CONDITIONAL(koshell_SUBDIR_included, test "x$koshell_SUBDIR_included" = xyes)
AM_CONDITIONAL(kounavail_SUBDIR_included, test "x$kounavail_SUBDIR_included" = xyes)
AM_CONDITIONAL(kpresenter_SUBDIR_included, test "x$kpresenter_SUBDIR_included" = xyes)
AM_CONDITIONAL(krita_SUBDIR_included, test "x$krita_SUBDIR_included" = xyes)
AM_CONDITIONAL(kspread_SUBDIR_included, test "x$kspread_SUBDIR_included" = xyes)
AM_CONDITIONAL(kugar_SUBDIR_included, test "x$kugar_SUBDIR_included" = xyes)
AM_CONDITIONAL(mimetypes_SUBDIR_included, test "x$mimetypes_SUBDIR_included" = xyes)
AM_CONDITIONAL(pics_SUBDIR_included, test "x$pics_SUBDIR_included" = xyes)
AM_CONDITIONAL(plugins_SUBDIR_included, test "x$plugins_SUBDIR_included" = xyes)
AM_CONDITIONAL(servicetypes_SUBDIR_included, test "x$servicetypes_SUBDIR_included" = xyes)
AM_CONDITIONAL(templates_SUBDIR_included, test "x$templates_SUBDIR_included" = xyes)
AM_CONDITIONAL(tools_SUBDIR_included, test "x$tools_SUBDIR_included" = xyes)
AM_CONDITIONAL(kword_SUBDIR_included, test "x$kword_SUBDIR_included" = xyes)
AM_CONDITIONAL(kplato_SUBDIR_included, test "x$kplato_SUBDIR_included" = xyes)
AM_CONDITIONAL(kexi_SUBDIR_included, test "x$kexi_SUBDIR_included" = xyes)
AM_CONDITIONAL(filters_SUBDIR_included, test "x$filters_SUBDIR_included" = xyes)
AC_CONFIG_FILES([ Makefile ])
AC_CONFIG_FILES([ autocorrect/Makefile ])
AC_CONFIG_FILES([ doc/Makefile ])
AC_CONFIG_FILES([ doc/karbon/Makefile ])
AC_CONFIG_FILES([ doc/kchart/Makefile ])
AC_CONFIG_FILES([ doc/kexi/Makefile ])
AC_CONFIG_FILES([ doc/kformula/Makefile ])
AC_CONFIG_FILES([ doc/kivio/Makefile ])
AC_CONFIG_FILES([ doc/koffice/Makefile ])
AC_CONFIG_FILES([ doc/koshell/Makefile ])
AC_CONFIG_FILES([ doc/kplato/Makefile ])
AC_CONFIG_FILES([ doc/kpresenter/Makefile ])
AC_CONFIG_FILES([ doc/krita/Makefile ])
AC_CONFIG_FILES([ doc/kspread/Makefile ])
AC_CONFIG_FILES([ doc/kugar/Makefile ])
AC_CONFIG_FILES([ doc/kword/Makefile ])
AC_CONFIG_FILES([ doc/thesaurus/Makefile ])
AC_CONFIG_FILES([ example/Makefile ])
AC_CONFIG_FILES([ filters/Makefile ])
AC_CONFIG_FILES([ filters/generic_wrapper/Makefile ])
AC_CONFIG_FILES([ filters/karbon/Makefile ])
AC_CONFIG_FILES([ filters/karbon/ai/Makefile ])
AC_CONFIG_FILES([ filters/karbon/applixgraphics/Makefile ])
AC_CONFIG_FILES([ filters/karbon/eps/Makefile ])
AC_CONFIG_FILES([ filters/karbon/kontour/Makefile ])
AC_CONFIG_FILES([ filters/karbon/msod/Makefile ])
AC_CONFIG_FILES([ filters/karbon/oodraw/Makefile ])
AC_CONFIG_FILES([ filters/karbon/png/Makefile ])
AC_CONFIG_FILES([ filters/karbon/svg/Makefile ])
AC_CONFIG_FILES([ filters/karbon/wmf/Makefile ])
AC_CONFIG_FILES([ filters/karbon/xaml/Makefile ])
AC_CONFIG_FILES([ filters/karbon/xcf/Makefile ])
AC_CONFIG_FILES([ filters/kchart/Makefile ])
AC_CONFIG_FILES([ filters/kchart/bmp/Makefile ])
AC_CONFIG_FILES([ filters/kchart/jpeg/Makefile ])
AC_CONFIG_FILES([ filters/kchart/libimageexport/Makefile ])
AC_CONFIG_FILES([ filters/kchart/mng/Makefile ])
AC_CONFIG_FILES([ filters/kchart/png/Makefile ])
AC_CONFIG_FILES([ filters/kchart/svg/Makefile ])
AC_CONFIG_FILES([ filters/kchart/xbm/Makefile ])
AC_CONFIG_FILES([ filters/kchart/xpm/Makefile ])
AC_CONFIG_FILES([ filters/kformula/Makefile ])
AC_CONFIG_FILES([ filters/kformula/latex/Makefile ])
AC_CONFIG_FILES([ filters/kformula/mathml/Makefile ])
AC_CONFIG_FILES([ filters/kformula/png/Makefile ])
AC_CONFIG_FILES([ filters/kformula/svg/Makefile ])
AC_CONFIG_FILES([ filters/kivio/Makefile ])
AC_CONFIG_FILES([ filters/kivio/imageexport/Makefile ])
AC_CONFIG_FILES([ filters/kpresenter/Makefile ])
AC_CONFIG_FILES([ filters/kpresenter/bmp/Makefile ])
AC_CONFIG_FILES([ filters/kpresenter/jpeg/Makefile ])
AC_CONFIG_FILES([ filters/kpresenter/kword/Makefile ])
AC_CONFIG_FILES([ filters/kpresenter/libimageexport/Makefile ])
AC_CONFIG_FILES([ filters/kpresenter/magicpoint/Makefile ])
AC_CONFIG_FILES([ filters/kpresenter/mng/Makefile ])
AC_CONFIG_FILES([ filters/kpresenter/ooimpress/Makefile ])
AC_CONFIG_FILES([ filters/kpresenter/png/Makefile ])
AC_CONFIG_FILES([ filters/kpresenter/powerpoint/Makefile ])
AC_CONFIG_FILES([ filters/kpresenter/powerpoint/import/Makefile ])
AC_CONFIG_FILES([ filters/kpresenter/powerpoint/libppt/Makefile ])
AC_CONFIG_FILES([ filters/kpresenter/svg/Makefile ])
AC_CONFIG_FILES([ filters/kpresenter/xbm/Makefile ])
AC_CONFIG_FILES([ filters/kpresenter/xpm/Makefile ])
AC_CONFIG_FILES([ filters/krita/Makefile ])
AC_CONFIG_FILES([ filters/krita/gmagick/Makefile ])
AC_CONFIG_FILES([ filters/krita/jpeg/Makefile ])
AC_CONFIG_FILES([ filters/krita/libkisexif/Makefile ])
AC_CONFIG_FILES([ filters/krita/magick/Makefile ])
AC_CONFIG_FILES([ filters/krita/openexr/Makefile ])
AC_CONFIG_FILES([ filters/krita/pdf/Makefile ])
AC_CONFIG_FILES([ filters/krita/png/Makefile ])
AC_CONFIG_FILES([ filters/krita/raw/Makefile ])
AC_CONFIG_FILES([ filters/krita/tiff/Makefile ])
AC_CONFIG_FILES([ filters/krita/xcf/Makefile ])
AC_CONFIG_FILES([ filters/kspread/Makefile ])
AC_CONFIG_FILES([ filters/kspread/applixspread/Makefile ])
AC_CONFIG_FILES([ filters/kspread/csv/Makefile ])
AC_CONFIG_FILES([ filters/kspread/dbase/Makefile ])
AC_CONFIG_FILES([ filters/kspread/excel/Makefile ])
AC_CONFIG_FILES([ filters/kspread/excel/import/Makefile ])
AC_CONFIG_FILES([ filters/kspread/excel/sidewinder/Makefile ])
AC_CONFIG_FILES([ filters/kspread/gnumeric/Makefile ])
AC_CONFIG_FILES([ filters/kspread/html/Makefile ])
AC_CONFIG_FILES([ filters/kspread/kexi/Makefile ])
AC_CONFIG_FILES([ filters/kspread/latex/Makefile ])
AC_CONFIG_FILES([ filters/kspread/latex/export/Makefile ])
AC_CONFIG_FILES([ filters/kspread/libkspreadexport/Makefile ])
AC_CONFIG_FILES([ filters/kspread/opencalc/Makefile ])
AC_CONFIG_FILES([ filters/kspread/qpro/Makefile ])
AC_CONFIG_FILES([ filters/kspread/qpro/libqpro/Makefile ])
AC_CONFIG_FILES([ filters/kspread/qpro/libqpro/qpro/Makefile ])
AC_CONFIG_FILES([ filters/kspread/qpro/libqpro/src/Makefile ])
AC_CONFIG_FILES([ filters/kugar/Makefile ])
AC_CONFIG_FILES([ filters/kugar/kugarnop/Makefile ])
AC_CONFIG_FILES([ filters/kword/Makefile ])
AC_CONFIG_FILES([ filters/kword/abiword/Makefile ])
AC_CONFIG_FILES([ filters/kword/amipro/Makefile ])
AC_CONFIG_FILES([ filters/kword/applixword/Makefile ])
AC_CONFIG_FILES([ filters/kword/ascii/Makefile ])
AC_CONFIG_FILES([ filters/kword/docbook/Makefile ])
AC_CONFIG_FILES([ filters/kword/hancomword/Makefile ])
AC_CONFIG_FILES([ filters/kword/html/Makefile ])
AC_CONFIG_FILES([ filters/kword/html/export/Makefile ])
AC_CONFIG_FILES([ filters/kword/html/import/Makefile ])
AC_CONFIG_FILES([ filters/kword/kword1.3/Makefile ])
AC_CONFIG_FILES([ filters/kword/kword1.3/import/Makefile ])
AC_CONFIG_FILES([ filters/kword/latex/Makefile ])
AC_CONFIG_FILES([ filters/kword/latex/export/Makefile ])
AC_CONFIG_FILES([ filters/kword/latex/import/Makefile ])
AC_CONFIG_FILES([ filters/kword/latex/import/generator/Makefile ])
AC_CONFIG_FILES([ filters/kword/latex/import/parser/Makefile ])
AC_CONFIG_FILES([ filters/kword/libexport/Makefile ])
AC_CONFIG_FILES([ filters/kword/msword/Makefile ])
AC_CONFIG_FILES([ filters/kword/mswrite/Makefile ])
AC_CONFIG_FILES([ filters/kword/oowriter/Makefile ])
AC_CONFIG_FILES([ filters/kword/palmdoc/Makefile ])
AC_CONFIG_FILES([ filters/kword/pdf/Makefile ])
AC_CONFIG_FILES([ filters/kword/pdf/xpdf/Makefile ])
AC_CONFIG_FILES([ filters/kword/pdf/xpdf/goo/Makefile ])
AC_CONFIG_FILES([ filters/kword/pdf/xpdf/xpdf/Makefile ])
AC_CONFIG_FILES([ filters/kword/rtf/Makefile ])
AC_CONFIG_FILES([ filters/kword/rtf/export/Makefile ])
AC_CONFIG_FILES([ filters/kword/rtf/import/Makefile ])
AC_CONFIG_FILES([ filters/kword/starwriter/Makefile ])
AC_CONFIG_FILES([ filters/kword/wml/Makefile ])
AC_CONFIG_FILES([ filters/kword/wordperfect/Makefile ])
AC_CONFIG_FILES([ filters/kword/wordperfect/export/Makefile ])
AC_CONFIG_FILES([ filters/kword/wordperfect/import/Makefile ])
AC_CONFIG_FILES([ filters/libdialogfilter/Makefile ])
AC_CONFIG_FILES([ filters/liboofilter/Makefile ])
AC_CONFIG_FILES([ filters/olefilters/Makefile ])
AC_CONFIG_FILES([ filters/olefilters/lib/Makefile ])
AC_CONFIG_FILES([ filters/olefilters/powerpoint97/Makefile ])
AC_CONFIG_FILES([ filters/xsltfilter/Makefile ])
AC_CONFIG_FILES([ filters/xsltfilter/export/Makefile ])
AC_CONFIG_FILES([ filters/xsltfilter/export/xsl/Makefile ])
AC_CONFIG_FILES([ filters/xsltfilter/export/xsl/kword/Makefile ])
AC_CONFIG_FILES([ filters/xsltfilter/export/xsl/kword/xslfo/Makefile ])
AC_CONFIG_FILES([ filters/xsltfilter/import/Makefile ])
AC_CONFIG_FILES([ interfaces/Makefile ])
AC_CONFIG_FILES([ karbon/Makefile ])
AC_CONFIG_FILES([ karbon/commands/Makefile ])
AC_CONFIG_FILES([ karbon/core/Makefile ])
AC_CONFIG_FILES([ karbon/data/Makefile ])
AC_CONFIG_FILES([ karbon/dialogs/Makefile ])
AC_CONFIG_FILES([ karbon/dockers/Makefile ])
AC_CONFIG_FILES([ karbon/pics/Makefile ])
AC_CONFIG_FILES([ karbon/plugins/Makefile ])
AC_CONFIG_FILES([ karbon/plugins/flattenpath/Makefile ])
AC_CONFIG_FILES([ karbon/plugins/imagetool/Makefile ])
AC_CONFIG_FILES([ karbon/plugins/insertknots/Makefile ])
AC_CONFIG_FILES([ karbon/plugins/roundcorners/Makefile ])
AC_CONFIG_FILES([ karbon/plugins/shadoweffect/Makefile ])
AC_CONFIG_FILES([ karbon/plugins/whirlpinch/Makefile ])
AC_CONFIG_FILES([ karbon/plugins/zoomtool/Makefile ])
AC_CONFIG_FILES([ karbon/render/Makefile ])
AC_CONFIG_FILES([ karbon/render/xrgbrender/Makefile ])
AC_CONFIG_FILES([ karbon/shapes/Makefile ])
AC_CONFIG_FILES([ karbon/templates/Makefile ])
AC_CONFIG_FILES([ karbon/templates/basic/Makefile ])
AC_CONFIG_FILES([ karbon/tools/Makefile ])
AC_CONFIG_FILES([ karbon/visitors/Makefile ])
AC_CONFIG_FILES([ karbon/widgets/Makefile ])
AC_CONFIG_FILES([ kchart/Makefile ])
AC_CONFIG_FILES([ kchart/kdchart/Makefile ])
AC_CONFIG_FILES([ kchart/pics/Makefile ])
AC_CONFIG_FILES([ kchart/templates/Makefile ])
AC_CONFIG_FILES([ kchart/toolbar/Makefile ])
AC_CONFIG_FILES([ kchart/toolbar/crystalsvg/Makefile ])
AC_CONFIG_FILES([ kchart/toolbar/locolor/Makefile ])
AC_CONFIG_FILES([ kdgantt/Makefile ])
AC_CONFIG_FILES([ kexi/Makefile ])
AC_CONFIG_FILES([ kexi/3rdparty/Makefile ])
AC_CONFIG_FILES([ kexi/3rdparty/kexisql/Makefile ])
AC_CONFIG_FILES([ kexi/3rdparty/kexisql/src/Makefile ])
AC_CONFIG_FILES([ kexi/3rdparty/kexisql/tool/Makefile ])
AC_CONFIG_FILES([ kexi/3rdparty/kexisql3/Makefile ])
AC_CONFIG_FILES([ kexi/3rdparty/kexisql3/src/Makefile ])
AC_CONFIG_FILES([ kexi/3rdparty/kolibs/Makefile ])
AC_CONFIG_FILES([ kexi/3rdparty/uuid/Makefile ])
AC_CONFIG_FILES([ kexi/core/Makefile ])
AC_CONFIG_FILES([ kexi/data/Makefile ])
AC_CONFIG_FILES([ kexi/data/kde34compat/Makefile ])
AC_CONFIG_FILES([ kexi/examples/Makefile ])
AC_CONFIG_FILES([ kexi/formeditor/Makefile ])
AC_CONFIG_FILES([ kexi/formeditor/factories/Makefile ])
AC_CONFIG_FILES([ kexi/formeditor/kdevelop_plugin/Makefile ])
AC_CONFIG_FILES([ kexi/formeditor/scripting/Makefile ])
AC_CONFIG_FILES([ kexi/formeditor/test/Makefile ])
AC_CONFIG_FILES([ kexi/kexidb/Makefile ])
AC_CONFIG_FILES([ kexi/kexidb/drivers/Makefile ])
AC_CONFIG_FILES([ kexi/kexidb/drivers/mySQL/Makefile ])
AC_CONFIG_FILES([ kexi/kexidb/drivers/odbc/Makefile ])
AC_CONFIG_FILES([ kexi/kexidb/drivers/pqxx/Makefile ])
AC_CONFIG_FILES([ kexi/kexidb/drivers/sqlite/Makefile ])
AC_CONFIG_FILES([ kexi/kexidb/drivers/sqlite2/Makefile ])
AC_CONFIG_FILES([ kexi/kexidb/parser/Makefile ])
AC_CONFIG_FILES([ kexi/kexiutils/Makefile ])
AC_CONFIG_FILES([ kexi/main/Makefile ])
AC_CONFIG_FILES([ kexi/main/printing/Makefile ])
AC_CONFIG_FILES([ kexi/main/startup/Makefile ])
AC_CONFIG_FILES([ kexi/migration/Makefile ])
AC_CONFIG_FILES([ kexi/migration/mysql/Makefile ])
AC_CONFIG_FILES([ kexi/migration/pqxx/Makefile ])
AC_CONFIG_FILES([ kexi/migration/txt/Makefile ])
AC_CONFIG_FILES([ kexi/pics/Makefile ])
AC_CONFIG_FILES([ kexi/plugins/Makefile ])
AC_CONFIG_FILES([ kexi/plugins/forms/Makefile ])
AC_CONFIG_FILES([ kexi/plugins/forms/widgets/Makefile ])
AC_CONFIG_FILES([ kexi/plugins/importexport/Makefile ])
AC_CONFIG_FILES([ kexi/plugins/importexport/csv/Makefile ])
AC_CONFIG_FILES([ kexi/plugins/macros/Makefile ])
AC_CONFIG_FILES([ kexi/plugins/macros/kexiactions/Makefile ])
AC_CONFIG_FILES([ kexi/plugins/macros/kexipart/Makefile ])
AC_CONFIG_FILES([ kexi/plugins/macros/lib/Makefile ])
AC_CONFIG_FILES([ kexi/plugins/macros/tests/Makefile ])
AC_CONFIG_FILES([ kexi/plugins/migration/Makefile ])
AC_CONFIG_FILES([ kexi/plugins/queries/Makefile ])
AC_CONFIG_FILES([ kexi/plugins/relations/Makefile ])
AC_CONFIG_FILES([ kexi/plugins/reports/Makefile ])
AC_CONFIG_FILES([ kexi/plugins/scripting/Makefile ])
AC_CONFIG_FILES([ kexi/plugins/scripting/kexiapp/Makefile ])
AC_CONFIG_FILES([ kexi/plugins/scripting/kexidb/Makefile ])
AC_CONFIG_FILES([ kexi/plugins/scripting/kexiscripting/Makefile ])
AC_CONFIG_FILES([ kexi/plugins/scripting/scripts/Makefile ])
AC_CONFIG_FILES([ kexi/plugins/scripting/scripts/copycenter/Makefile ])
AC_CONFIG_FILES([ kexi/plugins/scripting/scripts/exportxhtml/Makefile ])
AC_CONFIG_FILES([ kexi/plugins/scripting/scripts/importxhtml/Makefile ])
AC_CONFIG_FILES([ kexi/plugins/scripting/scripts/projectdocumentor/Makefile ])
AC_CONFIG_FILES([ kexi/plugins/scripting/scripts/python/Makefile ])
AC_CONFIG_FILES([ kexi/plugins/scripting/scripts/python/kexiapp/Makefile ])
AC_CONFIG_FILES([ kexi/plugins/tables/Makefile ])
AC_CONFIG_FILES([ kexi/tests/Makefile ])
AC_CONFIG_FILES([ kexi/tests/altertable/Makefile ])
AC_CONFIG_FILES([ kexi/tests/newapi/Makefile ])
AC_CONFIG_FILES([ kexi/tests/parser/Makefile ])
AC_CONFIG_FILES([ kexi/tests/startup/Makefile ])
AC_CONFIG_FILES([ kexi/tests/tableview/Makefile ])
AC_CONFIG_FILES([ kexi/tests/widgets/Makefile ])
AC_CONFIG_FILES([ kexi/tools/Makefile ])
AC_CONFIG_FILES([ kexi/tools/add_column/Makefile ])
AC_CONFIG_FILES([ kexi/tools/delete_column/Makefile ])
AC_CONFIG_FILES([ kexi/widget/Makefile ])
AC_CONFIG_FILES([ kexi/widget/relations/Makefile ])
AC_CONFIG_FILES([ kexi/widget/tableview/Makefile ])
AC_CONFIG_FILES([ kexi/widget/utils/Makefile ])
AC_CONFIG_FILES([ kformula/Makefile ])
AC_CONFIG_FILES([ kformula/pics/Makefile ])
AC_CONFIG_FILES([ kivio/Makefile ])
AC_CONFIG_FILES([ kivio/kiviopart/Makefile ])
AC_CONFIG_FILES([ kivio/kiviopart/config/Makefile ])
AC_CONFIG_FILES([ kivio/kiviopart/kiviosdk/Makefile ])
AC_CONFIG_FILES([ kivio/kiviopart/pics/Makefile ])
AC_CONFIG_FILES([ kivio/kiviopart/stencils/Makefile ])
AC_CONFIG_FILES([ kivio/kiviopart/stencils/Dia/Makefile ])
AC_CONFIG_FILES([ kivio/kiviopart/stencils/Dia/Assorted/Makefile ])
AC_CONFIG_FILES([ kivio/kiviopart/stencils/Dia/Circuit/Makefile ])
AC_CONFIG_FILES([ kivio/kiviopart/stencils/Dia/Cisco/Makefile ])
AC_CONFIG_FILES([ kivio/kiviopart/stencils/Dia/Civil/Makefile ])
AC_CONFIG_FILES([ kivio/kiviopart/stencils/Dia/Contact/Makefile ])
AC_CONFIG_FILES([ kivio/kiviopart/stencils/Dia/Electric/Makefile ])
AC_CONFIG_FILES([ kivio/kiviopart/stencils/Dia/Jigsaw/Makefile ])
AC_CONFIG_FILES([ kivio/kiviopart/stencils/Dia/MSE/Makefile ])
AC_CONFIG_FILES([ kivio/kiviopart/stencils/Dia/Network/Makefile ])
AC_CONFIG_FILES([ kivio/kiviopart/stencils/Dia/Pneumatic/Makefile ])
AC_CONFIG_FILES([ kivio/kiviopart/stencils/Dia/SDL/Makefile ])
AC_CONFIG_FILES([ kivio/kiviopart/stencils/Dia/Sybase/Makefile ])
AC_CONFIG_FILES([ kivio/kiviopart/stencils/Flowcharting/Makefile ])
AC_CONFIG_FILES([ kivio/kiviopart/stencils/Flowcharting/BasicFlowcharting/Makefile ])
AC_CONFIG_FILES([ kivio/kiviopart/stencils/Flowcharting/Extended/Makefile ])
AC_CONFIG_FILES([ kivio/kiviopart/stencils/Flowcharting/Logic/Makefile ])
AC_CONFIG_FILES([ kivio/kiviopart/stencils/Geographic/Makefile ])
AC_CONFIG_FILES([ kivio/kiviopart/stencils/Geographic/Flags/Makefile ])
AC_CONFIG_FILES([ kivio/kiviopart/stencils/Geographic/Maps/Makefile ])
AC_CONFIG_FILES([ kivio/kiviopart/stencils/Hardware/Makefile ])
AC_CONFIG_FILES([ kivio/kiviopart/stencils/Hardware/Computer/Makefile ])
AC_CONFIG_FILES([ kivio/kiviopart/stencils/Hardware/Miscellaneous/Makefile ])
AC_CONFIG_FILES([ kivio/kiviopart/stencils/Miscellaneous/Makefile ])
AC_CONFIG_FILES([ kivio/kiviopart/stencils/Miscellaneous/Arrows/Makefile ])
AC_CONFIG_FILES([ kivio/kiviopart/stencils/Miscellaneous/Buildings/Makefile ])
AC_CONFIG_FILES([ kivio/kiviopart/stencils/Miscellaneous/ER/Makefile ])
AC_CONFIG_FILES([ kivio/kiviopart/stencils/Miscellaneous/NassiShneiderman/Makefile ])
AC_CONFIG_FILES([ kivio/kiviopart/stencils/Miscellaneous/People/Makefile ])
AC_CONFIG_FILES([ kivio/kiviopart/stencils/Miscellaneous/Transport/Makefile ])
AC_CONFIG_FILES([ kivio/kiviopart/stencils/UML/Makefile ])
AC_CONFIG_FILES([ kivio/kiviopart/stencils/UML/ActivityDiagrams/Makefile ])
AC_CONFIG_FILES([ kivio/kiviopart/stencils/UML/ClassDiagrams/Makefile ])
AC_CONFIG_FILES([ kivio/kiviopart/tiles/Makefile ])
AC_CONFIG_FILES([ kivio/kiviopart/tools/Makefile ])
AC_CONFIG_FILES([ kivio/kiviopart/ui/Makefile ])
AC_CONFIG_FILES([ kivio/plugins/Makefile ])
AC_CONFIG_FILES([ kivio/plugins/kivioconnectortool/Makefile ])
AC_CONFIG_FILES([ kivio/plugins/kivioconnectortool/straight_connector/Makefile ])
AC_CONFIG_FILES([ kivio/plugins/kivioselecttool/Makefile ])
AC_CONFIG_FILES([ kivio/plugins/kivioselecttool/select_pics/Makefile ])
AC_CONFIG_FILES([ kivio/plugins/kiviosmlconnector/Makefile ])
AC_CONFIG_FILES([ kivio/plugins/kiviosmlconnector/sml_connector/Makefile ])
AC_CONFIG_FILES([ kivio/plugins/kiviotargettool/Makefile ])
AC_CONFIG_FILES([ kivio/plugins/kiviotexttool/Makefile ])
AC_CONFIG_FILES([ kivio/plugins/kiviozoomtool/Makefile ])
AC_CONFIG_FILES([ kivio/plugins/kiviozoomtool/zoom_pics/Makefile ])
AC_CONFIG_FILES([ kivio/templates/Makefile ])
AC_CONFIG_FILES([ kivio/templates/basic/Makefile ])
AC_CONFIG_FILES([ koshell/Makefile ])
AC_CONFIG_FILES([ kounavail/Makefile ])
AC_CONFIG_FILES([ kplato/Makefile ])
AC_CONFIG_FILES([ kplato/pics/Makefile ])
AC_CONFIG_FILES([ kplato/reports/Makefile ])
AC_CONFIG_FILES([ kplato/templates/Makefile ])
AC_CONFIG_FILES([ kplato/templates/Simple/Makefile ])
AC_CONFIG_FILES([ kplato/tests/Makefile ])
AC_CONFIG_FILES([ kplato/toolbar/Makefile ])
AC_CONFIG_FILES([ kpresenter/Makefile ])
AC_CONFIG_FILES([ kpresenter/autoformEdit/Makefile ])
AC_CONFIG_FILES([ kpresenter/autoforms/Makefile ])
AC_CONFIG_FILES([ kpresenter/autoforms/Arrows/Makefile ])
AC_CONFIG_FILES([ kpresenter/autoforms/Connections/Makefile ])
AC_CONFIG_FILES([ kpresenter/dtd/Makefile ])
AC_CONFIG_FILES([ kpresenter/pics/Makefile ])
AC_CONFIG_FILES([ kpresenter/pics/rotate/Makefile ])
AC_CONFIG_FILES([ kpresenter/slideshow/Makefile ])
AC_CONFIG_FILES([ kpresenter/templates/Makefile ])
AC_CONFIG_FILES([ kpresenter/templates/A4/Makefile ])
AC_CONFIG_FILES([ kpresenter/templates/Screen/Makefile ])
AC_CONFIG_FILES([ kpresenter/templates/Screenpresentations/Makefile ])
AC_CONFIG_FILES([ kpresenter/templates/common_icon/Makefile ])
AC_CONFIG_FILES([ kpresenter/templates/legal/Makefile ])
AC_CONFIG_FILES([ kpresenter/templates/letter/Makefile ])
AC_CONFIG_FILES([ kpresenter/toolbar/Makefile ])
AC_CONFIG_FILES([ krita/Makefile ])
AC_CONFIG_FILES([ krita/colorspaces/Makefile ])
AC_CONFIG_FILES([ krita/colorspaces/cmyk_u16/Makefile ])
AC_CONFIG_FILES([ krita/colorspaces/cmyk_u8/Makefile ])
AC_CONFIG_FILES([ krita/colorspaces/cmyk_u8/templates/Makefile ])
AC_CONFIG_FILES([ krita/colorspaces/gray_u16/Makefile ])
AC_CONFIG_FILES([ krita/colorspaces/gray_u8/Makefile ])
AC_CONFIG_FILES([ krita/colorspaces/gray_u8/templates/Makefile ])
AC_CONFIG_FILES([ krita/colorspaces/gray_u8/tests/Makefile ])
AC_CONFIG_FILES([ krita/colorspaces/lms_f32/Makefile ])
AC_CONFIG_FILES([ krita/colorspaces/rgb_f16half/Makefile ])
AC_CONFIG_FILES([ krita/colorspaces/rgb_f16half/tests/Makefile ])
AC_CONFIG_FILES([ krita/colorspaces/rgb_f32/Makefile ])
AC_CONFIG_FILES([ krita/colorspaces/rgb_f32/tests/Makefile ])
AC_CONFIG_FILES([ krita/colorspaces/rgb_u16/Makefile ])
AC_CONFIG_FILES([ krita/colorspaces/rgb_u16/tests/Makefile ])
AC_CONFIG_FILES([ krita/colorspaces/rgb_u8/Makefile ])
AC_CONFIG_FILES([ krita/colorspaces/rgb_u8/templates/Makefile ])
AC_CONFIG_FILES([ krita/colorspaces/rgb_u8/tests/Makefile ])
AC_CONFIG_FILES([ krita/colorspaces/wet/Makefile ])
AC_CONFIG_FILES([ krita/colorspaces/wetsticky/Makefile ])
AC_CONFIG_FILES([ krita/colorspaces/wetsticky/brushop/Makefile ])
AC_CONFIG_FILES([ krita/colorspaces/ycbcr_u16/Makefile ])
AC_CONFIG_FILES([ krita/colorspaces/ycbcr_u8/Makefile ])
AC_CONFIG_FILES([ krita/core/Makefile ])
AC_CONFIG_FILES([ krita/core/tests/Makefile ])
AC_CONFIG_FILES([ krita/core/tiles/Makefile ])
AC_CONFIG_FILES([ krita/core/tiles/tests/Makefile ])
AC_CONFIG_FILES([ krita/data/Makefile ])
AC_CONFIG_FILES([ krita/data/brushes/Makefile ])
AC_CONFIG_FILES([ krita/data/gradients/Makefile ])
AC_CONFIG_FILES([ krita/data/images/Makefile ])
AC_CONFIG_FILES([ krita/data/palettes/Makefile ])
AC_CONFIG_FILES([ krita/data/patterns/Makefile ])
AC_CONFIG_FILES([ krita/data/profiles/Makefile ])
AC_CONFIG_FILES([ krita/dtd/Makefile ])
AC_CONFIG_FILES([ krita/kritacolor/Makefile ])
AC_CONFIG_FILES([ krita/kritacolor/colorspaces/Makefile ])
AC_CONFIG_FILES([ krita/kritacolor/tests/Makefile ])
AC_CONFIG_FILES([ krita/pics/Makefile ])
AC_CONFIG_FILES([ krita/plugins/Makefile ])
AC_CONFIG_FILES([ krita/plugins/filters/Makefile ])
AC_CONFIG_FILES([ krita/plugins/filters/blur/Makefile ])
AC_CONFIG_FILES([ krita/plugins/filters/bumpmap/Makefile ])
AC_CONFIG_FILES([ krita/plugins/filters/cimg/Makefile ])
AC_CONFIG_FILES([ krita/plugins/filters/colorify/Makefile ])
AC_CONFIG_FILES([ krita/plugins/filters/colors/Makefile ])
AC_CONFIG_FILES([ krita/plugins/filters/colorsfilters/Makefile ])
AC_CONFIG_FILES([ krita/plugins/filters/convolutionfilters/Makefile ])
AC_CONFIG_FILES([ krita/plugins/filters/cubismfilter/Makefile ])
AC_CONFIG_FILES([ krita/plugins/filters/embossfilter/Makefile ])
AC_CONFIG_FILES([ krita/plugins/filters/example/Makefile ])
AC_CONFIG_FILES([ krita/plugins/filters/fastcolortransfer/Makefile ])
AC_CONFIG_FILES([ krita/plugins/filters/imageenhancement/Makefile ])
AC_CONFIG_FILES([ krita/plugins/filters/lenscorrectionfilter/Makefile ])
AC_CONFIG_FILES([ krita/plugins/filters/levelfilter/Makefile ])
AC_CONFIG_FILES([ krita/plugins/filters/noisefilter/Makefile ])
AC_CONFIG_FILES([ krita/plugins/filters/oilpaintfilter/Makefile ])
AC_CONFIG_FILES([ krita/plugins/filters/pixelizefilter/Makefile ])
AC_CONFIG_FILES([ krita/plugins/filters/raindropsfilter/Makefile ])
AC_CONFIG_FILES([ krita/plugins/filters/randompickfilter/Makefile ])
AC_CONFIG_FILES([ krita/plugins/filters/roundcorners/Makefile ])
AC_CONFIG_FILES([ krita/plugins/filters/smalltilesfilter/Makefile ])
AC_CONFIG_FILES([ krita/plugins/filters/sobelfilter/Makefile ])
AC_CONFIG_FILES([ krita/plugins/filters/threadtest/Makefile ])
AC_CONFIG_FILES([ krita/plugins/filters/unsharp/Makefile ])
AC_CONFIG_FILES([ krita/plugins/filters/wavefilter/Makefile ])
AC_CONFIG_FILES([ krita/plugins/paintops/Makefile ])
AC_CONFIG_FILES([ krita/plugins/paintops/defaultpaintops/Makefile ])
AC_CONFIG_FILES([ krita/plugins/tools/Makefile ])
AC_CONFIG_FILES([ krita/plugins/tools/defaulttools/Makefile ])
AC_CONFIG_FILES([ krita/plugins/tools/selectiontools/Makefile ])
AC_CONFIG_FILES([ krita/plugins/tools/tool_crop/Makefile ])
AC_CONFIG_FILES([ krita/plugins/tools/tool_curves/Makefile ])
AC_CONFIG_FILES([ krita/plugins/tools/tool_filter/Makefile ])
AC_CONFIG_FILES([ krita/plugins/tools/tool_perspectivegrid/Makefile ])
AC_CONFIG_FILES([ krita/plugins/tools/tool_perspectivetransform/Makefile ])
AC_CONFIG_FILES([ krita/plugins/tools/tool_polygon/Makefile ])
AC_CONFIG_FILES([ krita/plugins/tools/tool_polyline/Makefile ])
AC_CONFIG_FILES([ krita/plugins/tools/tool_selectsimilar/Makefile ])
AC_CONFIG_FILES([ krita/plugins/tools/tool_star/Makefile ])
AC_CONFIG_FILES([ krita/plugins/tools/tool_transform/Makefile ])
AC_CONFIG_FILES([ krita/plugins/viewplugins/Makefile ])
AC_CONFIG_FILES([ krita/plugins/viewplugins/colorrange/Makefile ])
AC_CONFIG_FILES([ krita/plugins/viewplugins/colorspaceconversion/Makefile ])
AC_CONFIG_FILES([ krita/plugins/viewplugins/dropshadow/Makefile ])
AC_CONFIG_FILES([ krita/plugins/viewplugins/filtersgallery/Makefile ])
AC_CONFIG_FILES([ krita/plugins/viewplugins/histogram/Makefile ])
AC_CONFIG_FILES([ krita/plugins/viewplugins/histogram_docker/Makefile ])
AC_CONFIG_FILES([ krita/plugins/viewplugins/history_docker/Makefile ])
AC_CONFIG_FILES([ krita/plugins/viewplugins/imagesize/Makefile ])
AC_CONFIG_FILES([ krita/plugins/viewplugins/modify_selection/Makefile ])
AC_CONFIG_FILES([ krita/plugins/viewplugins/performancetest/Makefile ])
AC_CONFIG_FILES([ krita/plugins/viewplugins/rotateimage/Makefile ])
AC_CONFIG_FILES([ krita/plugins/viewplugins/screenshot/Makefile ])
AC_CONFIG_FILES([ krita/plugins/viewplugins/scripting/Makefile ])
AC_CONFIG_FILES([ krita/plugins/viewplugins/scripting/kritacore/Makefile ])
AC_CONFIG_FILES([ krita/plugins/viewplugins/scripting/kritascripting/Makefile ])
AC_CONFIG_FILES([ krita/plugins/viewplugins/scripting/samples/Makefile ])
AC_CONFIG_FILES([ krita/plugins/viewplugins/scripting/samples/python/Makefile ])
AC_CONFIG_FILES([ krita/plugins/viewplugins/scripting/samples/ruby/Makefile ])
AC_CONFIG_FILES([ krita/plugins/viewplugins/selectopaque/Makefile ])
AC_CONFIG_FILES([ krita/plugins/viewplugins/separate_channels/Makefile ])
AC_CONFIG_FILES([ krita/plugins/viewplugins/shearimage/Makefile ])
AC_CONFIG_FILES([ krita/plugins/viewplugins/substrate/Makefile ])
AC_CONFIG_FILES([ krita/plugins/viewplugins/variations/Makefile ])
AC_CONFIG_FILES([ krita/sdk/Makefile ])
AC_CONFIG_FILES([ krita/ui/Makefile ])
AC_CONFIG_FILES([ kspread/Makefile ])
AC_CONFIG_FILES([ kspread/dialogs/Makefile ])
AC_CONFIG_FILES([ kspread/dtd/Makefile ])
AC_CONFIG_FILES([ kspread/extensions/Makefile ])
AC_CONFIG_FILES([ kspread/pics/Makefile ])
AC_CONFIG_FILES([ kspread/plugins/Makefile ])
AC_CONFIG_FILES([ kspread/plugins/calculator/Makefile ])
AC_CONFIG_FILES([ kspread/plugins/calculator/pics/Makefile ])
AC_CONFIG_FILES([ kspread/plugins/insertcalendar/Makefile ])
AC_CONFIG_FILES([ kspread/plugins/scripting/Makefile ])
AC_CONFIG_FILES([ kspread/plugins/scripting/kspreadcore/Makefile ])
AC_CONFIG_FILES([ kspread/plugins/scripting/scripts/Makefile ])
AC_CONFIG_FILES([ kspread/plugins/scripting/scripts/exporthtml/Makefile ])
AC_CONFIG_FILES([ kspread/plugins/scripting/scripts/scripteditor/Makefile ])
AC_CONFIG_FILES([ kspread/sheetstyles/Makefile ])
AC_CONFIG_FILES([ kspread/templates/Makefile ])
AC_CONFIG_FILES([ kspread/templates/Business/Makefile ])
AC_CONFIG_FILES([ kspread/templates/General/Makefile ])
AC_CONFIG_FILES([ kspread/templates/HomeFamily/Makefile ])
AC_CONFIG_FILES([ kspread/tests/Makefile ])
AC_CONFIG_FILES([ kspread/toolbar/Makefile ])
AC_CONFIG_FILES([ kspread/toolbar/crystalsvg/Makefile ])
AC_CONFIG_FILES([ kugar/Makefile ])
AC_CONFIG_FILES([ kugar/kudesigner/Makefile ])
AC_CONFIG_FILES([ kugar/kudesigner/pics/Makefile ])
AC_CONFIG_FILES([ kugar/kudesigner/templates/Makefile ])
AC_CONFIG_FILES([ kugar/kudesigner/templates/General/Makefile ])
AC_CONFIG_FILES([ kugar/kudesigner/toolbar/Makefile ])
AC_CONFIG_FILES([ kugar/kudesigner_lib/Makefile ])
AC_CONFIG_FILES([ kugar/lib/Makefile ])
AC_CONFIG_FILES([ kugar/part/Makefile ])
AC_CONFIG_FILES([ kugar/samples/Makefile ])
AC_CONFIG_FILES([ kword/Makefile ])
AC_CONFIG_FILES([ kword/data/Makefile ])
AC_CONFIG_FILES([ kword/dtd/Makefile ])
AC_CONFIG_FILES([ kword/expression/Makefile ])
AC_CONFIG_FILES([ kword/horizontalline/Makefile ])
AC_CONFIG_FILES([ kword/mailmerge/Makefile ])
AC_CONFIG_FILES([ kword/mailmerge/kabc/Makefile ])
AC_CONFIG_FILES([ kword/mailmerge/kspread/Makefile ])
AC_CONFIG_FILES([ kword/mailmerge/sql/Makefile ])
AC_CONFIG_FILES([ kword/pics/Makefile ])
AC_CONFIG_FILES([ kword/templates/Makefile ])
AC_CONFIG_FILES([ kword/templates/CardsAndLabels/Makefile ])
AC_CONFIG_FILES([ kword/templates/Envelopes/Makefile ])
AC_CONFIG_FILES([ kword/templates/Wordprocessing/Makefile ])
AC_CONFIG_FILES([ kword/tests/Makefile ])
AC_CONFIG_FILES([ kword/toolbar/Makefile ])
AC_CONFIG_FILES([ lib/Makefile ])
AC_CONFIG_FILES([ lib/kformula/Makefile ])
AC_CONFIG_FILES([ lib/kformula/config/Makefile ])
AC_CONFIG_FILES([ lib/kformula/dtd/Makefile ])
AC_CONFIG_FILES([ lib/kformula/fonts/Makefile ])
AC_CONFIG_FILES([ lib/kformula/pics/Makefile ])
AC_CONFIG_FILES([ lib/kformula/pics/crystalsvg/Makefile ])
AC_CONFIG_FILES([ lib/kofficecore/Makefile ])
AC_CONFIG_FILES([ lib/kofficecore/tests/Makefile ])
AC_CONFIG_FILES([ lib/kofficeui/Makefile ])
AC_CONFIG_FILES([ lib/kofficeui/pics/Makefile ])
AC_CONFIG_FILES([ lib/kofficeui/tests/Makefile ])
AC_CONFIG_FILES([ lib/kopainter/Makefile ])
AC_CONFIG_FILES([ lib/kopalette/Makefile ])
AC_CONFIG_FILES([ lib/koproperty/Makefile ])
AC_CONFIG_FILES([ lib/koproperty/editors/Makefile ])
AC_CONFIG_FILES([ lib/koproperty/test/Makefile ])
AC_CONFIG_FILES([ lib/kotext/Makefile ])
AC_CONFIG_FILES([ lib/kotext/kohyphen/Makefile ])
AC_CONFIG_FILES([ lib/kotext/kohyphen/hyphdicts/Makefile ])
AC_CONFIG_FILES([ lib/kotext/tests/Makefile ])
AC_CONFIG_FILES([ lib/kross/Makefile ])
AC_CONFIG_FILES([ lib/kross/api/Makefile ])
AC_CONFIG_FILES([ lib/kross/main/Makefile ])
AC_CONFIG_FILES([ lib/kross/python/Makefile ])
AC_CONFIG_FILES([ lib/kross/python/cxx/Makefile ])
AC_CONFIG_FILES([ lib/kross/python/scripts/Makefile ])
AC_CONFIG_FILES([ lib/kross/python/scripts/RestrictedPython/Makefile ])
AC_CONFIG_FILES([ lib/kross/ruby/Makefile ])
AC_CONFIG_FILES([ lib/kross/runner/Makefile ])
AC_CONFIG_FILES([ lib/kross/test/Makefile ])
AC_CONFIG_FILES([ lib/kwmf/Makefile ])
AC_CONFIG_FILES([ lib/store/Makefile ])
AC_CONFIG_FILES([ lib/store/tests/Makefile ])
AC_CONFIG_FILES([ mimetypes/Makefile ])
AC_CONFIG_FILES([ mimetypes/kde33/Makefile ])
AC_CONFIG_FILES([ mimetypes/kde351/Makefile ])
AC_CONFIG_FILES([ pics/Makefile ])
AC_CONFIG_FILES([ pics/crystalsvg/Makefile ])
AC_CONFIG_FILES([ plugins/Makefile ])
AC_CONFIG_FILES([ plugins/scan/Makefile ])
AC_CONFIG_FILES([ servicetypes/Makefile ])
AC_CONFIG_FILES([ templates/Makefile ])
AC_CONFIG_FILES([ tools/Makefile ])
AC_CONFIG_FILES([ tools/converter/Makefile ])
AC_CONFIG_FILES([ tools/kfile-plugins/Makefile ])
AC_CONFIG_FILES([ tools/kfile-plugins/abiword/Makefile ])
AC_CONFIG_FILES([ tools/kfile-plugins/gnumeric/Makefile ])
AC_CONFIG_FILES([ tools/kfile-plugins/koffice/Makefile ])
AC_CONFIG_FILES([ tools/kfile-plugins/ooo/Makefile ])
AC_CONFIG_FILES([ tools/kthesaurus/Makefile ])
AC_CONFIG_FILES([ tools/quickprint/Makefile ])
AC_CONFIG_FILES([ tools/spell/Makefile ])
AC_CONFIG_FILES([ tools/thesaurus/Makefile ])
AC_CONFIG_FILES([ tools/thumbnail/Makefile ])
AC_MSG_CHECKING([for filters to be compiled])

if test -s $srcdir/inst-apps ; then
    SUBDIRLIST=`cat $srcdir/inst-apps`
else
    SUBDIRLIST=`cat $srcdir/subdirs`
fi

# fallback (KDE_CREATE_SUBDIRLIST has this fallback, so I have put it here too.)
if test -z "$SUBDIRLIST" ; then
    SUBDIRLIST=`ls -1 $srcdir`
fi

# first check which main apllication we could compile
for args in $SUBDIRLIST ; do
    case $args in
        kword) COMPILE_FILTER_KWORD="$args " ;;
        kspread) COMPILE_FILTER_KSPREAD="$args " ;;
        kchart) COMPILE_FILTER_KCHART="$args " ;;
        karbon) COMPILE_FILTER_KARBON="$args " ;;
        kpresenter) COMPILE_FILTER_KPRESENTER="$args " ;;
        kformula) COMPILE_FILTER_KFORMULA="$args " ;;
        kugar) COMPILE_FILTER_KUGAR="$args " ;;
        krita) COMPILE_FILTER_KRITA="$args " ;;
	kivio) COMPILE_FILTER_KIVIO="$args " ;;
	kexi) COMPILE_FILTER_KEXI="$args " ;;
    esac
done

# now remove the applications the user has asked not to compile
for args in $DO_NOT_COMPILE ; do
    case $args in
        kword) COMPILE_FILTER_KWORD= ;;
        kspread) COMPILE_FILTER_KSPREAD= ;;
        kchart) COMPILE_FILTER_KCHART= ;;
        karbon) COMPILE_FILTER_KARBON= ;;
        kpresenter) COMPILE_FILTER_KPRESENTER= ;;
        kformula) COMPILE_FILTER_KFORMULA= ;;
        kugar) COMPILE_FILTER_KUGAR= ;;
        krita) COMPILE_FILTER_KRITA= ;;
	kivio) COMPILE_FILTER_KIVIO= ;;
	kexi) COMPILE_FILTER_KEXI= ;;
    esac
done

USERFEEDBACKCOMPILE="$COMPILE_FILTER_KWORD$COMPILE_FILTER_KSPREAD$COMPILE_FILTER_KCHART$COMPILE_FILTER_KARBON$COMPILE_FILTER_KPRESENTER$COMPILE_FILTER_KFORMULA$COMPILE_FILTER_KUGAR"
AC_MSG_RESULT([$USERFEEDBACKCOMPILE])

AM_CONDITIONAL(compile_filter_KWORD, test -n "$COMPILE_FILTER_KWORD")
AM_CONDITIONAL(compile_filter_KSPREAD, test -n "$COMPILE_FILTER_KSPREAD")
AM_CONDITIONAL(compile_filter_KCHART, test -n "$COMPILE_FILTER_KCHART")
AM_CONDITIONAL(compile_filter_KARBON, test -n "$COMPILE_FILTER_KARBON")
AM_CONDITIONAL(compile_filter_KPRESENTER, test -n "$COMPILE_FILTER_KPRESENTER")
AM_CONDITIONAL(compile_filter_KFORMULA, test -n "$COMPILE_FILTER_KFORMULA")
AM_CONDITIONAL(compile_filter_KUGAR, test -n "$COMPILE_FILTER_KUGAR")
AM_CONDITIONAL(compile_filter_KRITA, test -n "$COMPILE_FILTER_KRITA")
AM_CONDITIONAL(compile_filter_KIVIO, test -n "$COMPILE_FILTER_KIVIO")
AM_CONDITIONAL(compile_filter_KEXI, test -n "$COMPILE_FILTER_KEXI")
if test -s $srcdir/inst-apps ; then
    SUBDIRLIST=`cat $srcdir/inst-apps`
else
    SUBDIRLIST=`cat $srcdir/subdirs`
fi

# fallback (KDE_CREATE_SUBDIRLIST has this fallback, so I have put it here too.)
if test -z "$SUBDIRLIST" ; then
    SUBDIRLIST=`ls -1 $srcdir`
fi

# first check which main apllication we could compile
for args in $SUBDIRLIST ; do
    case $args in
        kugar) COMPILE_PLUGIN_KUGAR="$args " ;;
    esac
done

# now remove the applications the user has asked not to compile
for args in $DO_NOT_COMPILE ; do
    case $args in
        kugar) COMPILE_PLUGIN_KUGAR= ;;
    esac
done

AM_CONDITIONAL(compile_plugin_KUGAR, test -n "$COMPILE_PLUGIN_KUGAR")
if test -s $srcdir/inst-apps ; then
    SUBDIRLIST=`cat $srcdir/inst-apps`
else
    SUBDIRLIST=`cat $srcdir/subdirs`
fi

# fallback (KDE_CREATE_SUBDIRLIST has this fallback, so I have put it here too.)
if test -z "$SUBDIRLIST" ; then
    SUBDIRLIST=`ls -1 $srcdir`
fi

AC_MSG_CHECKING([whether only Kexi is being built])
KEXI_ONLY=yes
for args in $SUBDIRLIST ; do
    case $args in
        lib) ;;
        kexi) ;;
        *) if test -d $srcdir/$args ; then 
             KEXI_ONLY=no
           fi
           ;;
    esac
done
AC_MSG_RESULT([$KEXI_ONLY])
AM_CONDITIONAL(compile_kexionly, test "$KEXI_ONLY" = "yes" )

AC_MSG_CHECKING([whether kopainter should be compiled])

# first check which main application we could compile
for args in $SUBDIRLIST ; do
    case $args in
        krita) COMPILE_LIB_FOR_KRITA="$args " ;;
        karbon) COMPILE_LIB_FOR_KARBON="$args " ;;
        kivio) COMPILE_LIB_FOR_KIVIO="$args " ;;
    esac
done

# now remove the applications the user has asked not to compile
COMPILE_LIB_FOR_KPRESENTER="#"
for args in $DO_NOT_COMPILE ; do
    case $args in
        krita) COMPILE_LIB_FOR_KRITA= ;;
        karbon) COMPILE_LIB_FOR_KARBON= ;;
        kivio) COMPILE_LIB_FOR_KIVIO= ;;
	kpresenter) COMPILE_LIB_FOR_KPRESENTER= ;;
    esac
done

if test -n "$COMPILE_LIB_FOR_KRITA$COMPILE_LIB_FOR_KARBON$COMPILE_LIB_FOR_KIVIO$COMPILE_LIB_FOR_KPRESENTER" ; then
    USERFEEDBACKCOMPILELIB="yes"
else
    USERFEEDBACKCOMPILELIB="no"
fi

AC_MSG_RESULT([$USERFEEDBACKCOMPILELIB])

AM_CONDITIONAL(compile_lib_KOPAINTER, test "$USERFEEDBACKCOMPILELIB" = "yes" )

AC_OUTPUT
if test -z "$LIBGMAGICK_LIBS" -a -z "$LIBMAGICK_LIBS"; then
  echo ""
  echo "You're missing GraphicsMagick (>=1.1.7). krita's GraphicsMagick import/export"
  echo "filter will not be compiled. You can download GraphicsMagick from"
  echo "http://www.graphicsmagick.org/. The GraphicsMagick filter allows krita to"
  echo "read and write XCF, PSD, GIF, BMP, and many other image formats."
  echo ""
  echo "If you have problems compiling GraphicsMagick, please try configuring it using"
  echo "the --without-magick-plus-plus flag, the C++ API isn't needed for krita."
  echo ""
  all_tests=bad
  AC_DEFINE([include_imagemagick_filter],"",[don't use magick filter])
fi

if test -z "$LIBGMAGICK_LIBS" -a ! -z "$LIBMAGICK_LIBS"; then

  echo ""
  echo "You're missing GraphicsMagick (>=1.1.7). krita's GraphicsMagick import/export"
  echo "filter will not be compiled. But ImageMagick was found, which mean that krita"
  echo "will be able to read and write XCF, PSD, GIF, BMP, and many other image formats."
  echo "But the ImageMagick filter is deprecated and we strongly advise you to install"
  echo "GraphicsMagick either from your distribution or from http://www.graphicsmagick.org/"
fi
if test -z "$LIBJPEG" -o -z "$LIBEXIF"; then
  echo ""
  echo "You're missing libjpeg or libexif 0.6.12 or later (binaries and/or headers)."
  echo "krita won't be able to import/export jpeg"
  echo ""
  all_tests=bad
fi
# ImageMagick is deprecated, we don't care anymore if it's not here
#
#if test -z "$LIBMAGICK_LIBS"; then
#  echo ""
#  echo "You're missing ImageMagick (>=6.1.0). krita's ImageMagick import/export"
#  echo "filter will not be compiled. You can download ImageMagick from"
#  echo "http://www.imagemagick.org/. The ImageMagick filter allows krita to"
#  echo "read and write XCF, PSD, GIF, BMP, and many other image formats."
#  echo ""
#  echo "If you have problems compiling ImageMagick, please try configuring it using"
#  echo "the --without-magick-plus-plus flag, the C++ API isn't needed for krita."
#  echo ""
#  all_tests=bad
#fi

if test -z "$OPENEXR_LIBS"; then
  echo ""
  echo "You're missing the OpenEXR library. Krita's OpenEXR import/export filter will "
  echo "not be compiled. You can download OpenEXR from http://www.openexr.com or "
  echo "install it from an appropriate binary package."
  echo ""
  all_tests=bad
fi

if test -z "$POPPLER_LIBS"; then
  echo ""
  echo "You're missing libpoppler 0.5.1 or later (binaries and/or headers)."
  echo "krita won't be able to import pdf"
  echo "note that the qt-binding of libpoppler is required"
  echo ""
fi
if test -z "$LIBPNG";  then
  echo ""
  echo "You're missing libpng (binaries and/or headers), krita won't be able"
  echo "to import/export png"
  echo ""
  all_tests=bad
fi

if test -z "$LIBTIFF"; then
  echo ""
  echo "You're missing libtiff (binaries and/or headers), krita won't be able"
  echo "to import/export tiff"
  echo ""
  all_tests=bad
fi
if test -z "$LIBWV2_LIBS"; then
  echo ""
  echo "You're missing libwv2 0.1.9 or newer. KWord's MS Word filter will not be"
  echo "compiled. You can download wv2 using anonymous CVS from the Sourceforge"
  echo "repository (http://sourceforge.net/cvs/?group_id=10501) or get a"
  echo "tarball at http://sourceforge.net/projects/wvware/"
#  echo "The MS Word filter won't be compiled due to experimental changes."
  echo ""
  all_tests=bad
fi
if test -z "$LIBWPD_LIBS"; then
  echo ""
  echo "You're missing libwpd 0.8 or newer. KWord's WordPerfect import filter will "
  echo "not be compiled. You can download libwpd from http://libwpd.sf.net or "
  echo "install it from appropriate binary package."
  echo ""
  all_tests=bad
fi
if test -z "$LIBXML_LIBS"; then
  echo ""
  echo "You're missing libxml2 (at least version 2.4.8)."
  echo "The XSLT filters will not be compiled."
  echo "Please download libxml2 from http://xmlsoft.org ."
  echo ""
  all_tests=bad
fi

if test -z "$LIBXSLT_LIBS"; then
  echo ""
  echo "You're missing libxslt (at least version 1.0.7)."
  echo "The XSLT filters will not be compiled."
# TODO: URL is not exacly right anymore
  echo "Please download libxml2 from http://xmlsoft.org ."
  echo ""
  all_tests=bad
fi

if test -z "$LIBART_LIBS"; then
  echo ""
  echo "You're missing libart 2.3.8. karbon will not be compiled."
  echo "You can download libart from"
  echo "http://svg.kde.org/download.html"
  echo ""
  all_tests=bad
else
  if test -z "$LIBFONTCONFIG_LIBS"; then
    echo ""
    echo "You're missing fontconfig 1.0.1 or newer. karbon will not have text support."
    echo "You can download fontconfig from http://fontconfig.org/"
    echo ""
    all_tests=bad
  fi

  if test -z "$LIBFREETYPE_LIBS"; then
    echo ""
    echo "You're missing libfreetype 5.0 or newer. karbon will not have text support."
    echo "You can download libfreetype from http://www.freetype.org/"
    echo ""
    all_tests=bad
  fi
fi
if test -z "$MYSQL_INC" -o -z "$MYSQL_LIBS"; then

  echo "----------------------------------------------------------------------"

  echo "  + The MySQL development files were not found."
  cat <<EOS
  These are required for MySQL support in Kexi.

  If you want MySQL support in Kexi, you need to install the MySQL development
  files, ensure that mysql-config is in your path,  and run this configure script
  again, and finally run make; make install.  
  If you don't need MySQL support, you can simply run make; make install now.
EOS
   all_tests=bad
fi

if test -z "$PG_INCDIR" -o -z "$PG_LIBDIR" -o \
        -z "$PQXX_INCDIR" -o -z "$PQXX_LIBDIR"; then

  echo "----------------------------------------------------------------------"

# LIBPQ messages
  if test -z "$PG_INCDIR"; then
    echo "  + The PostgreSQL C-API (libpq) headers were not found."
  fi

  if test -z "$PG_LIBDIR"; then
    echo "  + The PostgreSQL C-API (libpq) libraries were not found."
  fi

  if test -z "$PG_INCDIR" -a -z "$PG_LIBDIR" ; then
      pglib_parts_missing="HEADER or the libpq LIBRARY"
  elif test -z "$PG_INCDIR" ; then
      pglib_parts_missing="HEADER"
  elif test -z "$PG_LIBDIR" ; then
      pglib_parts_missing="LIBRARY"
  fi

  if test -z "$PG_INCDIR" -o -z "$PG_LIBDIR" ; then
    cat <<EOS
    Could not find the libpq $pglib_parts_missing files.
    These are required by the libpqxx C++ library, which is used by
    Kexi's PostgreSQL drivers.

    The PostgreSQL C-API usually ship with PostgreSQL, but if you've
    installed from a distros package then these files may be part of
    a package called postgresql-devel or libpq-devel"

EOS
  fi

# LIBPQXX messages
  if test -z "$PQXX_INCDIR"; then
    echo "  + The PostgreSQL C++ API (libpqxx) headers were not found."
  fi

  if test -z "$PQXX_LIBDIR"; then
    echo "  + The PostgreSQL C++ API (libpqxx) shared libraries were not found."
  fi

  if test -z "$PQXX_INCDIR" -a -z "$PQXX_LIBDIR" ; then
      pqxx_parts_missing="HEADER or the libpqxx LIBRARY"
  elif test -z "$PQXX_INCDIR" ; then
      pqxx_parts_missing="HEADER"
  elif test -z "$PQXX_LIBDIR" ; then
      pqxx_parts_missing="LIBRARY"
  fi

  if test -z "$PQXX_INCDIR" -o -z "$PQXX_LIBDIR" ; then
  cat <<EOS
    Could not find the libpqxx $pqxx_parts_missing files.
    These are required by Kexi's PostgreSQL drivers.

    Note: Kexi requires the SHARED libpqxx.so library files.
          If you build pqxx library on your own, don't forget to use the
          --enable-shared option when you run libpqxx's configure script.
          This is necessary to compile the SHARED .so library, and
          not the STATIC libpqxx.a.

    The PostgreSQL C++ API can be downloaded from pqxx.tk or
    http://gborg.postgresql.org/project/libpqxx/projdisplay.php
    Grab the latest version (>=2)

EOS
  fi

# SUMMARY messages
  cat <<EOS
  These warnings are not critical, but without installing the files
  listed above Kexi will be compiled without PostgreSQL support.

  If you want PostgreSQL support in Kexi, you need to install the files
  listed above, then run this configure script again, and finally run
  make; make install.  If you don't, simply run make; make install now.
EOS

  all_tests=bad
  echo "----------------------------------------------------------------------"
fi
if test -z "$LCMS_LIBS"; then
  echo ""
  echo "LittleCMS is missing, Krita will not be built."
  echo ""
  echo "If you want to compile Krita you should install:"
  echo "  * lcms 1.15 or newer (http://www.littlecms.com/)"
  echo ""
  all_tests=bad
else
  if test -z "$GLLIB"; then
    echo ""
    echo "You're missing OpenGL libraries. krita will"
    echo "not be able to use OpenGL for hardware"
    echo "accelerated rendering."
    echo ""
  fi
fi


if test -z "$LIBKSPELL2"; then
   echo ""
   echo "You don't use kdelibs CVS (kspell2 not found). Spell-checking disabled."
   echo ""
   all_tests=bad
fi
if test -z "$RUBY_LIBDIR" -a "x$compile_kross" = "xyes" ; then
  echo ""
  echo "Ruby development files were not found, or Ruby <= 1.8.1 was found,"
  echo "Ruby scripting support for KOffice will not be built. If you don't"
  echo "need Ruby scripting, you can ignore this message."
  echo ""
fi

if test -z "$LIBPYTHON" -a -z "$PYTHONINC" -a $"x$compile_kross" = "xyes"; then
  echo ""
  echo "Python developement files were not found, Python scripting support for"
  echo "KOffice will not be built. If you don't need Python scripting, you"
  echo "can ignore this message"
  echo ""
fi

# Check if KDE_SET_PREFIX was called, and --prefix was passed to configure
if test -n "$kde_libs_prefix" -a -n "$given_prefix"; then
  # And if so, warn when they don't match
  if test "$kde_libs_prefix" != "$given_prefix"; then
    # And if kde doesn't know about the prefix yet
    echo ":"`kde-config --path exe`":" | grep ":$given_prefix/bin/:" 2>&1 >/dev/null
    if test $? -ne 0; then
      echo ""
      echo "Warning: you chose to install this package in $given_prefix,"
      echo "but KDE was found in $kde_libs_prefix."
      echo "For this to work, you will need to tell KDE about the new prefix, by ensuring"
      echo "that KDEDIRS contains it, e.g. export KDEDIRS=$given_prefix:$kde_libs_prefix"
      echo "Then restart KDE."
      echo ""
    fi
  fi
fi

if test x$GXX = "xyes" -a x$kde_have_gcc_visibility = "xyes" -a x$kde_cv_val_qt_gcc_visibility_patched = "xno"; then
  echo ""
  echo "Your GCC supports symbol visibility, but the patch for Qt supporting visibility"
  echo "was not included. Therefore, GCC symbol visibility support remains disabled."
  echo ""
  echo "For better performance, consider including the Qt visibility supporting patch"
  echo "located at:"
  echo ""
  echo "http://bugs.kde.org/show_bug.cgi?id=109386"
  echo ""
  echo "and recompile all of Qt and KDE. Note, this is entirely optional and"
  echo "everything will continue to work just fine without it."
  echo ""
fi

if test "$all_tests" = "bad"; then
  if test ! "$cache_file" = "/dev/null"; then
    echo ""
    echo "Please remove the file $cache_file after changing your setup"
    echo "so that configure will find the changes next time."
    echo ""
  fi
else
  echo ""
  echo "Good - your configure finished. Start make now"
  echo ""
fi