summaryrefslogtreecommitdiff
path: root/patches/dev300/apply
blob: bbf2ee0db47a066a5d48272e226d340392ef0cb8 (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
2667
2668
2669
2670
2671
2672
2673
2674
2675
2676
2677
2678
2679
2680
2681
2682
2683
2684
2685
2686
2687
2688
2689
2690
2691
2692
2693
2694
2695
2696
2697
2698
2699
2700
2701
2702
2703
2704
2705
2706
2707
2708
2709
2710
2711
2712
2713
2714
2715
2716
2717
2718
2719
2720
2721
2722
2723
2724
2725
2726
2727
2728
2729
2730
2731
2732
2733
2734
2735
2736
2737
2738
2739
2740
2741
2742
2743
2744
2745
2746
2747
2748
2749
2750
2751
2752
2753
2754
2755
2756
2757
2758
2759
2760
2761
2762
2763
2764
2765
2766
2767
2768
2769
2770
2771
2772
2773
2774
2775
2776
2777
2778
2779
2780
2781
2782

#
# The format of this file is:
#

# -------- Options --------

PATCHPATH=.:../evo2:../vba:../mono:../64bit:../cairo:../gstreamer:../ooxml:../postgresql:../emf+:../unittesting:../scsolver

OLDEST_SUPPORTED=ooo300-m12

# -------- Functional sub-sets --------
Common : PreprocessPatches, BuildBits, TemporaryHacks, FixesNotForUpstream, \
	 Fixes, DefaultSettings, Features, VCL, Misc, \
	 Icons, Branding, CalcFixes, WriterFixes, EasterEgg, \
	 GStreamer, CWSBackports, WPG, Cleanups, WMF, GnomeVFS, WebDAV, \
	 Layout, VBABits, VBAObjects, CalcErrors, Store, CJK, GCJ, Lwp, \
	 OOXML, SVGImport, AutoCorrectCapsLock, UnitTesting, \
	 CalcDataPilotDrillDown, PopupRemoval, LinkWarningDlg, RadioButtons, InternalCairo, \
	 FedoraCommonFixes, InternalMesaHeaders, LayoutDialogs

LinuxCommon : Common, Defaults, TangoIcons, FontConfigTemporaryHacks, \
	      FedoraLinuxOnlyFixes, LinuxOnly, SystemBits, \
	      msaccess, OpenGLTransitions, \
	      Fpickers, Mono, AddressBooks, QuickStarter
MacOSXCommon : Common, Defaults, TangoIcons, SystemBits
Win32Common : Common, Defaults, TangoIcons, \
	      Win32Only, NotDebian
# Experimental sections
Experimental: VBAUntested, ArkOnlyExperimental, SharedWorksheets, \
	      UnUsedButNotYetRemovedFromSVN, WebDAVUpstream, \
	      PostgreSQL, SELinux, VOSremoval, Glib2, \
	      UnitBootstrap, RadioButtons, UnstableLibwpd, WWInProgress, KDE4, \
	      CalcExperimental
DebianLooseSections: DebianBaseNoHelpContent
# Optional sections
Optional : DejaVuFonts, NovellOnlyExtensionFixes, Win32OnlyExtensionFixes, Linux32OnlyExtensionFixes
# Binfilter patches: a special distro; applied only when building with binfilter
Binfilter : BFBuildBits, BFFixes, BFShrink
# System patches: a special distro; applied only when building with the system tarball unpacked
System : SystemBuildBits
# Sdk patches: a special distro; applied only when building with the sdk tarball unpacked
Sdk : SdkFixes
# special fragmented build patch distro
Piece : PieceBits
#Localize
Localize : LocalizeLayout, LocalizeFixes
# patches touching swext which is not in the OpenOffice2 alias yet.
# FIXME: Get this cleaned up
Extensions : ExtensionFixes
UnstableWP : UnstableLibwpd

# Novell
NovellBase : LinuxCommon, NovellOnly, NovellOnlyUnix, \
	     NotDebian, Lockdown, Split, Shrink, \
	     CustomUserConfig, CalcSolver
SUSE-9.1  : NovellBase
SUSE-9.2  : NovellBase
SUSE-9.3  : NovellBase
SUSE-10.0 : NovellBase
SUSE-10.1 : NovellBase, BerkeleyDB43, BrokenSystemNSS, Java14, GTK28
SUSE-10.2 : NovellBase, BerkeleyDB43, EMFPlus, Java14
SUSE-10.3 : NovellBase, BerkeleyDB43, EMFPlus, Java14
SUSE-11.0 : NovellBase, BerkeleyDB43, Gcc43, EMFPlus, CairoFonts
SUSE      : NovellBase, BerkeleyDB43, Gcc43, EMFPlus, CairoFonts
SUSE-reduced:NovellBase,BerkeleyDB43, ReducedDefaults
# Debian
DebianBase : LinuxCommon, DebianBaseOnly, Lockdown, GCCSTL, BerkeleyDB43, Split, PostgreSQL
Debian : DebianBase, DebianOnly, DebianSidOnly, Debian32Only, CairoFonts, Gcc43
DebianEtch : DebianBase, DebianOnly, DebianEtchOnly, Debian32Only
# Ubuntu
UbuntuBased : DebianBase, UbuntuOnly
UbuntuDapper : UbuntuBased, UbuntuDapperOnly, Debian32Only
UbuntuDapper64 : UbuntuBased, UbuntuDapperOnly
UbuntuGutsy : UbuntuBased, CairoFonts, UbuntuGutsyOnly, Debian32Only
UbuntuGutsy64 : UbuntuBased, CairoFonts, UbuntuGutsyOnly
UbuntuHardy : UbuntuBased, CairoFonts, UbuntuHardyOnly, Debian32Only
UbuntuHardy64 : UbuntuBased, CairoFonts, UbuntuHardyOnly
UbuntuIntrepid : UbuntuBased, CairoFonts, UbuntuIntrepidOnly, Debian32Only, Gcc43
UbuntuIntrepid64 : UbuntuBased, CairoFonts, UbuntuIntrepidOnly, Gcc43
UbuntuJaunty : UbuntuBased, CairoFonts, UbuntuJauntyOnly, Debian32Only, Gcc43
UbuntuJaunty64 : UbuntuBased, CairoFonts, UbuntuJauntyOnly, Gcc43
UbuntuL10n : UbuntuBased, UbuntuL10nOnly, Debian32Only
# a copy of the UbuntuDapper* lines ("Ubuntu: UbuntuDapper" doesn't work)
Ubuntu : UbuntuBased, UbuntuDapperOnly,  Debian32Only
Ubuntu64 : UbuntuBased, UbuntuDapperOnly
# DroplineGNOME
DroplineGNOME : LinuxCommon, DroplineGNOMEOnly, NotDebian, Mono, msaccess
DroplineGNOME64 : LinuxCommon, DroplineGNOMEOnly, NotDebian, Mono, msaccess
# Ark Linux
Ark: LinuxCommon, NotDebian, ArkOnly, BerkeleyDB43, Gcc43, KDE4
# www.pld-linux.org
PLDBase: LinuxCommon, NotDebian, CairoFonts, GCCSTL, Gcc43, PLDOnly
PLD: PLDBase
PLD64: PLDBase
# Mandriva Linux
MandrivaBase: CairoFonts, MandrivaOnly, LinuxCommon, MandrivaOnlyUnix, LockDown, Split, NotDebian
Mandriva: MandrivaBase
Mandriva64: MandrivaBase
# Frugalware Linux
Frugalware: LinuxCommon, GnomeVFS, GlobalDesktopFiles, NonArkCommon, NoRpath, NovellOnly, NovellOnlyUnix, NotDebian, FrugalwareOnly, Gcc43
# openmamba
openmamba: LinuxCommon, GlobalDesktopFiles
#Gentoo
GentooBase : LinuxCommon, GentooOnly, NotDebian, Lockdown, CairoFonts, BerkeleyDB43, Gcc43, IntegrateExtensions
GentooUnstable: GentooBase, GentooExperimental
Gentoo : GentooBase
Gentoo64: GentooBase
# rPath Linux
rPathCommon: LinuxCommon, NotDebian, Lockdown, BerkeleyDB43, CairoFonts
rpl2: rPathCommon
rpl2-64: rPathCommon
# Win32
Win32 : Win32Common
# translate.org.za
translate-org-za-linux: translate-org-za-common, LinuxCommon, Common, Lockdown
translate-org-za-win32: translate-org-za-common, Win32Common, Common
NovellLikeWin32: Win32Common, NovellOnly, NovellOnlyWin32, Lockdown, Fpickers, CustomUserConfig, CalcSolver, DejaVuFonts, IntegrateExtensions
# Novell
NovellWin32: NovellLikeWin32
NovellWin32ISO: NovellLikeWin32
# go-oo.org Win32
GoOoWin32: NovellLikeWin32
# Mac OS X
MacOSX : MacOSXCommon, MacOSXOnly
GoOoMacOSX : MacOSXCommon, MacOSXOnly, NovellOnly, NovellOnlyExtensionFixes, CustomUserConfig, CalcSolver, IntegrateExtensions
# Pardus
Pardus2007: PardusOnly, LinuxCommon, NotDebian
Pardus2008: PardusOnly, LinuxCommon, NotDebian, Gcc43
# Solaris
Solaris: NovellBase, NovellOnlyExtensionFixes, IntegrateExtensions
# Universal Upstream-like packages
GoOoLinux: NovellBase, NovellOnlyExtensionFixes, IntegrateExtensions
# OxygenOffice Professional
OxygenOfficeLinuxCommon :	Common, EMFPlus, LayoutDialogs, FontConfigTemporaryHacks, \
	      			LinuxOnly, SystemBits, \
	      			msaccess, OpenGLTransitions, \
	      			Fpickers, Mono, AddressBooks, QuickStarter, IntegrateExtensions, DejaVuFonts
OxygenOfficeMacOSXCommon :	Common, SystemBits, IntegrateExtensions, DejaVuFonts
OxygenOfficeWin32Common :	Common, Win32Only, NotDebian, IntegrateExtensions, DejaVuFonts

OxygenOfficeLinux:	OxygenOfficeLinuxCommon, OxygenOfficePalettes, OxygenOfficeDefaultSettings, OxygenOfficeExtras
OxygenOfficeWindows:	OxygenOfficeWin32Common, OxygenOfficePalettes, OxygenOfficeDefaultSettings, OxygenOfficeExtras
# FSFhu
FSFhuWindows : Win32Common, NovellOnly, Lockdown, Fpickers, CustomUserConfig, CalcSolver, DejaVuFonts, IntegrateExtensions
FSFhuLinux : NovellBase, Gcc43, EMFPlus, CairoFonts, DejaVuFonts, IntegrateExtensions
FSFhuMacOSX : MacOSXCommon, MacOSXOnly, NovellOnly, NovellOnlyExtensionFixes, CustomUserConfig, CalcSolver, IntegrateExtensions
# Plain build; just with base build fixes
PlainLinux: PlainBuildFixes

# -------- [ Tag [ >= <tag> etc. ], ] patch sets --------

[ PreprocessPatches ]
# Collection of patches that must be applied before all the other patches.

# Create a safe hash number interval for ooo-build only resources.
sc-hrc-ooo-build-resources.diff, kohei


[ LinuxOnly ]
# Don't stat tons of config files we don't need to read on startup
speed-configmgr.diff, i#56783, michael

# add accelerator to the OK and Cancel buttons.
ok-cancel-btn-add-accel.diff, kohei

[ TemporaryHacks ]

# Detect MSVS9 if available
msvs9-temporary-fix.diff, i#88945, i#93332, tml

# add idl target to toplevel makefile
makefile-idl-build.diff, noelpwer

# Pagein types.rdb / services.rdb & the ui files
speed-pagein.diff, i#57679, michael

# Use d_type entry when possible to get file type instead of using stat
speed-getfilestatus-dtype.diff, rodo, i#63159

# Replace hunspell linked list implementation with hashed implementation
# Reduces hunspell mem usage by more than half (3.7M to ~680K)
# (even bigger savings on 64bit, and with dicts like the Czech one)
#FIXME oog680: hunspell-hashify.diff, i#50842, dkeskar/jholesov

# add no-crashreporter sections to testtool default config;
# also guess office path from testtool.bin path i#FIXME?
testtool-more-defaults.diff, martink

#Fix plus/minus in to each heading in Navigator
plus-minus-sw-navigator.diff, i#64886, n#129410, jianhua
plus-minus-sw-navigator2.diff, i#64886, n#129410, jianhua

#set default varchar lenght to 100.
dbaccess-default-varchar-lenght.diff, i#62664, jianhua
#make oovbaapi as a link
linkoo-type.diff
#for selection delete crash
selection-crash-svx-svdmrkv.diff, i#76084, jianhua

#Improve the behavior of input field dialog.
#FIXME sw-input-field-dialog.diff, Zhang Yun

# Improve the behavior of input fields inline editing.
# sw-input-field-inline-edit.diff, Zhang Yun # removed since it causes some
# crashes with undo/redo

#realize a new feature named as Show Data Form in OpenOffice
sc-dataform-sc.diff, Amelia Wang
sc-dataform-officecfg.diff, kohei

#realize extra piece of new feature named as Show Data Form about vba
sc-dataform-suppor-vba.diff, Amelia Wang

# workaround for a crash in the help on amd64.
sal-doublefree.diff, i#67740, mklose

# hack for n#240776
sw-graphic-save-problem.diff, flr, n#240776

# accelerate intern by not using stl
sal-strintern-speed.diff, i#78496, michael
sal-strintern-speed-fix.diff, i#78496, michael

# temporary hack to avoid the warning about missing return values in gcc4
# http://gcc.gnu.org/bugzilla/show_bug.cgi?id=20624
#warning-return-values-stlport.diff, jholesov

# Fix linkoo, the ultimate hacker tool
fix-linkoo.diff, i#83548, jholesov

# fix a11y bug
fix-gtk-a11y.diff, i#98533, n#457611, michael

# Update linkoo for dev300 TODO file upstream
linkoo-dev300.diff, jholesov

# temporary compile sc/source/core/tool with -O1 with gcc-4.3 on x86_64
# until the internal compiler error is fixed
# buildfix-gcc-4.3-compiler-error.diff, n#370383, pmladek

# Make the historically very verbose build quieter, helps us see warnings.
quiet-build.diff, i#84497, michael

# further performance tweaks to configmgr
speed-configmgr-misc.diff, i#84751, michael

# gcc OOMs here otherwise (x86_64)
writerfilter-qnametostr-NOOPTFILES.diff

# default to DEV300 in cws-commit-patch
cws-commit-patch-default-dev300.diff, i#87431, jholesov

# avoid crash when calling the mono testcase from ooo-build/test/mono
# the object "this" was destroyed after calling ScTableSheetObj::getImplementation
# this hack make sure that the object lives a bit longer
sc-cellsuno-avoid-early-destruction.diff, i#90076, pmladek

# fix build when PATH is set to something like /bin:"C:\blah\bleh":/ugh
# (happened to me with DirectX SDK)
buildfix-directx-path.diff, i#93333, jholesov

# workaround for building with KDE when both KDE 3.5 and 4.1 are present
solenv-workaround-for-the-kde-mess.diff, i#95552, aprosky

[ CJK ]
#set default CJK font fontsize as 10.5pt
sw-default-cjk-fontsize.diff i#72010, jianhua

# add a new unit 'character unit'
cjk-character-units-ui.diff, Amelia Wang
cjk-character-units-imp.diff, Amelia Wang
cjk-character-units-rulers-sync-with-pggrid-fix.diff, Amelia Wang
cjk-character-units-fix.diff, i#356101, Amelia Wang
cjk-character-units-fix-376788.diff, i#376788, Amelia Wang
cjk-character-units-in-pggrid-fix.diff, Amelia Wang

# insert Chinese forbidden characters at start or end of line into i18npool module
cjk-insert-forbidden-characters-into-i18npool.diff, Amelia Wang

#[ CJKTemporaryHacks ]
# the following patch is disabled temporary.
# default value of tab stop for Chinese version
#default-tabstop-Chinese.diff, Fong Lin

# default value of automatic text indent for Chinese version
#sw-auto-text-indent-zh.diff, Fong Lin

# for mixed font set
#FIXME src680: font_list_box_cjk.diff, i#73003, Fong Lin

[ CWSBackports ]
# MS Works import filter (following patches depend on each other) Fridrich
wpsimport-config_office.diff
wpsimport-filter.diff
wpsimport-scp2.diff

wpsimport-writerperfect.diff
libwps.diff

[ CWSBackports == ooo300-m14 ]

# "soffice" now being binary instead of shellscript
cws-hro41.diff, i#97491


[ CWSBackports ]
#basic runtime fixes
basic-add-missing-includes-after-cws-npower10.diff

cws-pflin10.diff
#api changes
cws-npower11.diff

# fix smoketest for non-epm builds
cws-smoketest21.diff

# not for upstreaming: don't disable the entire visibility, just
# the -fvisibility-inlines-hidden
buildfix-x86-64-visibility-workaround.diff

[ WPG ]
# libwpg-based import filter for WordPerfect Graphics
libwpg.diff
wpgimporter.diff

[ GCJ ]
# gij/libgcj paths...
jvmfwk-gij-paths.diff, rengelha

# Fix up Javac error, known to happen with gcj, probably happens for other
# JDKs too
buildfix-qadevOOo-java-encoding.diff, brosenk

# Fixes that were not accepted up-stream, but are still useful
[ FixesNotForUpstream ]
# Make debugging nicer under unix
debug-bits.diff, i#35336, jholesov
# Make the scroll-wheel / page popup more sane
gui-sw-scroll.diff, i#20826, michael

# make menu layout prettier
vcl-menu-fixes.diff, i#67123, michael

# Tell the desktop we support the VFS
uses-vfs.diff, i#43504, michael

[ FixesNotForUpstream ]
redirect-extensions.diff


[ FixesNotForUpstream ]
#upload a new libwpd + fix an exception with condensed paragraphs
libwpd.diff, fridrich
writerperfect-nocondensedparagraphs.diff, fridrich

offapi-typecheck-whitelist.diff, thorsten

# ensure macros are imported ( not as comments ) for calc
vba-default-enable-calcmacros.diff, noelpwer

[ ExtensionFixes ]
# no bogus license question when registering these extensions
#solenv-no-extension-license.diff
reportdesigner-no-license.diff
presentation-minimizer-no-license.diff
presenterscreen-no-license.diff
# extensions: fix & unbundle system java
extensions-system-java.diff, hmth
# Fixing build breake in apache-common module when you use UTF-8 based locale in the build system
apache-commons-build-fix-invalid-chars.diff, kami
pdfimport-no-license.diff
wiki-publisher-no-license.diff
build-java-target-extensions.diff, i#93115, pmladek

[ NovellOnlyExtensionFixes ]
# allow build with ant-1.6
# IMPORTANT: the second part of the patch is build-ant-1.6.diff
build-ant-1.6-swext.diff, i#90830, pmladek

[ NovellOnly ]
# allow build with ant-1.6
# IMPORTANT: the second part of the patch is build-ant-1.6-swext.diff
build-ant-1.6.diff, i#90830, pmladek

[ Fixes ]
# more intelligent nsplugin seeking
nsplugin-path.diff, i#49590, michael

# printf argumetns cleanup
buildfix-fmtargs.diff, cabral

# fix crashing tables on docs - i#99564,  mdv#48629
sw-table-crash-fix-i99564.diff, cabral

# some versions of neon report DAV:Collection instead of Collection
# thanks Caolan for the fix
ucb-neon-different-name.diff, i#98288, pmladek

# sd printing fixes
printing-bugfix-254573.diff, n#254573, rodo

# use basic (advanced) shapes for rectangle/ellipse on draw/impress's toolbars. make shapes wrap words by default, n#171052, rodo
sd-toolbar-advanced-shapes.diff, n#171052, rodo
svx-shapes-default-word-wrap-enable.diff, n#171052, rodo
svx-honour-customshape-capabilities.diff, n#395372, thorsten

# fix check box rendering issue - n#80447
check-buttons-rendering-fix.diff, michael

# disable font management dialog in padmin
padmin-nofontconfig.diff, michael

# Fix for n#113235
wizards-source-importwizard-filesmodul-xba.diff, i#56633, noelpwer

# do not shrink a string in some localizations;
# the width was too small without any reason
wizards-form-fit-french-localization.diff, n#340679, i#89475, pmladek

# testtool doesn't like oobuild basic compatability defaults
# ooo-build only fix n#145906#
automation-testtool-oobuildfix.diff, n#145906, noelpwer

# fixes some .cfg files in helpcontent2/source/auxiliary to use right
# lang code instead of en-US
helpcontent2-auxiliary-cfg.diff, pmladek

# more secure permissions for the user directory by default
desktop-safer-user-dir-perm.diff, i#62858, pmladek

# use -Wl,--as-needed, save 1% of relocations
link-as-needed.diff, i#89511, pmladek

# Added support for "application/octet-stream" mime type in package manager
desktop-application-octet-stream-mime-type.diff, i#73301, flr

# find locked certs, fix by Jacob Berkman <jberkman@novell.com>
libxmlsec-findcerts.diff, i#76870, pmladek
# allow other types of signing certs, fix by Jacob Berkman <jberkman@novell.com>
xmlsecurity-verify-usages.diff, i#76871, pmladek

mailmerge-ssl-ehlo.diff, i#76655, deb#5074448

# fixes description of the RIGH JOIN selection
dbaccess-righ-join-description.diff, bnc#431031, i#97026, pmladek

# installing a new font may invalidate m_pDefConfig
ooo94069.psprint.defconfig_changes.diff, i#94069, cmc

[ LinuxOnly ]
# fix that allows OOo to work with a standard (unpatched) libjpeg,
jpegc.c.diff, i#80674, n#272574, flr

[ Fixes < ooo300-m13 ]
# handle hyperlinks to files better
sw-hyperlinks-relative.diff, n#405712, i#91522, jholesov

[ Fixes ]
# process relative SMB paths (in hyperlinks) correctly
tools-urlobj-smb-scheme-patch.diff, n#261623, flr
samba-hyperlinks-sc-sd.diff, n#382718, jholesov
tools-qa-urlobj-unittest.diff, n#261623, flr

# writer doc margin text rotates when opened in word
svx-text-rotation-fix.diff, n#404221, flr

# check real help path defined in registry instead of the $(instpath)/help
sfx-check-real-help-path.diff, i#81139, pmladek

# display help correctly even when the files are symlinks
xmlhelp-work-with-symlinks.diff, i#81138, pmladek

#fix saving ( as doc format ) word documents with embedded word
#document ( containing macros ) crashing
save-doc-withembedded-doc-with-vba-crash.diff, n#339946, i#83632, noelpwer

[ Fixes < ooo300-m13 ]
# prevent some array out of bounds in ww8 exporter
sw-source-filter-ww8-wrtw8nds-out_of_bounds.diff, n#391197, i#91396, fridrich

[ Fixes ]
# adds fixes for printing transparent content
vcl-transparent-printing.diff, i#88536, thorsten

localize-pl-cygwin-paths.diff, tml

# import/export form control's visibility
form-control-visibility.diff, i#88878, jianhua

# import tooltip for userforms
import-controls-tooltip.diff, i#90124, noelpwer

[ Fixes < ooo300-m15 ]
# fix gengal for three layer install
gengal-three-layer-install-svx.diff, i#89713, jannieuw
gengal-three-layer-install-scp2.diff, i#89713, jannieuw

[ Fixes ]
# initialize the default locale in the resource manager
# for example, it fixes unopkg to do not show random localization
tools-resmgr-set-defaultlocale.diff, n#399101, i#90820, pmladek

# Allow some technically illegal pathname components on Win32
# (directories with trailing spaces or periods) because some SMB
# servers like Netware (and Samba, if mangled names = No) do serve
# such directories if they exist on the server's host system.
win32-invalid-names.diff, n#277603, tml

math-draw-generic-name.diff, i#93909, rengelha

# fix the GNOME quickstarter to work again
sfx2-shutdownicon-3layer.diff, bnc#434778, i#95223, pmladek

# fix to work with groupwise
# unset the LD_LIBRARY_PATH to do not confuse system mail clients with
# OOo and Java libraries
shell-senddoc-library-path.diff, i#95873, pmladek

pythonloader-no-DEBUG.diff, i#90653

# fix truncated localized text on sslwarndlg in uui module
i97329-sslwarndlg-truncation.diff, i#97329, atimar

# fix truncated localized text on several dialogs 
# see http://wiki.services.openoffice.org/wiki/Hu.openoffice.org/QA_Screenshots
padmin-dialog-resize.diff, i#98164, atimar
sw-dialogs-resize.diff, i#98164, atimar
svx-dialogs-resize.diff, i#98164, atimar


# fix crash on PDF export in page preview
ooo96167.sw.pdfexportcrash.diff, i#96167, challs

[ Fixes < ooo300-m14 ]
i95118.diff, i#93994, i#95118

[ SELinux ]
# make OOo work under SELinux
ooo80816.selinux.bridges.diff, i#80816


[ Win32Only ]

accept-underscores-in-hostnames.diff, n#182422, tml


[ WebDAVUpstream ]
SectionOwner => jholesov
SectionIssue => i#29152
# WebDAV locking implementation - the up-stream version
cws-webdavandgvfslocking1-comphelper.diff
cws-webdavandgvfslocking1-officecfg.diff
cws-webdavandgvfslocking1-sal.diff
cws-webdavandgvfslocking1-sc.diff
cws-webdavandgvfslocking1-sfx2.diff
cws-webdavandgvfslocking1-tools.diff
cws-webdavandgvfslocking1-ucb.diff
cws-webdavandgvfslocking1-unotools.diff

[ WebDAV > ooo300-m13 ]
SectionOwner => jholesov
SectionIssue => i#29152
# This change breaks the webdav implementation - too late now to adapt
# it to the new behavior, so let's revert it...
# Upstream has implemented it in iz#96938, CWS mav45
revert-change-of-handling-temp-files.diff, bnc#464568, jholesov
# WebDAV locking implementation - the original version
# This is forward-ported from ooo-build-2-4-1, because the version for
# up-streaming still does not work as expected :-(
webdav-locking-from-ooo-build-2-4-1.diff

[ WebDAV == ooo300-m13 ]
SectionOwner => jholesov
SectionIssue => i#29152
# WebDAV locking implementation - the original version
# This is forward-ported from ooo-build-2-4-1, because the version for
# up-streaming still does not work as expected :-(
webdav-locking-from-ooo-build-2-4-1-m13.diff

[ WebDAV <= ooo300-m12 ]
SectionOwner => jholesov
SectionIssue => i#29152
# WebDAV locking implementation - the original version
# This is forward-ported from ooo-build-2-4-1, because the version for
# up-streaming still does not work as expected :-(
webdav-locking-from-ooo-build-2-4-1-m12.diff

[ WebDAV ]
SectionOwner => jholesov
SectionIssue => i#29152
# fix saving files on Novell teaming via WebDaV
webdav-locking-local-temp-file.diff, bnc#440514, jholesov


[ GnomeVFS ]
# gnome-vfs locking implementation
# it was not committed up-stream yet because up-stream uses so old gnome-vfs
# that it did not even compile :-(
gnome-vfs-locking-config_office.diff, i#91151, jholesov
gnome-vfs-locking-ucb.diff, i#91151, jholesov

# Move gnome-vfs out of the startup sequence, load it only when needed
# (up-stream does not like it, because it adds dependency to VCL in URE)
gnome-vfs-late-init.diff, i#84137, jholesov


[ QuickStarter < ooo300-m14 ]
unxsplash-rework-m13.diff, i#60696, michael/jholesov

[ QuickStarter >= ooo300-m14 ]
unxsplash-rework.diff, i#60696, michael/jholesov

[ QuickStarter ]
# fix the systray quickstarter
sfx2-quickstarter-fix.diff, i#88382, michael

# FIXME: unxsplash-rework needs this function which was removed in m13
# due to being unused. fix properly.
hack-readd-GetStringParam.diff

# handling of osl pipe has changed, see i#84045
unxsplash-new-osl-pipe.diff, i#60696, jholesov

# fix the slot: handling again :-(
unxsplash-new-osl-pipe-slot.diff, i#60696, n#375529, jholesov

# when OOo fails during startup, don't loop endlessly
unxsplash-finish-on-hangup.diff, i#60696, n#357659, jholesov

# the 'three layer OOo' needs rpath
unxsplash-rpath.diff, i#60696, jholesov

# the OSL_PIPE protocol has changed thanks to 3-layer OOo again :-(
unxsplash-3layer.diff, i#60696, jholesov

# fix bitmap reading; the lines are aliased to 4 bytes
unxsplash-bmp-alias.diff, i#60696, jholesov

[ Fixes ]
cwscheckapi-envset.diff, i#95204

[ WriterFixes ]
# Allows to copy/paste html text which is between 2 unknown tags.
sw-html-insert-unknown-tags.diff, i#59064, mloiseleur


[ CalcFixes < ooo300-m14 ]
# Replace usability numb Zoom dialog with a Combo Box
# FIXME: this conflicts with Sun's duplication of this work,
# eg. print preview
zoom-combobox-m13.diff, michael

[ CalcFixes >= ooo300-m14 ]
# Replace usability numb Zoom dialog with a Combo Box
# FIXME: this conflicts with Sun's duplication of this work,
# eg. print preview
zoom-combobox.diff, michael

[ CalcFixes ]
# make some symbols from sc visible when compiling with gcc4, necessary since m121
gcc4-visibility-sc.diff, i#53261, pmladek
# Fix for b.x.c 62193
sc-sheet-double-click-rename.diff, i#4517, kohei
# adds to Autofilter Empty-NonEmpty options bxc #62165
sc-autofilter-empty-nonempty.diff, i#35578, jody
# Improves the standard filter options and menu. bxc #62187 #62495
sc-standard-filter-options.diff, i#35579, michael
# Saves and loads the standard filters in ods
sc-standard-filter-options-ods-hack.diff, i#35579, jonp
# Hides the filtered rows when height of rows are changed bxc #62161
sc-filter-hide-filteredrows.diff, i#35581, jody
# Autofill doesnt fill filtered rows bxc 62499
sc-filters-fill-fix.diff, jody

# Support modification of data source range in DataPilot after table output has
# been generated.
sc-datapilot-dynamic-range.diff, i#23658, kohei

# Provision for data-pilot to give autoformat bxc #62162
#
# Upstream has already rejected this patch, and closed the issue as WONTFIX.
# This patch needs to be revised to use 'DataPilot *' cell styles instead of
# re-using Table AutoFormat, which is fragile and do not always apply
# correctly.
sc-datapilot-autoformat.diff, i#37388, jody

# BXC 62488 : Allows insertion of rows by shifting down
#sc-paste-insert-rows.diff disable...

# Display min password length in dialog BINC 773
sc-save-password-minlength.diff, i#21923, kohei

# Allow dnd in Change record mode for Data source BINC 70845
sc-change-record-dnd.diff, i#44982, jody

# keybindings: <ctrl> +/‑ to insert/delete a complete line in calc (X#62530)
calc-new-acceleration.diff, i#67029, michael

sc-dp-gridlayout.diff, i#68544 n#190970, jody

# Excel compatibility for handling of "string numbers".
sc-string-arg.diff, i#5658, kohei

# Fix for the above string number patch, for cases where a formula cell is
# being referenced by the origin cell.
sc-string-arg-ref-formula-cell.diff, n#391330, kohei

# Fix an error in presence of string literals in COUNTA.
sc-string-arg-counta-fix.diff, n#446622, kohei

# Print_Area/Print_Titles are only relevant for sheet local names, n#191005
sc-xls-builtin-name-scope.diff, n#191005, n#257422, jonp

# Allow Cols/Rows to be resized even if document is read-only, n#165980, jody
sc-read-only-colrow-resize.diff, jody

# Implement 'Toggle merge & center'
sc-toggle-merge-center.diff, i#67243, jholesov

# Add a 'Natural' variant of sorting, blocking on ODF extension issues
sc-natural-sort.diff, i#26565, kohei

# Include cell format when sorting via sort icon & determine whether the first
# row is the column header (depends on sc-natural-sort.diff patch).
sc-simple-sort-include-format-header.diff, i#13829, kohei

# Paste clipboard when ENTER is pressed, then clear clipboard.
sc-paste-on-enter.diff, n#358545, i#28535, jonp

# Place a border around the Copy source cell(s).
sc-copy-source-border.diff, n#367489, jonp

# Allow 'june-2007' to be properly parsed as June 1 2007 in en-US locales.
sc-date-fix.diff, n#358750, jonp

# For multi-line cell contents, bolding the first line shouldn't bold the
# entire cell.
calc-multiline-pattern-fix.diff, n#359690, n#437137, kohei

# Add extra padding so that the cell height is larger -- increases legibility.
sc-extra-cell-margins.diff, n#361358, jonp

# Change default numbering scheme of x-y plot chart from Row 1, Row2, ... to
# 1, 2, 3... when the X labels are not explicitly given.  This is what Excel
# does.
sc-excel-chart-default-xlabels.diff, n#257079, i#83679, kohei

# Fix autoshape excel hyperlink import OOo ( depends on vba-sc-handleautoshapemacro-import.diff )
vba-sc-autoshapes-hyperlinks.diff, i#66550, noelpwer
# Delete Rows/Delete Columns should remember the content so that the user is
# able to paste it elsewhere (similar to Insert Cut Cells in Excel)
sc-delete-rows-columns-remembers-content.diff, i#71921, jholesov

# load, store and save the sheet protection options from and to an Excel file,
# and use that information to constrain cell cursor movement when the sheet is
# protected.  Also to support encryption on Excel file export.
cws-scsheetprotection02-sc.diff,   i#60305, i#71468, i#84766, kohei  
cws-scsheetprotection02-sfx2.diff, i#60305, i#71468, i#84766, kohei  
cws-scsheetprotection02-svx.diff,  i#60305, i#71468, i#84766, kohei   

# Ensure that Print Preview is consistent with Print output.
sc-print-selected-sheets.diff, n#335684, i#45497, jonp

# After selecting a block, the next movement should move from the *start* of
# the block selection, not the end.
sc-move-from-origin.diff, n#364351, jonp

# Allow biffdump.cxx to compile on 64-bit platforms
sc-biffdump.diff, i#82184, jonp

# Allow to copy-paste on merged cells.
sc-copy-on-merged-cells.diff, i#7500, mloiseleur

# Allow insertion of cell range that cuts across merged areas.
# (temporarily disabled as it causes memory exhaustion problem on
# column insert in empty document).
#sc-insert-inmerged-range.diff, i#8302, mloiseleur

# Allow objects to stay within cells as expected when rows are resized.
sc-object-row-position.diff, i#47088, jonp

# Unit conversion fixes in ScDrawLayer.
sc-drwlayer-units.diff, i#83735, jonp

# Launch navigator when double-clicking the leftmost status area box.
sc-status-bar-launch-navigator.diff, i#49491, kohei

# Support print & page preview for files containing only lines
sc-print-lines.diff, n#351468, i#85076, jonp

# Dynyamically resize filtered range when new data rows are present.
sc-dbrange-dynamic-resize.diff, n#352662, i#85305, kohei

# Have cell background paint over the gridlines.
sc-cellbackground-over-gridlines.diff, n#361360, i#3907, kohei

# Make cell number format toolbar icons togglable & remove the standard format
# button.
sc-cellformat-icon-toggle.diff, n#358548, i#86377, kohei

# overwrite character level font attributes when changing them at cell level.
sc-overwrite-char-font-attrs.diff, n#374580, i#53545, kohei

# ignore manual breaks when the "fit to x pages wide and x pages tall" option
# is used, for Excel interoperability.
sc-fit-to-width-height-skip-breaks.diff, n#404232, n#404563, i#94698, kohei

# reduce the delta value for improved precision.
sc-goalseek-higher-precision.diff, i#92552, kohei

# When filtering by date, strip off the time element from each value.
calc-filter-by-date-strip-time.diff, n#414303, i#94695, kohei

# Don't use pShapeContext after deleting the instance.  Fixes SEGFAULT.
calc-filter-xml-free-context.diff, n#467536, jonp

# modify the autofill behavior to bring it a little closer to Excel's.
calc-autofill-increment-fix.diff, i#5550, kohei

# preserve line breaks when referencing it in formula.
calc-multiline-formula-ref.diff, i#35913, kohei

# fixed chart wizard failure when the formula syntax is set to Excel A1/R1C1.
chart-wizard-xls-address-convention-fix.diff, n#411450, i#94696, kohei

# always store ranges in ODF using Calc A1 formula syntax.
chart-odf-always-calc-a1.diff, n#463305, kohei

# fixed change track export to xls files wrt cell change records.
calc-change-track-xls-export-fix.diff, n#416045, i#93839, kohei

# fix regression that prevents data pilot from being created on a filtered range.
calc-dp-filtered-range-fix.diff, i#94281, kohei

# show COUNT and COUNTA results even if current range contains an error.
calc-status-bar-func.diff, n#430655, i#94618, kohei

# Don't insert drill-down sheet in read-only mode.
calc-dp-no-drilldown-when-readonly.diff, i#90402, kohei

# Fix a typo in chart2 that causes incorrect scaling under certain conditions.
chart-maximum-minimum-typo.diff, i#95714, kohei

# Pivot cache field import fix.
calc-dp-pivotcache-fix.diff, n#433658, i#96326, kohei

calc-named-range-excel-syntax-fix.diff, n#481200, kohei

[ LinuxOnly ]
# accelerate linking, by extreme cunning i#63927
# this is an increasingly marginal win ...
speed-local-link-except.diff, i#63927, michael
speed-local-link.diff, i#63927, michael

# make some symbols from svtools visible for the kde fpicker when compiling with gcc4
# fix: this breaks win32
fpicker-kde-gcc4-visibility.diff, pmladek


[ Misc ]
# Insert symbol defaults to the Symbol font - not a random one
gui-sw-insert-symbol.diff, i#15512, michael
# Address data source ordering x#62860
addrbk-datasrc-ordering.diff, michael
# Changed the default option in the Templates and Documents dialog.
svtools-default-new-document.diff, rodo
# contextual autocomplete
context-autocomplete.diff, i#22961, michael

# Fix casts in db_java_wrap.c
# db4-jni-casting.diff, rengelha - broken with 'split' ...

# Grouping items in the templates dialog n#106603
svtools-unsort-template-dialogentries.diff, rodo

# display command line help '-h' to stdout instead of stderr.
desktop-cmdhelp-stdout.diff, kohei

# always enable file save even when the document is not modified.
sfx2-always-allow-save-document.diff, n#347423, i#5226, kohei

# Update recent files list after save as and open
# see also bugs.debian.org/505879
sfx2-recent-files.diff, i#51154, haggai

# Adjust scroll speed while extending selection beyoud visible sheet area.
scroll-accel-sc.diff, n#375909, i#71362, kohei
scroll-accel-vcl.diff, n#375909, i#71362, kohei

# Clean up code by removing the obsolete SFX_NOTIFY.
remove-sfx-notify-automation.diff, i#89804, kohei
remove-sfx-notify-basic.diff, i#89805, kohei
remove-sfx-notify-chart2.diff, i#89806, kohei
remove-sfx-notify-sc.diff, i#89807, kohei
remove-sfx-notify-sd.diff, i#89809, kohei
remove-sfx-notify-sfx2.diff, i#89810, kohei
remove-sfx-notify-svx.diff, i#89811, kohei
#sfx-broadcaster-hashset-svtools.diff

# reduce mininum password length from 5 to 1.
min-password-length-sfx2.diff, i#85453, kohei

# allow users to change current document password.
document-password-change-sfx2.diff, kohei

[ PopupRemoval ]
# Remove unnecessary popups that might show up during startup.

# remove updater code that is only relevant for the upstream version.
sfx2-remove-check-update-on-fileload.diff, kohei

# prevent the registration dialog from showing up on startup.
desktop-disable-startup-registration.diff, kohei


[ EasterEgg ]
# go-oo.org people active in this release
go-oo-team.diff, michael


[ NovellOnly ]
# add in an entry for a corporate common dictionary
corporate-dictionary.diff, michael

# Some Novell colors ...
novell-palette.diff, michael

# finally disable -fsigned-char on pcc
solenv-really-use-unsinged-char-on-ppc.diff, i#81127, n#169875, pmladek


[ NotDebian ]

# Fix the system default fpicker
default-system-fpicker.diff, michael

[ NotDebian ]

# Disable the printer properties which are unused#583
# related issue: http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=353595
# also last comment in: https://bugzilla.novell.com/show_bug.cgi?id=83925
# also http://bugs.debian.org/cgi-bin/bugreport.cgi?bug=373974
printer-properties-disable.diff, i#14036, michael

# Enable layout'ed dialogs.  Not to be released, therefore NotDebian.
# layout-default-enable-config_office.diff, janniew

[ CustomUserConfig ]

# This section includes patches that deal with custom user configuration items
# that are not present upstream.

SectionOwner => kohei

# Swap the delete and backspace key bindings but leave the menus alone.
sc-default-delete-backspace-key.diff, i#17965, kohei

[ CustomUserConfig ]

# migrate keyboard shortcuts & reset character set for CSV import dialog.
desktop-config-migration.diff n#367160, n#376473, n#421070, kohei/jholesov

# To make CSV Text Import settings persistent.
sc-preserve-imp-opts.diff, i#3687, muthusub


[ DebianBaseOnly ]
SectionOwner => rengelha

sensible-ooomua.diff
sensible-browser.diff
default-cairo-disable.diff
gcj-32bit-runtime-path.diff, i#64888, mklose
# remove mozilla plug-in option completely since we enable it per default
# and therefore this option is sense-/useless
no-mozilla-plug-in-option.diff
# read variables from /etc/openoffice/sofficerc, since /usr/lib/openoffice/sofficerc
# just refers to it
oosplash-etc-openoffice-sofficerc.diff
# build using -O2 on x86 and sparc according to Debian policy.
debian-opt.diff
ubuntu-soffice-config.diff, mklose
ubuntu-openoffice-java-common.diff, ccheney
ubuntu-javaldx.diff, ccheney

# mention openoffice.org-report-builder instead of getting people
# to download it from elsewhere
reportdesign-mention-package.diff, rengelha

[ DebianOnly ]
SectionOwner => rengelha
# fix the splash progressbar colors
debian-splash.diff

[ DroplineGNOMEOnly ]
SectionOwner => DropLine

pushfont-psstream.diff, i#84481
scp2-user-config-ooo3.diff


[ MandrivaOnly ]
SectionOwner => gghibo
# gcc401-stlport45-include.diff
mandriva-archflags.diff
mandriva-java32_64.diff
# db42-fix-jni-includes.diff
# Fixes msfontextract tool (uninitialized variable)
msfontextract.diff, mrl
# Fixes ooqstart.desktop Exec command
ooqstart.desktop-exec.diff, Marcelo Ricardo Leitner
# Adds Angola currency. FIXME: probably done in the worst way.
angola.diff, mrl
# Fix DictOOo.swx and FontOOo.swx paths, as Mandriva doesn't ship them
# inside share/dict/ooo dir.
wizards-path.diff, mrl
mdv-toolbariconstosmall.diff, cabral
mdv-exceptcxx-include-string.diff, cabral
# disable slackware desktop things that are braking our build (do_inst.sh script)
mdv-sysui-disableslack.diff, cabral
# change default email app to xdg-email
mdv-xdgmailasmailer.diff, cabral

[ MandrivaOnlyUnix ]

SectionOwner => gghibo
help-support-mdv.diff
# change user config dir name from ~/.openoffice.org3 to ~/.ooo3
scp2-user-config-ooo3.diff, pmladek


[ NovellOnlyUnix ]

# Help Support page
help-support.diff, michael
# change user config dir name from ~/.openoffice.org3 to ~/.ooo3
scp2-user-config-ooo3.diff, pmladek
# Push fonts into the ps stream always
pushfont-psstream.diff, i#84481, michael

# search also /usr/share for icons
# it is a temporary hack; we should do more clean FHS compliant installation
# we need a good plan before, though ;-)
split-icons-search-usr-share.diff, n#296502, pmladek

# try autodetection if it is allowed and the current java has been removed
# crazy hack, I am looking forward for the clean upstream fix
jvmfwk-detect-removed-java.diff, i#83140, n#336242, pmladek

[ BrokenSystemNSS ]

# fix build with system libnss installed apart from mozilla
# strictly required on SL10.1/SLED10 where the xulrunner-nss.pc is broken
libxmlsec-system-nss.diff, i#69368, n#195272, pmladek


[ BuildBits ]
novell-win32-agfa-monotype-fonts.diff, tml

# allow to define java target, so the build is usable with the JVM 1.5
# even when it is built with JDK 1.6
build-java-target.diff, i#93115, pmladek

# do not create '.' subdirectories
# omit './' in paths
solenv-installer-cleaner-paths.diff, pmladek

# do not print twice the lang name in the filelist
# for example, generate gid_Module_Langpack_Basis_es instead of
# gid_Module_Langpack_Basis_es.es
solenv-installer-lang-filelist-names.diff, pmladek

# allow to get path also from ./file
# otherwise, it installed the license files into ugly subdirectories
# for example into <ooo-home>/LICENSE.html/LICENSE.html
# even worse, the direcotry had the rights 444
installer-get-path-correctly.diff, pmladek

# enable build with IBM Java 1.6.0
build-ibm-java-enable.diff, i#93114, pmladek

# openjdk contains rhino.jar. breaks the build... 
buildfix-openjdk-6-no-rhino.diff 

# fixed build with IBM Java 1.6.0
bean-ibm-java.diff, i#93113, pmladek

# allow to use the prebuilt jsr173_1.0_api.jar
build-prebuilt-stax.diff, i#93116, pmladek

# do not allow to enable GIO and GNOME VFS at once
config_office-gio-vs-gnome-vfs.diff, i#95713, pmladek

# call g_type_init() before using GIO;
# avoid crash when using GIO in non-GNOME Window manager
ucb-gio-gnome-init.diff, i#96170, n#442678, mmeeks

# OpenJDK paths for some archs
config_office-openjdk-paths.diff, i91783

# Make oox compile with boost 1.37.0
oox-boost-1.37.diff

[ BuildBits == ooo300-m13 ]
# fix build after cws swffixes
cws-swffixes02.diff, i#96970

[ Gcc43 ]
# gcc 4.3 requires #include <string.h> for strdup, memcmp etc.
buildfix-bridges-strdup-header.diff, i#89762, kohei
buildfix-sdext-memcmp-header.diff, i#89803, kohei

[ Java14 ]

# enable build with Java 1.4; can't go upstream
build-java-1.4-enable.diff, i#12345, pmladek
# disable optional @Override; can't go upstream
build-java-1.4-filter.diff, i#12345, pmladek
# another fallback to load libhsqldb with JRE 1.4
connectivity-load-libhsqldb-with-jre-1.4.diff, n#431360, pmladek

[ GTK28 ]

# gtk-2.8 does not know the link-color properties;
# do not try to read them to avoid annoying warning messages
vcl-gtk-2.8-unsupported-link-colors.diff, n#440514, pmladek


[ NovellOnlyWin32 ]
SectionOwner => tml

novell-win32-installer-branding.diff
novell-win32-vrb-branding.diff, n#191913, i#68817
novell-win32-registry-branding.diff, n#191913

[ NovellOnlyWin32 ]
SectionOwner => tml

win32-prebuilt-writingaids-zip.diff
win32-prebuilt-writingaids-zip-scp2.diff

# drop stuff that is needed only on Win9x
novell-win32-drop-win9x.diff


[ translate-org-za-common ]
SectionOwner => davidf

# use the dejavu fonts - commented out as different patches in the works
# dejavu-fonts.diff, i#59853


[ FrugalwareOnly ]


# ( mmp@oo.o deals with defaults apparently )

[ Defaults ]
# Disable the recovery report dialog
recovery-report.diff, i#53531, martink

#
# Controversial bits - no use filing up-stream
#

# automatically do any migration we can, with no wizard
default-no-startup-wizard.diff, michael

# don't throw up the style dialog on 1st run
default-no-style-dialog.diff, michael

# pestering people serves no useful purpose
default-no-registration.diff, michael

# The Industrial OOo icon theme is too old. The OOo Tango icon
# theme is closer to the current GNOME Industrial theme rules.
# => Tango should be preferred over Industrial.
tango-prefer-over-industrial.diff, n#304615, pmladek

# no Help->registration dialog by default
default-no-registration-menu.diff, michael

# flatten the structure of the 3 layer OOo a bit
scp2-3layer-nicer-paths.diff, i#90430, jholesov

[ DefaultSettings ]

# default to anti-alias at point size of 1 point
default-font-aasize.diff, michael
# set default font size to 10pt
default-font-size.diff, i#35565, michael
# Dramatically improve MS import / export cf. i8276 et. al.
default-ms-filter-convert.diff, i#8276, michael
# use pair kerning in new documents
#KENDY TESTME: should be on using a different patch. default-pairkerning-on.diff, i#35873, jholesov
# Optimal Page Wrap should be default for graphics insertion (X#59831)
writer-default-as-optimal-page-wrap.diff, i#38108, jody
#
# Controversial bits - no use filing up-stream
#
# Use the Gnome VFS on KDE as well if it's there (better than nothing)
vfs-kde-too.diff, michael
# Trade speed for reliability with valgrind
valgrind-alloc.diff, michael

# disable the IDEA algorithm in the internal openssl; It is pattented.
# There is no license fee only for non-commercial use.
# This change actually affects only the Windows builds because the others
# should use --with-system-openssl
default-openssl-no-idea-alg.diff, pmladek

# load and save also odf documents in flat xml format as opposed to the
# compressed ones (conforming to the odf specifications)
odf-flatxml-import-export.diff

[ Features ]
# ask user on logout/shutdown to save documents
session-management.diff, i#63156, rodo

# search <ooo-home>/share/template/common for language independent templates
# will not push it upstream because it will be replaced by upcomming kendy's work
office-cfg-common-template-dir.diff, pmladek

# add new category "Labels" for blank Labels, calling cards, CD labels, etc.
# will not push it upstream because it will be obsoleted by upcomming kendy's work
sfx2-template-category-labels.diff, pmladek
# add labels folder to scp2 module too
scp2_add_additional_dirs.diff, kami


[ BuildBits ]
build-identification.diff, tml

# do an optimizing link
build-optimized-link.diff, michael

# add -dontstrip option to the installer
installer-strip-optional.diff, i#48814, pmladek

# add missing #include <stdio.h> in autodoc, breaks when building with STLport5
#autodoc-add-missing-stdio-h.diff, rengelha

# Workaround for compile failure with glibc 2.4's langinfo.h
i18nutil-glibc-braindamage-workaround.diff, brosenk

# changes the SDK gid module name to gid_Module_Root_SDK, so the generated list
# of files does not conflict with the main package, i#64802
sdk-gid-module-name.diff, pmladek, i#64802

# do not pack any potential .orig files with ppds
psprint_config-no-orig.diff, jholesov

[ DebianOnly ]
seamonkey-is-iceape.diff

[ BuildBits ]
# allow separate helpcontent build
# FIXME: is anybody using this feature?
#FIXME src680: separate-helpcontent.diff, jholesov

# use --hash-style=gnu linking when supported
# disabled for Debian as Debian policy (for now) is to use=both
speed-hash-style.diff, pmladek

# bind all those function / named relocations locally
speed-symbolic-functions.diff, i#85679, pmladek

# fix configure.in
config_office-liblayout-libfonts.diff

[ MandrivaOnly ]
SectionOwner => gghibo
# mozilla-firefox.diff

[ ArkOnly ]
SectionOwner => brosenk

# Db 4.3/4.4 needs -lpthread
system-db-4.3-use-lpthread.diff, i#58474, rengelha


[PLDOnly]
SectionOwner => arekm

[ BuildBits ]
# work around http://gcc.gnu.org/bugzilla/show_bug.cgi?id=22392
svx-customshapes-NOOPTFILES.diff, martink

# This set seem to be related to a gcc bug ...
# fixes warnings about missing return values
warning-return-values-filter.diff, i#58977, pmladek
warning-return-values-registry.diff, i#58979, pmladek
# fixes warnings about that a variable is used unitialized
warning-uninitialized-variables-tools-2.diff, i#58984, pmladek

#fix a build issue on solaris with sunpro 5.9 aka Sun Studio 12
stlport-solaris-fileno.diff, fridrich

# fix build with vba as extension
buildfix-vba-as-extn.diff, i#86937, hmth


[ BFBuildBits ]
SectionOwner => pmladek

# STLport fixes
binfilter-stl.diff, i#63770, hmth

# use -Wl,--as-needed, save 1% of relocations
link-as-needed-bf.diff, i#89511, pmladek

[ SystemBuildBits ]
# !!!! applied only when libs_extern_sys source tarball is unpacked !!!!
SectionOwner => fridrich

# Mozilla build-bits to not break on Solaris 11
moz-solaris11-makefiles.diff, fridrich

[ BuildBits ]

pyuno-rpath-ooodir.diff
system-python-ure-bootstrap.diff, deb#501028, i#90701

no-latex-filter-without-writer2latex.diff, i#93520

[ DejaVuFonts ]

# Following the changed names of DejaVu fonts
# Add Liberation fonts for all platforms
dejavu_liberation_packaging_fix.diff, kami
dejavu_liberation_making_fix.diff, kami

[ VCL ]

# Don't let the splash screen take over
no-splash-takeover.diff, i#23609, rodo

# Better fallback when some of the plugins are not available
vcl-better-fallback.diff, i#50857, jholesov

# prioritize hebrew culmus fonts, Debian bugs #280084, #296152, #300642
hebrew-culmus.diff, noelpwer

# write setup to %%Begin(End)Setup, instead of %%Begin(End)PageSetup when
# generating PostScript
psprint-postscript-page-setup.diff, i#65491, n#80448, jholesov

# enable vcl to load bitmaps when height it negative
vcl-bitmap2-negative-height.diff

# Make sure that the colors between selected and unselected tabs can be
# distinguished by using appropriate theme colors.
native-theme-tab-colors-svtools.diff, n#396386, i#94452, kohei
native-theme-tab-colors-vcl.diff, n#396386, i#94452, kohei

[ SystemBits ]
# use getopt() and readdir_r() from system glibc
#FIXME src680: system-libc.diff, i#69033, rengelha

xmlhelp-system-lucene-fix.diff

[ TangoIcons ]
# default to large icons in the toolbar
gui-toolbox-large-icons.diff, jholesov

# use it by default under Win32
tango-icons-default-w32.diff, n#254855, pmladek


[ NotDebian ]
# Improve readability of BUILD_VER_STRING in Help:About dialog
# rengelha doesn't like it, so put in NotDebian
# or maybe should be in Win32Only even?
about-build-ver-readability.diff, i#68590, tml


[ Fpickers ]
# Modify the fpicker makefile
fpicker-common-build.diff, jholesov

# Show "Use OpenOffice.org dialogs" check box only if the system fpicker is
# available (better implementation) FIXME IZ number
fpicker-show-checkbox.diff, jholesov

# Out-of-process implementation of KDE fpicker
# FIXME: No IZ number for this, because it is necessary to do it internal first
fpicker-kde-service.diff, jholesov
# Out-of-process implementation of KDE fpicker
# FIXME: No IZ number for this, because it is necessary to do it internal first
fpicker-kde-dialog.diff, jholesov
# Partially support KIO (download the file locally if we cannot handle it in
# OOo or (FIXME) using gnome-vfs) binc#60527
fpicker-kde-partial-kio.diff, jholesov
# Workaround for 'Filter name (*.blah)' vs. 'Filter name' problem in
# Insert->Picture->From File... n#66873
fpicker-kde-filter-name.diff, jholesov

# Adapt to changes in resources handling of fpickers
fpicker-kde-resmgr.diff, jholesov

# Handle media:/ files locally
fpicker-kde-local-media.diff, jholesov
fpicker-kde-local-media2.diff, jholesov, n#238695
# Fix too wide "Menu -> Insert -> Picture -> From File..." dialog Novell#72010
fpicker-kde-too-wide.diff, jholesov

# Don't overwrite files containing spaces, etc. n#241080
fpicker-kde-dont-overwrite.diff, jholesov
# Work even with non-UTF-8 locales n#168616
fpicker-kde-non-utf8.diff, jholesov

# KDE fpicker should be modal n#265718
fpicker-kde-modal.diff, jholesov

# Let the KDE and Gtk+ fpickers build and install FIXME IZ number
fpicker-common-scp2.diff, jholesov

# Fix the KDE fpicker for 3layer OOo
fpicker-kde-3layer.diff, n#413475, jholesov

# Fix the KDE fpicker after the change of behavior intoduced in
# gnome-fpicker-main-thread.diff, i#93366, cmc
fpicker-kde-less-threads.diff, n#427336, jholesov


[ AddressBooks ]

# Evolution should also be default database(n#66217).
default-evolution-database.diff, michael
# Mailmerge column mapping by default (n#73627)
default-evo-column-mapping.diff, michael

# NB. when this cws goes up-stream we need to enable this
default-evo2-ab.diff, michael


[ Lwp ]
# Lotus Word Pro Import Filter
lwp-filter-component.diff, i#11215, noelpwer
# Integrate cws ooo11lotusfilter for WordPro filter
cws-ooo11lotusfilter-lwp-filter-component.diff, Fong
cws-ooo11lotusfilter-lwp-filter.diff, Fong
cws-ooo11lotusfilter-lwp-xfilter.diff, Fong
# avoid warning: control reaches end of non-void function
warning-return-values-lotuswordpro.diff, pmladek


[ Win32Only ]

# some versions of make don't like us
cygwin-make-ver.diff, i#68283, michael
# 2 more makefiles in sysui are seriously broken #35628
# parallel-python-makefile_mk.diff # looks to be upstream
# Work around G/W mail component crasher bug #FIXME - re-file vs. i#34264
# Also fix OOo/GW deadlock - n#418407
win32-gw-send-mail.diff, i#34264, n#418407, tml
# This is a pretty nasty IE problem i#19510, i#65209
win32-activex-disable.diff, i#65209, i#19510, n#168534, tml
# This enables building libIDL, glib and buildtools for mozilla from source
mozilla-buildlibs-win32.diff, i#58741, davidf
# This enables building scsolver on Win32
boost-patch.diff, tml

# Multi-language installer stuff
win32-multi-lang-installer.diff, i#66062, i#88638, i#88639, tml

# fixes for visual studio express 2005 ( ooo-build only )
2005-express-stl-remove.diff, noelpwer, i#71404

[ VBABits ]
# Parse (& ignore) 'Attribute' statements
vba-attribute.diff, i#37347, noelpwer
#basic depends on built and delivered ooovbaapi
basic-prj-build_lst.diff


[ GentooExperimental ]
SectionOwner => hmth

# test system libxmlsec
system-xmlsec.diff

[ GentooOnly ]
SectionOwner => aprosky

# Allow build to proceed with PaX enabled
gentoo-pax-fix.diff, aprosky
# support server-only versions of 64bit JDKs
64bit-jdk-server-paths.diff, i#65974, hmth
# use IBM j9vm over IBM classic JVM
ibm-j9vm.diff, hmth
# system db check
system-db-check.diff, i#65979, hmth
# User ~/.ooo3 as user dir
scp2-user-config-ooo3.diff, pmladek
# unused java code
#disable-parser-jaxp.diff, hmth
# default inc/lib
config_office-XINC-XLIB-defaults.diff, i#65976
# gdi/font.cxx: stl list error, hmth
#vcl_font-NO_LIST.diff
# linux-headers-2.6.22 issue?!
linux-headers.diff
# Fix Gentoo sandbox troubles
gentoo-fix-sandbox-violation.diff, aprosky

[ DebianBaseOnly ]
SectionOwner => rengelha

help-msg-add-package-info.diff

[ DebianBaseNoHelpContent ]
SectionOwner => rengelha

disable-helpcontent2.diff
disable-xmlsearch-and-xmlhelp-jar.diff


[ UbuntuOnly ]
SectionOwner => mklose

default-system-fpicker.diff, michael
ubuntu-palette.diff
ubuntu-dictionary.diff
ubuntu-lpi.diff, i#64895, mklose
ubuntu-sparc-hack.diff, mklose
# do not use the  internal error number Err:529
sc-string-arg-err529.diff, n#440808, kohei


[ Mono ]
SectionOwner => rodo

#
# These patches are experimental beware ...
#

cli_ure-source-bootstrap-assembly-cs.diff
cli_ure-source-bootstrap-managed_bootstrap-cs.diff
cli_ure-source-bootstrap-native_glue-cxx.diff

mono-testtools.diff

# The build
mono-scp2.diff, rodo

cli_ure-source-bootstrap-makefile-mk.diff, rodo
cli_ure-mono-bridge.diff, rodo
mono-build.diff, rodo
build-mono-link.diff, jholesov
# sign the output assembly using the key pair; it is needed to install
# the versioned assemblies into the system Global Assembly Cache  (GAC)
mono-build-keyfile.diff, rodo
mono-climaker.diff, rodo
climaker-csharp-win.diff, rodo
buildfix-climaker-disabled.diff, rodo
mono-bootstrap-config-and-policy.diff, rodo

buildfix-use-climaker-in-unoil.diff, rodo

cli_ure-prj-build-lst.diff

# climaker rewritten in C#
mono-climaker-config.diff
mono-climaker-bridgetest.diff

[ VBAObjects ]
SectionOwner => noelpwer


#FIXME: changed by kendy: Noel, please have a look
sc-hacky-handle-boolean.diff

svx-source-inc-fmundo-hxx.diff, i#68893
svx-source-form-fmscriptingenv-cxx.diff, i#68893
svx-source-form-makefile.diff, i#68893
svx-source-form-fmundo-cxx.diff, i#68893

vbaevents-services-build.diff, i#68893

scp_vba_uno_service.diff, i#68893

vba-support-export-palette.diff, i#68900

# superceeded by vbaevens-service-sources.diff
# leave here for a while 'till we are sure all is ok
#vba-keep-codenames-in-sync.diff

# always get non-filtered range selection when querying for current selection 
# address.
vba-get-nonfiltered-range-selection.diff, n#415002, kohei

[ VBAObjects ]
#associating sheet and codename when insert a sheet
# sc-insert-sheet-codename.diff, i#80869, jianhua

# NOT parameter without brackets
vba-not-param-withoutbrackets.diff, n#397325, Fong

# hack for when resolving a symbol in the module ThisWorkbook
#vba-symbol-searchhack-for-thisworkbook.diff
vba-allow-ranges-for-cell-functions.diff

# in the basic IDE if the curson in within a macro
# pressing the run button should run that macro
# if the cursor is not in the macro then it should
# raise the macro chooser dialog
vba-ide-choose-macro-to-run.diff

# provide a compatible error object
vba-error-object.diff


# make ScExtDocSettings public
scextopt-public.diff, jianhua

#tweak cws-npower7/8 to build vba before filter ( filter uses headers generated
#from oovbapi.rdb )
sc-vba-build-lst.diff
# allows access to some internals needed for vba api, doesn't change
# any functionality
sc-vba-autofill-support.diff, i#68883
#-DVBA_OOBUILD_HACK ( make sure this flag is set for ooo-build builds )
# this flag hooks in code in vba api model implementation that depends on
# core changes not yet upstream
sc-source-ui-vba-makefile-mk.diff

# export of macro bindings for shapes
sc-export-shape-macro-bindings.diff, n#304739, noelpwer

# export of hlink bindings for shapes
sc-export-shape-hlink-bindings.diff, n#304739, noelpwer

# attributes present in the vba streams can override the default shape name
# used for the control in the binary format
sc-vbaimport-override-controlname.diff, n#359933, noelpwer

# Application.Caller
api-application-caller.diff, n#339941, noelpwer
default-autotext-and-form-name.diff, n#353687

# fix --disable-vba build
oovbaapi-disable-vba.diff

#fix for n#309981
vba-fixup-singlerange-sheetref.diff, n#309981, noelpwer
#always (try) to set the default property to an SbxUnoObject
vba-always-set-defaultprop.diff, n#388049, noelpwer
#clean up the macro security check, prepare for object/form modules
vba-check-for-macro.diff
#make properties available for non class modules
#also allow paramaters to be supported for Get properties
vba-support-properties-inmodules.diff
controls-with-images-in-document.diff, i#38215, noelpwer 
# import graphic for image control
controls-with-images-import.diff, Fong
#use of form control models in userforms/dialogs, additionally
#enables use of document embedded images in image control for 
#userforms/dialogs ( note: depends on controls-with-images-in-document.diff )
enhanced-form-userform-controls.diff, noelpwer
# object module support... getting there
ObjectModule.diff
# userform ( depends on ObjectModule.diff )
vba-userform.diff
# fix userform activate event re-compute; extracted from vcl92
vba-userform-activate-fix.diff, i#91038
# support to display spinbutton in userform
vba-spinbutton-in-userform.diff, Fong
# uno interface for vba mode
vba-compatible-mode-uno.diff, Fong

vbaevents-services-sources.diff, i#68893

# vba workbook/worksheet events
vba-workbook-worksheet-events.diff, Fong
# worksheet_calculate event fix
vba-worksheet-calculate-event-fix.diff, Fong

# add support for passing a caller to basic when calling a script
# via the scripting framework - note depends on vbaevents-services-sources.diff
basic-caller-support.diff
# comparison of tow empty type fix in vba mode
vba-empty-comparison-fix.diff, n#397438, Fong
# Add Worksheet.EnableSelection
vba-worksheet-enableselection.diff, n#405312, Fong
vba-worksheetfunctions-fix.diff, n#414248, Fong

# Fixed for n#407805
basic-not-is-nothing.diff, n#407805, Fong
basic-replace-function-fix.diff, n#411203, Fong
# keywords (including NAME, LINE, TEXT) can be used as variable 
vba-keyword-fix.diff, n#403586, Fong

#some userform import issues including improved identification
#of the progressbar activex control
userform-activex-identify.diff, i#93111
#some unknown userform binary format tweaks for some customer documents
#one hunk seems to be related to grouped labels in a userform
#the other ( no idea )
userform-possible-groupingtweak.diff
#disable to delete or rename objectmodule name in basic ide
basic-ide-objectmodule.diff, Fong
# display a friendly name for objectmodule tab
basic-ide-module-object-name-combile.diff, Fong
# fix bug accessing default member of userform control
range-listBox-compare.diff, n#421939
# fix bug comparing string that can't be converted to number
stringnumbercompare.diff, n#422559
# fix bad intersect api, need to be folded into npower11
# also needs some testing
vba-intersect-multi-area.diff
# some nasty api cores
vba-fix-n431613.diff, n#431613
vba-fix-n431657.diff, n#431657
# fix spurious core maniplulating font attributes
vba-fix-font-attribute-access.diff, n#433292
# fix core issue in Commandbar
vba-fix-commandbar-submenu.diff, n#434214, n#437157, Fong
# fix Range.Select ( customer problem ) to move focus to windos
vba-fix-range-select-focus.diff, n#444156

vba-fix-docmodule-import-crash.diff, n#447560

vba-xl-import-crash.diff, n#458985
vba-interior-object-fix.diff, n#459479, Fong
vba-excel-iserror-fix.diff, n#469762
vba-fix-copysheet-toend.diff,n#478187
vba-commandbar-enabled.diff, n#459458, Fong
[ VBAUntested ]
SectionOwner => noelpwer
vba-basic-null.diff i#85349, jjiao
vba-support-stoc-typeprovider-xexactname.diff, #no-upstream

#must ask kendy about this ( noelp )
vba-parallel-build.diff, #no-upstream
#not so useful but perhaps we can build on it later
basic-speedup-fix.diff

# backup for npower11
# fix for n#353242. missing APIs
# a set of CommandBar APIs.
vba-commandbar-bundle.diff, n#353242, Jianhua
# fix for n#365557. missing APIs of XInterior
vba-interior.diff, n#365557, Jianhua
vba-window-service.diff, jianhua
vba-hyperlink-service.diff, Fong
vba-pagesetup-object.diff, Fong
# support Range.MergeArea, Range.ShowDetail
vba-range-missing-api.diff, Fong
# ListBox.removeItem
vba-listbox-removeitem.diff, n#405306, Jianhua
# Range.Find
vba-range-find.diff, n#405304, Jianhua
# For SpinButton
vba-spin-button.diff, n#405308, Jianhua
# erro compile switch
vba-scroll-bar-idl-switch.diff, Jianhua
# Add HPageBreaks object
vba-pagebreak-object.diff, n#405312, Fong
# Add to support Application.Union
vba-application-union.diff, n#405313, Fong
# Add to support Worksheet.Index, and fix for n#403974
vba-worksheet-fix-n403974.diff, n#403974, Fong
vba-range-find-fix.diff, n#417312, Fong

[ Features ]
# Pre- and postprocessing capabilities for loading and saving.
sfx2-pre-and-postprocess-during-save-load.diff, i#71939, florian
sfx2-pre-and-postprocess-crash-fix.diff, n#270544, rodo
# hack to ignore writerfilter if odf-converter is present
odf-converter-ignore-writerfilter.diff, n#348471, jholesov


[ msaccess ]
SectionOwner => strba
SectionIssue => i#33654

#cws-mdbdriver01.diff

#cws-mdbdriver02.diff

#mdbtools.diff
#mdbtools-makefile-mk.diff
#mdbtools-prj-build-lst.diff
#mdbtools-prj-d-lst.diff

#connectivity-source-drivers-mdb-mdb-map.diff

#hack to get the proper msaccess tabpage
#msaccess-db-create-dialog-fix.diff


#[ STLport5 ]
#SectionIssue => i#63770
#
#system-stlport5.diff, i#79875
#system-stlport51.diff, i#79876


[ OOXML ]
win32-installer-register-moox-types.diff

writerfilter-module-writer.diff

writerfilter-source-dmapper-domainmapper-debug.diff

buildfix-oox-depends-on-unotools.diff

[ CalcFixes ]

# Support several different formula syntax, and add a formula syntax
# configuration option in the Options page.

sc-formula-syntax-ui.diff, n#358558, i#72191, kohei

# Toggle gridline display per sheet.
sc-sheet-gridline-toggle.diff, i#14893, kohei

# Skip overlapped cells (cells that are hidden under a merged cell) when
# navigating through cells.
sc-skip-overlapped-cells.diff, i#86943, n#362674, kohei

# Move cell notes along with the anchored cells when cells are sorted.
# (disabled as it causes a crash when empty cells are present.)
# sc-sort-cell-note-position.diff, i#59745, kohei

# Make the formula separators changeable per locale setting.
calc-formula-variable-separators-sc.diff, i#92056, kohei

# Fix hard-coded ';' in the input handler code.
calc-formula-variable-separators-ref-display.diff, n#480195, kohei

# Fix parse failure on non-ASCII sheet names in Excel A1 and R1C1 modes.
calc-xls-parser-sheet-name-fix-sc.diff, n#407807, i#92379, kohei

# Keep the datapilot dialog open when table insertion fails.
calc-datapilot-cells-not-empty.diff, n#408934, i#92378, kohei

# Squeeze chart's subtitle into the 2nd line of the main title when exporting
# to xls.
chart-subtitle-xls-export.diff, i#92357, kohei

# fix bug generating a specific Sheet reference
parse-xla1-bad-3dflag.diff, n#422569, noelpwer

# skip data in hidden cells when rendering charts.
chart-skip-hidden-cells-chart2.diff, n#404190, i#81209, n#427545, kohei
chart-skip-hidden-cells-sc.diff, n#404190, i#81209, n#425617, kohei
chart-skip-hidden-cells-xmloff.diff, n#404190, i#81209, n#425617, kohei

# strip the fraction part of a date-time value when using DATEVALUE.
calc-formula-datevalue-strip-time.diff, n#432877, i#94765, kohei

# correctly evaluate the visibility of dimension members when generating a
# drill-down sheet & also reduce memory use on cache tables.
calc-dp-drilldown-hidden-items.diff i#93918, i#93998, kohei

[ CalcExperimental ]

# render charts with multiple chart types correctly for xls interop.
chart-axis-multi-chart-types-chart2.diff, n#437322, i#95934, kohei
chart-axis-multi-chart-types-sc.diff,     n#437322, i#95934, kohei
chart-axis-multi-chart-types-xmloff.diff,     n#437322, i#95934, kohei

# Implement external range names.
calc-external-defined-names-sc.diff, i#3740, i#4385, n#355685, kohei
calc-external-defined-names-offapi.diff, i#3740, i#4385, n#355685, kohei
calc-external-defined-names-svtools.diff, i#3740, i#4385, n#355685, kohei
calc-external-defined-names-officecfg.diff, i#3740, i#4385, n#355685, kohei
calc-external-defined-names-empty-cells.diff, kohei

# support custom names in data pilot tables.
calc-dp-custom-names-sc.diff,     n#338014, i#22029, kohei
calc-dp-custom-names-offapi.diff, n#338014, i#22029, kohei

# support alternative language to be used for HTML import, mostly for locale-
# dependent number recognition.
calc-html-import-custom-lang-filter.diff, n#484272, kohei
calc-html-import-custom-lang-sc.diff,     n#484272, kohei

[ CalcSolver ]
SectionOwner => kohei

scsolver-config-option.diff
scsolver-config-set-soenv.diff
scsolver-lpsolve.diff      
scsolver-sc-build-lst.diff 
scsolver-sc-remove-menu.diff
scsolver-scp2.diff         
scsolver-setup_native.diff 

#[ OOXSTLport5 ]
#
## oox devs, please reconsider operator[] use,
## see i#80084/cws chart11 ! thank you!
#system-stlport51-oox.diff
#system-stlport51-oox-map.diff

[ PostgreSQL ]
sdbc-postgresql.diff
sdbc-postgresql-build-lst.diff
sdbc-postgresql-config_office.diff
connectivity-workben-postgresql.diff
gcc-4.3-postgresql.diff



[ ArkOnly ]
SectionOwner => brosenk

# We use KMail...
# There's no point in upstreaming this because not everyone uses KMail.
ark-default-ExternalMailer.diff

[ ArkOnlyExperimental ]
# There's no point in upstreaming this because it relies on the Ark
# Java lib naming scheme and won't work anywhere else.
# Not applied right now, needs porting
compiletime-skip-duplicate-jars.diff
# Don't crash HelpLinker
# FIXME check if this is still needed with m190
gcj-HelpLinker-no-NullPointerException.diff, i#61278

# This is faster, and solves gcj -C's private bug. But it's also
# close to untested.
# FIXME this needs reimplementation with the current build system
ark-experimental-gcj-use-ecj.diff, i#64917

# Ark Linux includes precompiled versions of Xerces, Xt and db.jar.
# There's no need to precompile them again, just use the system version.
# There's no point in upstreaming this because it relies on the Ark
# Java lib naming scheme and won't work anywhere else.
# FIXME this needs reimplementation with the current build system
ark-system-precompiled-java.diff

[ DebianBaseOnly ]
# link with -lcolamd, needed because our liblpsolve55{,_pic}.a doesn't include it
system-lpsolve-link-with-colamd.diff, rengelha

[ DebianOnly ]
debian-dictionary.diff, rengelha
#debian-gccXXXXX.solenv.javaregistration.diff


[ OpenGLTransitions ]
transogl-transitions-slideshow.diff
transogl-transitions-sd.diff
transogl-transitions-officecfg.diff
transogl-transitions-scp2.diff
transogl-more-transitions.diff
transogl-vsync.diff
transogl-shader-transitions.diff
transogl-mesa-fallback.diff
transogl-shader-transitions-1.diff
transogl-dispose-fix.diff
transogl-sync-fix.diff
transogl-transitions-newsflash.diff, thorsten
transogl-detect-fix.diff
transogl-buildfix.diff
transogl-pixmap-to-texture.diff
transogl-fix-dual-head.diff
transogl-buildfix-pixmap-ext.diff
transogl-fix-presenter-view.diff
transogl-debug-time.diff
transogl-fix-remote.diff
transogl-fix-first-slide.diff

[ Experimental ]
# sal_uInt32 -> sal_uIntPtr for events on some places
events-intptr.diff, i#59411, jholesov

# breaks (at least) on Mac, as there's code that relies on resolving
# also non-existing paths 
# don't lstat() that much while creating absolute URLs
speed-sal-fewer-lstats.diff, i#89730, jholesov

[ DebianSidOnly ]
static-libs-use-_pic.diff, rengelha
# link dynamically with liblpsolve55.so
system-lpsolve-rpath.diff, rengelha

[ UbuntuOnly ]
human-icons-add.diff, mklose

[ UbuntuL10nOnly ]
human-icons-i18n.diff, mklose

[ DebianEtchOnly ]
static-libs-use-_pic.diff, rengelha
hunspell-lib-use-_pic.diff, rengelha
libhnj-lib-use-_pic.diff, rengelha
# use -llpsolve55_pic
system-lpsolve-use-_pic.diff, rengelha

[ UbuntuDapperOnly ]
static-libs-use-_pic.diff, rengelha
hunspell-lib-use-_pic.diff, rengelha
# use -llpsolve55_pic
system-lpsolve-use-_pic.diff, rengelha

[ UbuntuGutsyOnly ]
static-libs-use-_pic.diff, rengelha
unxlngi6-notune.diff, doko
ubuntu-no-stack-protector.diff, doko
# link dynamically with liblpsolve55.so
system-lpsolve-rpath.diff, rengelha
#gccXXXXX.solenv.javaregistration.diff

[ UbuntuHardyOnly ]
static-libs-use-_pic.diff, rengelha
unxlngi6-notune.diff, doko
ubuntu-no-stack-protector.diff, doko
# link dynamically with liblpsolve55.so
system-lpsolve-rpath.diff, rengelha
#gccXXXXX.solenv.javaregistration.diff
ubuntu-mstopdf.diff, ccheney

[ UbuntuIntrepidOnly ]
static-libs-use-_pic.diff, rengelha
unxlngi6-notune.diff, doko
ubuntu-no-stack-protector.diff, doko
# link dynamically with liblpsolve55.so
system-lpsolve-rpath.diff, rengelha
#gccXXXXX.solenv.javaregistration.diff
ubuntu-mstopdf.diff, ccheney

[ UbuntuJauntyOnly ]
static-libs-use-_pic.diff, rengelha
unxlngi6-notune.diff, doko
ubuntu-no-stack-protector.diff, doko
# link dynamically with liblpsolve55.so
system-lpsolve-rpath.diff, rengelha
#gccXXXXX.solenv.javaregistration.diff
ubuntu-mstopdf.diff, ccheney

[ FedoraLinuxOnlyFixes ]
ooo64508.vcl.honourfontconfighinting.diff

[ FedoraCommonFixes ]
ooo67658.sfx2.reloadcrash.diff

oooXXXXX.vcl.x86_64.impressatk.diff

ooo73201.sw.a11yloadcrash.diff

ooo86080.unopkg.bodge.diff

[ CairoFonts ]
# needs Gtk2.0 >= 2.10 and cairo, so this is on the own section
ooo59127.vcl.honourcairofont.diff
psprint-fontconfig-fix.diff, n#407958, thorsten

[ GStreamer ]
SectionOwner => rodo
SectionIssue => i#68717

gstreamer-avmedia.diff
gstreamer-sd.diff
gstreamer-scp2.diff
gstreamer-config-office.diff
gstreamer-slideshow.diff
gstreamer-solenv.diff
gstreamer-svtools-content-types.diff
gstreamer-avmedia-file-types.diff
gstreamer-vcl.diff
avmedia-source-gstreamer-ChangeLog.diff
avmedia-source-gstreamer-exports.dxp.diff
avmedia-source-gstreamer-gstcommon.hxx.diff
avmedia-source-gstreamer-gstframegrabber.cxx.diff
avmedia-source-gstreamer-gstframegrabber.hxx.diff
avmedia-source-gstreamer-gstmanager.cxx.diff
avmedia-source-gstreamer-gstmanager.hxx.diff
avmedia-source-gstreamer-gstplayer.cxx.diff
avmedia-source-gstreamer-gstplayer.hxx.diff
avmedia-source-gstreamer-gstuno.cxx.diff
avmedia-source-gstreamer-gstwindow.cxx.diff
avmedia-source-gstreamer-gstwindow.hxx.diff
avmedia-source-gstreamer-makefile.mk.diff
letter-wizard-resource-id.diff, i#84209

[ Shrink ]
SectionOwner => michael

# kill >1Mb of bloat in sal
size-sal-textenc.diff, i#70166

# don't export trivial strings in svtools, increases linking time, bloats size
sw-dont-extern-sRTF-sHTML.diff, i#86772, jholesov
# warning: comparison with string literal results in unspecified results
warning-string-comparsion-sw.diff, i#86880, i#86772, pmladek

[ Shrink ]

# don't export trivial strings in svtools, increases linking time, bloats size
svtools-dont-extern-sRTF-sHTML.diff, i#86772, jholesov


[ BFShrink ]
# don't export trivial strings in svtools, increases linking time, bloats size
binfilter-dont-extern-sRTF-sHTML.diff, i#86772, jholesov


[ NovellOnlyUnix ]
# search also gij32, ..., so the 32-bit package works on 64-bit
jvmfwk-gij32.diff, n#222708, pmladek


[ SVGImport ]
# A bit less partial implementation of SVG import
# Work in progress, but fairly usable already
svg-import-filter.diff, thorsten

# like svg-import-filter.diff, but adds a graphic filter for SVG
svg-import-filter-gfxfilter.diff, thorsten

# fixes some nastiness with viewbox
svg-import-viewbox-fix.diff, thorsten

# improves parsing of paint fragments
svg-import-painturi-fix.diff, thorsten

[ SharedWorksheets ]
SectionOwner => jholesov
# Implementation of shared worksheets
# Work in progress, don't use, hic sunt leones, etc.

sal-osl-lock-file.diff
modal-changes-dialog.diff
shared-worksheets.diff

[ NovellOnlyWin32 ]
novell-win32-msi-patchability.diff, tml

[ MacOSXOnly ]
SectionOwner => pluby

[ PardusOnly ]
pardus-default-ExternalMailer.diff
pardus-clipart.diff
no-mozilla-plug-in-option.diff
dont-check-fqdn.diff

[ UnUsedButNotYetRemovedFromSVN ]
# diffs kept for reference as there might soon be a need to resurrect
# part of the code
win32-quickstarter-exit.diff, i#73550, tml
novell-win32-avoid-premature-shutdown.diff, n#269146, tml
comphelper-msvc8-fix.diff, thorsten, i#89973


[ Store ]
SectionOwner => rodo
SectionIssue => i#75399
store-core.diff
store-install.diff

store-registry.diff

[ Store ]
# don't burn 3% of startup doing CRC's we don't need
speed-store.diff, i#78495, michael
# don't do a load of locking we don't need to 1% of startup
speed-store-lck.diff, i#78526, michael
# don't burn CPU cycles lookup links that are not there
speed-registry-links.diff, i#96284, michael


[ WMF ]
wmf-pattern-brush.diff, n#232232, rodo


[ LayoutDialogs ]
SectionOwner => jannieuw

cws-layoutdialogs-offapi.diff
cws-layoutdialogs-scp2.diff
cws-layoutdialogs-svx.diff
cws-layoutdialogs-sw.diff
cws-layoutdialogs-toolkit.diff
cws-layoutdialogs-toolkit-remove-paragraph.diff
cws-layoutdialogs-transex3.diff

# make it build with dev300-m19 - Janneke, please check :-)
#buildfix-layoutdialogs-transex3.diff

# use old style widgets as plugin in a layout dialog
layout-plugin-toolkit.diff

# use one or more layout tabpages in old .src tabbed dialog
layout-tab-toolkit.diff
layout-tab-sfx2.diff
#layout-tab-sc-localize.diff
layout-tab-sc.diff
layout-tab-scp2.diff
layout-tab-svx.diff

# convert some simple dialogs to layout engine
layout-simple-dialogs-offapi.diff
#layout-simple-dialogs-sc-localize.diff
layout-simple-dialogs-sc.diff
layout-simple-dialogs-scp2.diff
layout-simple-dialogs-solenv.diff
layout-simple-dialogs-svx.diff
layout-simple-dialogs-sw.diff
layout-simple-dialogs-toolkit.diff

# FIXME: hack to avoid internal copiler error with gcc (SUSE Linux) 4.3.2 20080613 (prerelease)
#        on openSUSE-11.1-alpha0; pmladek is discussing it with the gcc team
toolkit-layout-gcc-4.3.2-hack.diff, pmladek

# Fix crasher with find & replace dialog
layout-find-dialog-crash-fix.diff, n#477854, kohei

[ LocalizeLayout ]
# These can be enabled once remove-paragraph is upstreamed
# FIXME dev300 cws-layoutdialogs-toolkit-localize.diff
# FIXME dev300 layout-tab-toolkit-localize.diff

[ AutoCorrectCapsLock ]
SectionOwner => kohei
SectionIssue => i#62234

autocorrect-accidental-caps-lock-offapi.diff
autocorrect-accidental-caps-lock-officecfg.diff
autocorrect-accidental-caps-lock-sc.diff
autocorrect-accidental-caps-lock-sw.diff
autocorrect-accidental-caps-lock-svx.diff
autocorrect-accidental-caps-lock-vcl.diff


[ UnitTesting ]
SectionOwner => jholesov
SectionIssue => i#87469
# FIXME: file more issuses when ready

# teach build.pl what to do with prj/tests.lst's
unittesting-build-pl.diff

# the tests
unittesting-basebmp.diff
unittesting-basegfx.diff
unittesting-basic.diff
unittesting-bean.diff
unittesting-bridges.diff
unittesting-canvas.diff
unittesting-cli_ure.diff
unittesting-codemaker.diff
unittesting-configmgr.diff
unittesting-connectivity.diff
unittesting-cppu.diff
unittesting-cppuhelper.diff
unittesting-dbaccess.diff
unittesting-desktop.diff
unittesting-dtrans.diff
unittesting-embeddedobj.diff
unittesting-extensions.diff
unittesting-filter.diff
unittesting-forms.diff
unittesting-fpicker.diff
unittesting-framework.diff
unittesting-chart2.diff
unittesting-idlc.diff
unittesting-io.diff
unittesting-javaunohelper.diff
unittesting-jurt.diff
unittesting-jvmaccess.diff
unittesting-linguistic.diff
unittesting-offapi.diff
unittesting-o3tl.diff
unittesting-package.diff
unittesting-qadevOOo.diff
unittesting-registry.diff
unittesting-ridljar.diff
unittesting-sal.diff
unittesting-salhelper.diff
unittesting-sandbox.diff
unittesting-sax.diff
unittesting-sc.diff
unittesting-scripting.diff
unittesting-sd.diff
unittesting-sfx2.diff
unittesting-shell.diff
unittesting-slideshow.diff
unittesting-sot.diff
unittesting-starmath.diff
unittesting-stoc.diff
unittesting-store.diff
unittesting-svtools.diff
unittesting-svx.diff
unittesting-sw.diff
unittesting-testshl2.diff
unittesting-testtools.diff
unittesting-toolkit.diff
unittesting-tools.diff
unittesting-ucbhelper.diff
unittesting-udkapi.diff
unittesting-vcl.diff
unittesting-writerfilter.diff
unittesting-xmerge.diff
unittesting-xmlhelp.diff
unittesting-xmloff.diff
unittesting-xmlscript.diff
unittesting-xmlsecurity.diff
unittesting-ucb.diff

[ UnitBootstrap ]
SectionOwner => michael
SectionIssue => i#86525

# initial cut at a unit testing framework
unit-deliver.diff
unit-comphelper.diff
unit-sc.diff

[ ReducedDefaults ]
SectionOwner => jholesov

# disable automatic spellchecking by default
reduced-disable-auto-spellcheck.diff

[ Features ]
novell-win32-odma.diff, i#6885, i#32741, tml

[ VOSremoval ]

# remove vos/process.hxx
# FIXME: in vcl, ExtCommandLine was removed, and the osl_ calls were used.
# Should we use the new salhelper::ExtCommandLine there, or should we remove
# even salhelper::ExtCommandLine, and introduce the functionality where
# needed?  (It's on one place only)
vosremoval-process.diff

# remove vos/diagnose.hxx
vosremoval-diagnose.diff

# remove vos/ref*.hxx
vosremoval-reference.diff

# remove vos/thread.hxx
vosremoval-thread.diff

# remove vos/mutex.hxx
vosremoval-mutex.diff

# remove vos/conditn.hxx
vosremoval-conditn.diff

# remove vos/macros.hxx
vosremoval-macros.diff

# remove vos/xception.hxx
vosremoval-xception.diff

# remove vos/signal.hxx
vosremoval-signal.diff

# remove vos/module.hxx
vosremoval-module.diff

# remove vos/security.hxx
vosremoval-security.diff

# remove vos/socket.hxx
vosremoval-socket.diff

# remove includes of non-existing/unused headers (vos/process.hxx,
# vos/dynload.hxx, vos/object.hxx, vos/types.hxx, vos/runnable.hxx,
# vos/thread.hxx)
vosremoval-unused-stuff.diff

# remove vos/pipe.hxx
vosremoval-pipe.diff

# remove vos/timer.hxx, introduce salhelper/timer.hxx
vosremoval-timer.diff

# removel VOSLIB from makefile.mk's
vosremoval-cleanup.diff


[ OxygenOfficePalettes ]
palette-enhanced-arrow.diff
palette-enhanced-color.diff
palette-enhanced-dash.diff
palette-enhanced-gradient.diff
palette-enhanced-hatch.diff

[ DebianBaseOnly ]
#FIXME#configures-explicit-arch.diff

[ Fixes ]
svx-sdrobjeditview-update-edit-area.diff, n#305205, n#347355, rodo
goodies-eps-filter-unix.diff, n#200053, rodo
xmloff-import-crash-fix-for-i90562.diff, i#90562, flr

[ EMFPlus ]
SectionOwner => rodo
emf+-cppcanvas-renderer.diff
emf+-cppcanvas-emfplus.diff
emf+-offapi-renderer.diff
emf+-vcl-bitmap.diff
emf+-vcl-renderer.diff
emf+-svtools.diff
emf+-scp2-renderer.diff
emf+-crash-fix.diff, n#361534, rodo
vcl-grey-alpha-unix-sal-bitmap.diff, rodo
emf+-multipart-objects.diff, rodo
emf+-use-canvas-only-for-emf+.diff, rodo
emf+-embedded-mf-image.diff, rodo
vcl-pluggable-mtf-renderer.diff, thorsten
emf+-cppcanvas-input-validation.diff, thorsten

[ LinkWarningDlg ]
linkwarn-dlg-in-apps.diff, n#348149, thorsten
linkwarn-sfx2-disable-cb-persistency.diff, n#348149, thorsten

linkwarn-svtools-miscopts-bits.diff, n#348149, thorsten

[ LinkWarningDlg ]
linkwarn-officecfg-disable-msgbox.diff, n#348149, thorsten
linkwarn-svx-warning-dlg.diff, n#348149, thorsten
linkwarn-sd-no-dnd-links.diff, n#348149, thorsten

[ IntegrateExtensions ]
scp2_build_extensions.diff
scp2_makefile_extensions.diff
scp2_extensions.diff
scp2_extensions_sdf.diff
scp2_extensions_templates.diff
extensions_configure.diff
extensions_packinfo.diff
# Originally, it was for OxygenOffice but the language depended Sun Templates Pack also require this changes
premium-splitted-language-packages.diff
scp2_accessories_templates.diff
scp2_accessories_templates_makefile.diff
extensions_deliver.diff

[ OxygenOfficeDefaultSettings ]
# Always enable extended tips
i27928-extended-tips-on.diff
# We like rules in impress
i54709-default-impress-ruler.diff
# Full branding for Windows installer
ooop-win32-installer-branding.diff
#Update URL added to the OxygenOffice
ooop-update-URL.diff
#Adding hidden buttons to the toolbar
#for epmty document
toolbars_framework.diff
#for Calc
toolbars_sc.diff
#for Draw and Impress
toolbars_sd.diff
#for Writer
toolbars_sw.diff
#Always use default iconset
always_default_iconset.diff

[ OxygenOfficeExtras ]
# Adding new items to extras module
accessories_build.diff
accessories_target.diff
# Adding extended support for additional gallery localizations
gallery_galtheme.diff
gallery_inc_gallery.diff
gallery_inc_galtheme.diff
# Include new elements into scp2 module
scp2_accessories.diff
scp2_accessories_sdf.diff
scp2_build_accessories.diff
scp2_directory_accessories.diff
scp2_makefile_accessories.diff

# Splitting new contents into new packages
# NOTE: premium-splitted-language-packages.diff moved to IntegrateExtensions section, but it contains all required function for OOOP too.
premium-splitted-language-pack-solenv.diff
premium-splitted-packages.diff

# Add configure options
extras_configure.diff
# Add environment variables base on new configure switches
extras_solenv.diff
extras_wizard.diff
extras_fonts.diff
# Add our macros stuffs to wizard module
premium_macro_build.diff
premium_macro_dialog.diff
premium_macro_script.diff
premium_macro_target.diff
# Add menu elements for Users guide
helpdocument-genericcommand.diff
# Uniformize Help menu of us
helpdocument-menubar.diff
# Adding OOoWikiPedia commands and DataMiner toolbars
ooowikipedia_genericcommands.diff
ooowikipedia_writer.diff
ooowikipedia_toolbars.diff

[ Win32Only ]
mozilla-source-1.7.5.patch.diff, i#84961, tml

[ TemporaryHacks <= ooo300-m12 ]
sw-field-patch-m12.diff, flr, n#248354

[ TemporaryHacks > ooo300-m12 ]
sw-field-patch.diff, flr, n#248354

[ TemporaryHacks ]

# First work on field enhancements...
offapi-field-patch.diff, flr, n#248354
svtools-field-patch.diff, flr, n#248354
xmloff-field-patch.diff, flr, n#248354
sw-field-patch-fix-competing-protection.diff, flr, n#400884

[ RadioButtons ]
# Add a GroupName property to RadioButtons so that RadioButtons don't need to
# share the same name to be part of the same group.
forms-radio-button-group-names.diff, n#310052, i#30823, jonp
# depends on forms-radio-button-group-names.diff,
xl-import-formradiobutton.diff, noelpwer, i#30823
# persist the groupname for basic dialogs also
dialog-groupname-persist.diff, noelpwer, i#30823

[ NovellOnly ]
#only enable enhanced field work in Novell OOo by default
officecfg-field-patch.diff, flr, n#248354


[ Fixes ]
sc-xclimpchangetrack-discard-bogus-formula-size.diff, n#355304, tml

[ Glib2 ]
external-package-glib2.diff
scp2-package-glib2.diff
setup_native-package-glib2.diff

[ Fixes ]
fix-ppt-linespacing-import-export.diff, n#355302, rodo
sw-section-import-fix.diff, n#364533, freuter
sw-allow-negative-spacing.diff, n#364534, freuter

sd-slideshow-slideshowview-transformation-fix.diff, rodo

[ Fixes ]
sd-view-zoom-fix.diff, n#380013, i#88939, thorsten
sd-inplace-deselection-fix.diff, i#89283, n#384506, thorsten
svx-hatched-textmove.diff, n#384563, i#89661, thorsten
sd-custom-show-fix.diff, n#355638, i#90145, thorsten

# hyperlink issue with numeric slide names in Impress
sd-update-relative-links.diff, n#355674, i#55224, rodo

# have Impress outline text boxes shrink font automatically when text
# starts to overflow
fit-list-to-size.diff, i#94086, thorsten
fit-list-to-size-ui.diff, i#94086, thorsten
fit-list-to-size-style-defaults.diff, i#94086, thorsten
fit-list-to-size-popup.diff, i#94086, thorsten

# apply this patch if you need to disable vcl grabbing your mouse -
# after applying the patch, set SAL_NO_MOUSEGRABS in your env
#vcl-disable-mouse-grab.diff

# adhere to
# http://standards.freedesktop.org/basedir-spec/basedir-spec-0.6.html
sal-xdg-config-dir.diff, i#91247, thorsten

# temporary fix. does no harm and gets the job done but its not
# beautiful. Since the whole section needs to be refactored anyway decided not
# to waste for time with this fix but to focus on the refactoring
sw-nested-positionned-tables-ww8-import-fix.diff, n#376688, flr

xmloff_dis26300_conformance.diff, n#396280, flr

# don't do dns lookup on startup
# TODO file up-stream
lockfile-dont-do-dns-lookup.diff, n#389257, jholesov
# and don't expose unnecessary symbols
# TODO file up-stream
lockfile-less-symbols.diff, jholesov

[ InternalMesaHeaders ]
internal-mesa-headers-config_office.diff, fridrich
internal-mesa-headers-slideshow.diff, fridrich
internal-mesa-headers-mesa.diff, fridrich


[ Lockdown ]
# Disable UI [toolbars, menus] customization
ui-desktop-integration.diff, michael


[ InternalCairo ]
cairo-prj-d-lst.diff
cairo-prj-build-lst.diff
cairo-cairo-1-4-10-diff.diff
cairo-makefile-mk.diff


[ WWInProgress ]
sw_layout_in_table_cell_fix.diff, n#367341, flr

sw-collapse-empty-table-par-like-html.diff, n#376690, flr

sw-field-checkbox.diff

sw-team-pane.diff

sw-do-not-capture-surround-through-objs-patch.diff, n#367341, i#18732, flr

[ Fixes ]
cppcanvas-fix-roundcorners.diff, rodo
slideshow-media-control.diff, i#91250, thorsten

sd-macro-nudges.diff, i#91249, n#188199, thorsten

sd-more-title-styles.diff, i#23221, thorsten
officecfg-bighandles-default.diff, thorsten

config_office-msvc-compat.diff, i#93332, thorsten

# support msvc 2008 express in oowintool
buildfix-msvc2008-express.diff, i#93332, jholesov

xmlsecurity-disable-moz.diff, thorsten
solenv-paths.diff, caolan
cairocanvas-colorspace-fix.diff, thorsten
slideshow-colorspace-fix.diff, thorsten
slideshow-cutblack.diff, thorsten

[ OpenGLTransitions ]
slideshow-plugin-transition-fix.diff, n#430449, rodo

[ Fixes ]
sw-source-filter-ww8-continous-section-break-fix.diff, n#405071, i#91395, fridrich

sw-ww8-fieldandcharstyle.diff, n#414471, i#93105, fridrich

unoxml-boost-workaround.diff, thorsten

sw-updateindex-crash.diff, n#388069, fridrich

sw-source-filter-xml-xmltbli-uninitializedvalue.diff, fridrich

vcl-salnativewidgets-uninitializedvalues.diff, fridrich

[ LocalizeFixes ]
# it is Y axis, not X one [in Spanish]
chart2-es-eje-Y.diff, i#83821, rengelha

math-draw-generic-name-localize.diff, i#93909, rengelha

[ KDE4 ]
SectionOwner => jholesov
SectionIssue => i#90618

# Initial KDE4 support by Eric Bischoff
kde4-configure.diff
kde4-kab.diff
kde4-kdebe.diff
kde4-kdedata.cxx.diff
kde4-kde_headers.diff
kde4-salnativewidgets-kde.diff

# More KDE4 bits by Bernhard Rosenkraenzer
kde4-fpicker.diff, i#90618, brosenk

[ PieceBits ]
SectionOwner => michael
# Experimental piece-wise source code split for build
piece-build.diff
piece-deliver.diff
piece-checkdll.diff
# zipintro is not kind to us ...
piece-desktop.diff
piece-target.diff
piece-rsc.diff
piece-startup.diff
piece-basic.diff
piece-svx.diff
# zipintro is not kind to us ...
piece-scripting.diff
piece-helpcontent2.diff
piece-sdext.diff
piece-writerfilter.diff
piece-ridljar.diff
piece-offapi.diff
piece-offuh.diff
piece-cppuhelper.diff
piece-cpputools.diff
piece-bridges.diff
piece-stoc.diff
piece-unoil.diff
piece-javaunohelper.diff
piece-io.diff
piece-remotebridges.diff
piece-scp2.diff
piece-solenv.diff
piece-services.diff
piece-ant.diff
piece-extensions.diff
piece-setup_native.diff
piece-forms.diff
piece-reportdesign.diff
piece-sc.diff
piece-xmerge.diff
piece-postprocess.diff
piece-packimages.diff
piece-automation.diff
piece-cli_ure.diff

[ BFFixes ]
fit-list-to-size-binfilter.diff, i#94086, thorsten

[ ArkOnly ]
SectionOwner => brosenk

# See what breaks if we build with more optimizations
testing-more-optimizations-ark.diff

[ Fixes ]
#win32-mergemodule-pm.diff, tml
svtools-update-ole.diff, n#411855, thorsten
vcl-logical-bmp-size.diff, i#92902, thorsten
sdext-presenterview-thread-suicide.diff, n#425072, thorsten
ppt-continuous-numbering-fix.diff, n#411565, thorsten
vcl-fix-screen-number.diff, n#426521, i#93986, thorsten
vcl-fix-gtk-fullscreen-crash.diff, i#93805, dtardon
timely-canvas-disposing.diff, i#94007, thorsten
jurt-jnilib-deliver.diff, i#93516, thorsten
solenv-silent-mac-build.diff, thorsten
instset-macos-langpacks.diff, i#64937, cloph
slideshow-blink-text-fix.diff, i#96047, thorsten
canvas-directx-lostdevice-fix.diff, n#445628, thorsten

# fix wrong en-US accelerators in Impress
fix-sd-accelerators.diff, n#463733, i#97088, jholesov

[ Fixes < ooo300-m14 ]
svx-ppt-textstyle-fix.diff, n#443127, thorsten

[ ExtensionFixes ]
pdfimport-system-poppler.diff, i#92920, cmc
pdfimport-lax-restrictions.diff, i#90468, thorsten

[ NovellOnlyWin32 ]
i92372.diff, i#92372, n#353143, tml

[ Fixes ]
#sw-import-TOC.diff ,n#404254, Amelia Wang
gnome-fpicker-transient-win.diff, i#92878, cmc
gnome-fpicker-main-thread.diff, i#93366, cmc
# only build full package for en_US, use langpacks for the rest
instset-prefer-langpacks.diff, thorsten
# call unopkg such that java does not require interactive session
solenv-installer-unopkg-call.diff, thorsten
# Make tooltips for the icon on the desktop and in the Start Menu on
# Windows less lame
win32-tooltips.diff, tml
# fix problem with outline numbering broken in master document
sw-outline-numbering-broken-fix.diff, i#96092, n#445536, Amelia Wang
vcl-pdf-drawarc-fix.diff, i#97399, thorsten

[ OxygenOfficeDefaultSettings ]
#Create langpack and full installers
ooop-langpack-policy.diff

[ NovellOnly ]
mail-document-subject.diff, n#459176

[ UnstableLibwpd ]
config_office-testing.diff
libwpd-testing.diff
libwpg-testing.diff
libwps-testing.diff
writerperfect-testing.diff

[ UbuntuOnly ]
# Add patch to force use of gvfs fuse path needed when gnome-vfs/gio is disabled
ubuntu-gnome-fpicker-gfile-fuse.diff, ccheney