summaryrefslogtreecommitdiff
path: root/patches/src680/apply
blob: 720a987c6062f5100ff94179231954b0104a17ce (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
#
# The format of this file is:
#

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

PATCHPATH=.:../evo2:../vba:../mono:../64bit:../cairo:../scsolver:../gstreamer

OLDEST_SUPPORTED=ood680-m5 OOO_2_0_4

# -------- Functional sub-sets --------

Common : BuildBits, ParallelMake, TemporaryHacks, FixesNotForUpstream, \
	 Fixes, FedoraFixes, Defaults, Features, VCL, Misc, \
	 Icons, Branding, VBABits, VBAObjects, CalcFixes, Leaks, Egg, \
	 QuickStartTray, SpeedImageList, GStreamer, Security
LinuxCommon : Common, BuildBitsLinuxOnly, LinuxOnly, SystemBits, CWSBackports, GCJ, \
	      QPro, Lwp, cairocanvas, msaccess, KDE, \
	      64bitPatches, Fpickers, Mono, AddressBooks, QuickStarter
Win32Common : Common, Win32Only, NotDebian
64bit : SystemJavaBits
# Binfilter patches: a special distro; applied only when building with binfilter
Binfilter : BFBuildBits, BFFixes, BFIcons, BF64bitPatches
# Localization patches to localize.sdf files: applied only when we have langpacks
Localize : SDFPatches
# Novell
NovellBase : LinuxCommon, NovellOnly, NovellOnlyUnix, \
	     NotDebian, Lockdown, CalcSolver
SUSE-9.1  : NovellBase
SUSE-9.2  : NovellBase
SUSE-9.3  : NovellBase
SUSE-10.0 : NovellBase
SUSE-10.1 : NovellBase, BerkeleyDB43
SUSE-10.2 : NovellBase, BerkeleyDB43
SUSE      : NovellBase, BerkeleyDB43
SUSE-PPC  : NovellBase, BerkeleyDB43, SystemJavaBits, GCJWorkaround
SUSE-64   : NovellBase, BerkeleyDB43, 64bit, GCJWorkaround
# Debian
DebianBase : LinuxCommon, DebianBaseOnly, SystemJavaBits, Lockdown, STLport5, CalcSolver
Debian : DebianBase, DebianOnly, DebianSidOnly, Debian32Only, BerkeleyDB43, ICU36
DebianSarge : DebianBase, DebianOnly, DebianSargeOnly, Debian32Only
Debian64 : DebianBase, DebianOnly, DebianSidOnly, BerkeleyDB43, ICU36, 64bit
# Ubuntu
UbuntuBased : DebianBase, UbuntuOnly, BerkeleyDB43
UbuntuDapper : UbuntuBased, UbuntuDapperOnly, Debian32Only
UbuntuDapper64 : UbuntuBased, UbuntuDapperOnly, 64bit
UbuntuEdgy : UbuntuBased, UbuntuEdgyOnly, Debian32Only
UbuntuEdgy64 : UbuntuBased, UbuntuEdgyOnly, 64bit
UbuntuL10n : UbuntuBased, UbuntuL10nOnly, Debian32Only
# a copy of the UbuntuDapper* lines ("Ubuntu: UbuntuDapper" doesn't work)
Ubuntu : UbuntuBased, UbuntuDapperOnly,  Debian32Only
Ubuntu64 : UbuntuBased, UbuntuDapperOnly, 64bit
# DroplineGNOME
DroplineGNOME : LinuxCommon, DroplineGNOMEOnly, Lockdown, NotDebian, Mono, msaccess
# Ark Linux
Ark: LinuxCommon, NotDebian, ArkOnly, BerkeleyDB43, SystemJavaBits
Ark64: LinuxCommon, NotDebian, ArkOnly, BerkeleyDB43, 64bit, SystemJavaBits
# www.pld-linux.org
PLDBase: LinuxCommon, NotDebian, PLDOnly
PLD: PLDBase
PLD64: PLDBase, 64bit
# Mandriva Linux
MandrivaBase: MandrivaOnly, LinuxCommon, MandrivaOnlyUnix, LockDown
Mandriva: MandrivaBase
Mandriva64: MandrivaBase, 64bit, GCJWorkaround
# Frugalware Linux
FrugalwareBase: LinuxCommon, FilePickers, GnomeVFS, GlobalDesktopFiles, NonArkCommon, NoRpath, NovellOnly, NovellOnlyUnix, NotDebian, SystemJavaBits, GCJWorkaround, FrugalwareOnly
Frugalware: FrugalwareBase
Frugalware64: FrugalwareBase, 64bit
QiLinux: LinuxCommon, GlobalDesktopFiles, FilePickers
#Gentoo
GentooBase : LinuxCommon, GentooOnly, NotDebian, Lockdown, CalcSolver, SystemJavaBits, ICU36
GentooUnstable: GentooBase, GentooExperimental, BerkeleyDB43, STLport5, 64bit
Gentoo : GentooBase
Gentoo64: GentooBase, 64bit
# Win32
Win32 : Win32Common 
PlainWin32 : Win32
# translate.org.za
translate-org-za-linux: translate-org-za-common, LinuxCommon, Common, Lockdown
translate-org-za-win32: translate-org-za-common, Win32Common, Common
# Novell
NovellWin32: Win32, NovellOnly, NovellOnlyWin32, Lockdown, CalcSolver, cairocanvas
NovellWin32ISO: Win32, NovellOnly, NovellOnlyWin32, Lockdown, CalcSolver, cairocanvas
# -------- [ Tag [ >= <tag> etc. ], ] patch sets --------


[ TemporaryHacks ]

# Disable -Werror - this should become a configure flag in future ...
buildfix-no-werror.diff, michael

# adding glib-2.0 and ORBit-2.0 to pkgconfig modules
buildfix-pkgconfig-gconfbe.diff, i#68220, michael
# add idl target to toplevel makefile
makefile-idl-build.diff, noelpwer
# 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
# disable recovery dialog when hacking
disable-recovery.diff, i#54275, michael
# Don't stat tons of config files we don't need to read on startup
speed-configmgr.diff, i#56783, michael
# 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 myspell linked list implementation with hashed implementation
# Reduces myspell mem usage by more than half (3.7M to ~680K)
myspell_hashify.diff, i#50842, dkeskar

# build with libxslt >= 1.1.15
buildfix-new-xslt.diff, i#56697, aprosky

# Don't stat /home a zillion times -- needs some love see iz comments
file_url.diff, i#57961, mikeleib

# Use -Bdirect linking
speed-bdirect.diff, i#58119, michael

# libulingo is required for internal hunspell too i#FIXME
lingucomponent-ulingo-fix.diff, martink

# a change to the word import filter to improve speed 
# (12-14% in measured cases) 
ww8scan.diff, i#53055, mikeleib

# smoketest hacks to work without instsets
# FIXME is this upstreamable at all?
smoketest-noinstall.diff, martink

# 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

#Chinese english <-> localized name correct.
localized-fontname.diff, i#68839,  jianhua

#Chinese transtlation between Simplified and Traditional.
#patch from firefly.
i18npool-chinese-char-dic.diff, i#65145, n#200505, jianhua

#set default varchar lenght to 100.
dbaccess-default-varchar-lenght.diff, i#62664, jianhua

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

# Improve the behavior of input fields inline editing.
sw-input-field-inline-edit.diff, Zhang Yun

# add SPARC platform to automation
automation-sparc-platform.diff, i#66140, rengelha

# FIXME: OOo does not start when svtools/source/fsstor/fsstorage.cxx
# is compiled with -Os with gcc 4.1.2 20060913
svtools-fsstor-temporary-O0.diff

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

# 64bit - return values smaller than 16bytes                                    
64bit-returning-small-struct.diff, i#71815, caolan                              
# 64bit - don't destroy floats                                                  
64bit-return-double.diff, i#71888, jholesov                                     

# fix build with newer gccs
buildfix-gcc-4.1.2-NULL.diff, rengelha, i#70684

[ CWSBackports ]
# 64bit stuff
cws-sixtyfour09.diff
# extract of cmcfixes28
cws-cmcfixes28.diff
# extract of the sw parts of cmcfixes30
cws-cmcfixes30.diff
cws-obr04-escaping.diff
cws-obr04-quotes.diff

# [ LinuxOnly ]

# use fontconfig for font fallback
# upate it for cjk charactor check   
# name convertion localized <-> english font name 
fontconfig-substitute.diff, i#54603, mklose
fontconfig-substitute2.diff, i#54603, mklose
fontconfig-substitute3.diff, i#54603, mklose
# for localized name to revert some code in psprint
fontconfig-substitute-localizedname.diff,  jiao jianhua


[ GCJ ]

# work around missing symbol in libgcj...
bean-gcj-bug-workaround.diff, rengelha
# gij/libgcj paths...
jvmfwk-gij-paths.diff, rengelha


# Fixes that were not accepted up-stream, but are still useful
[ FixesNotForUpstream ]
# Fix OLE2 property export.  The section size was incorrect, i#71343, jody
ole2-prop-export-fix.diff

# 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

# use fast/native gtk+ rendering, unless we have the broken
# qt<->gtk theme selected
gtk-kde-fix.diff, i#50857, michael

# Make debugging easier by allowing cerr << aOUString << endl
sal-oustring-debug.diff, i#65920, jholesov

# Default to splash without the Sun logo
community-splash.diff, jholesov

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

# add mozilla certificate dir detection to soffice
soffice-detect-mozilla-certificates.diff


[ Fixes ]
# backport of i70759/vclshowstop07 cws
vcl-vclshowstop07-i70759.diff, i#70759, rodo

# backport revision 1.31.61.1 from cws impress107 to fix crash on
# the impress wizard
sd-slideshowimpl-check-for-viewframe.diff, i#69530

# let sd accept uri-list drop, n#183719
sd-accept-uri-list-drop.diff, n#183719, rodo

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

# 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

# poke gnome-screensaver every 30 seconds during slideshow, n#169207, rodo
vcl-gnome-screensaver-poke.diff, n#169207, rodo
config_office-dbus-check.diff, n#169207, rodo

# Fix NFS / flock issue n#104655
# nfs-flock.diff, i#54586, michael
# fix check box rendering issue - n#80447
check-buttons-rendering-fix.diff, michael
# Fix default Writer bullets not exporting to MS format intact n#10555
sw-bullet-interop-fix.diff, michael
# fix the wizards crasher n#10512
wizards-crasher-fix.diff, i#68079, michael
# update pyuno docs from www.oo.o
pyuno-update-docs.diff, i#63846, michael
# replace PyMem_DEL() with PyObject_Del() on object dealloc functions to free
# objects the right way (regcomp segfaulted on openSUSE-10.2)
# replace PyObject_NEW with PyObject_New because the macro version most
# probably does not preserve binary compatibility across Python versions
# and is therefore deprecated in extension modules.
pyuno-objects-allocation.diff, i#71078, pmladek
# disable font management dialog in padmin
padmin-nofontconfig.diff, michael
# Improve the web bullet export / export to png not gif.
sd-export-html-theme.diff, i#23353, michael
sd-export-html.diff, i#23353, michael
sd-export-html-translations.diff, michael
sd-export-html-descr.diff, i#23353, michael

# fixes implicit declaration of functions that use their correct prototypes to
# allow the lightweight buffer overflow checking to work, see -D_FORTIFY_SOURCE
warning-implicit-declaration-soltools.diff, i#68295, pmladek

# temporary hacks to remove warnings in the unused code,
# required by the SUSE build system
warning-uninitialized-variables-sw.diff, i#49385, pmladek
# the following three warnings appear just on ppc
warning-uninitialized-variables-remotebridges.diff, pmladek
warning-uninitialized-variables-sw2.diff, pmladek
warning-uninitialized-variables-vcl.diff, pmladek
# run crash_report only when it is built
sal-when-to-run-crash-report.diff, i#54121, pmladek

# Fix the print error dialog and pop-up when unable to print. BINC 64010
print-error.diff, i#44695, brosenk

# Fix bibliographic encoding n#155725, 
# update to throw a exception and give a correct error message.
dbase-utf8.diff, i#62664, michael

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

# 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

# fixes warnings about uninitialized variables
warning-uninitialized-variables-sd.diff, i#49381, pmladek

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

# export <STYLE type="text/css">, not <STYLE> to silence
# validator.w3.org; Ubuntu 20294
sw-html-export-style-type.diff, i#63081, martink

# fix crash when selecting email application
fix_filedlghelper.diff, martink

# Greek font setting
helpcontent2-greek-fonts.diff, i#64578, n#166267, pmladek

# Hindi font setting
helpcontent2-hindi-fonts.diff, i#71573, pmladek

# Don't talk about sending crash report when it's disabled
recovery-disabled-crashreporter.diff, i#65325, n#164899, jholesov

# Using any filter when browsing samba shares results in no files displayed
filechooser-samba-problem.diff, i#65330, n#167900, noelpwer

# More fixes of that kind
fix-stlport-includes.diff, i#63732, martink

# Greek font setting
office-cfg-vcl-greek-fonts.diff, i#64577, n#166267, pmladek

# fixes some wrong usages of the function AddBytes that would malform the xml output
sax-writer.diff, i#66693, pmladek

# make sure document scripts are displayed in SfxMacroTabPage dialog
sfxconfig-grplistbox-fix.diff, i#66752, noelpwer

# workaround a crash in xmlhelp
crash-xmlhelp.diff, i#67740, jholesov

# HZ will no longer defined by glibc because the value is architecture dependent.
# sysconf(_SC_CLK_TCK) must be used instead, i#68616
sal-architecture-independent-clock-ticks.diff, i#68616, pmladek

# fix regression with default method handling for basic
basic-dfltmethod-bug.diff, i#69718, noelpwer

# remaining bits from cws sixtyfour08, fixes crash in base on amd64.
cws-sixtyfour08.diff, mklose

# Mozilla/Thunderbird addressbook filename encoding issue
mozilla-ab-filename-encoding.diff, i#69327, rvojta

# fix crash in impress/draw on amd64
sd.sal_uInt32_aslong.diff, i#70601

# && where & should be
svx.incorrectand.diff, i#71388, hmth
sc.incorrectand.diff, i#71389, hmth

# this patch fixes searching for JREs
# it allows to search subdirs, so all JREs below /usr/lib/jvm are offered even when the first one is found in /usr/lib, ...
# it pushes the right path, so one JRE is not searched several times (fixes the first very slow start)
jvmfwk-searched-paths.diff, n#203830, n#222708, pmladek

# Pre- and postprocessing capabilities for loading and saving.
sfx2-pre-and-postprocess-during-save-load.diff, i#71939, florian

# outline mode editing crasher backported from cws impress110
sd-outline-mode-edit-crasher-fix.diff, i#69010, rodo

[ BFFixes ]

# && where & should be
binfilter-incorrect-and.diff, i#71389, jholesov

[ Leaks ]

# silly leaks around the place
leak-sal-file.diff, i#49510, michael

[ QuickStartTray ]

# An improved built-in quick-starter applet / systray thing.
speed-quickstart.diff, i#57872, michael
# An improved built-in quick-starter applet / systray thing.
speed-quickstart-eggtray.diff, i#57872, michael
# Some i18n for that
speed-quickstart-i18n.diff, i#57872, michael
# Transparency updates, fix legend, menu positioning, instant apply
speed-quickstart-transparent.diff, i#68657, michael
speed-quickstart-eggtray-transparent.diff, i#68657, michael


[ QuickStarter ]

# External splash screen implementation / 2nd time accelerator
# (Old version of these is in CWS unxsplash)
# build
unxsplash-desktop.diff, i#60696, michael/jholesov
# com.sun.star.office.PipeSplashScreen service
unxsplash-desktop-unx-splash.diff, i#60696, michael/jholesov
# tiny external splash application
unxsplash-desktop-unx-source.diff, i#60696, michael/jholesov
# installation
unxsplash-scp2.diff, i#60696, michael/jholesov

# Close the splash window as soon as possible
# FIXME Obsolete?  Breaks ooqstart after m179...
#speed-ooqstart-hide-asap.diff, i#60696, jholesov

# Handle --with-intro-bitmaps= configure switch
speed-ooqstart-intros.diff, i#60696, jholesov


[ CalcFixes ]
# Make cut and paste nicer
sc-paste-dialog.diff, i#15509, michael
sc-paste-redraw.diff, i#15509, michael
# make some symbols from sc visible when compiling with gcc4, necessary since m121
gcc4-visibility-sc.diff, i#53261, pmladek
# Don't fail when building --without-stlport4 [actual code problem]
sc-without-stlport.diff, i#64968, brosenk
# ordinal suffix iteration
sc-iteration.diff, i#47233, michael
# 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
# temporary hacks to remove warnings in the unused code,
# required by the SUSE build system
warning-uninitialized-variables-sc.diff, i#49351, pmladek
# Make the delete key happy again in starcalc  - wontfix [!]
gui-sc-delete.diff, i#17965, michael
# Fix for b.x.c 62193
sc-sheet-double-click-rename.diff, i#45245, jody
# 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
# Hides the filtered rows when height of rows are changed bxc #62161
sc-filter-hide-filteredrows.diff, i#35581, jody
# allows not to delete nonfiltered rows while deleting the filtered ones bxc #62186
sc-no-delete-filteredrows.diff, i#33851, jody
# Autofill doesnt fill filtered rows bxc 62499
sc-filters-fill-fix.diff, jody
# Provision for dynamic range in data pilot bxc 62522
sc-datapilot-dynamic-range.diff, i#23658, jody
# fix for the Data Pilot crasher.
sc-pv-crasher.diff, i#23658, i#47145, jody
# Provision for data-pilot to give autoformat bxc #62162
sc-datapilot-autoformat.diff, i#37388, jody
# BXC 62488 : Allows insertion of rows by shifting down
#sc-paste-insert-rows.diff disable...
# Fix for datapilot crash when clicking outside dialog
sc-datapilot-crash-fix.diff, jody
# Fix for datapilot crash on remote databases
sc-dp-database-crash.diff, jody
# Fix for autotriming of autofilter choices bxc 65945 Issue FIXME
sc-autofilter-autotrim-choices.diff, jody
# Display min password length in dialog BINC 773
sc-save-password-minlength.diff, i#21923, jody
# Allow dnd in Change record mode for Data source BINC 70845
sc-change-record-dnd.diff, i#44982, jody
# Fix for b.x.c 55943 - insert note on right click
sc-insert-note-on-right-click.diff, i#47442, jody
# disable cut-n-paste on right-click menu for datapilot - n#75436
sc-datapilot-cut-paste-disable.diff, jody
# Improve exporting spreadsheets to HTML
sc-html-export-tables.diff, i#66439, jholesov
# keybindings: <ctrl> +/‑ to insert/delete a complete line in calc (X#62530) 
calc-new-acceleration.diff, i#38108, michael
# compatibility for numbers in string cells (with leading/trailing space) - i#47811
sc-string-arg.diff, i#47811, muthusub
# div/0 error export by div function
sc-div.diff, i#47724, muthusub
# Support for formula input to start with '+' or '-' i#52179
sc-startformulawplus.diff, i#20496, muthusub
# To make CSV Text Import settings persistent
sc-preserve-imp-opts.diff, i#3687, muthusub
# ctrl-back-tick toggle formula view
# noelp (investigating) disable this due to a crash on file open
sc-toggle-formula.diff, i#56202, michael
# Series sum fix to return correct values when x and n are 0
sc-seriessum.diff, i#32269, muthusub
# optimization for loading large pivot tables from xls - i#63686
sc-xls-pivot-optimization.diff, i#63686, jody
# Print_Area/Print_Titles are only relevant for sheet local names, n#191005
sc-xls-builtin-name-scope.diff, jody
# hash item collections, i#TODO, jody
sc-dp-hash-items.diff, jody
# sc-dp-gridlayout.diff, i#68544 n#190970, jody
sc-dp-gridlayout.diff, jody
# div/0 error export by other functions
sc-div-errs.diff, i#47724, muthusub
# Allow Cols/Rows to be resized even if document is read-only, n#TODO, 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, jody

# Accelerate chart rendering with lots of row labels
# disabled; causes http://bugs.debian.org/391875
#speed-chart.diff, i#67271, michael

# improved error/value compatibility
sc-xl-errors.diff, i#47644, michael
# GETPIVOTDATA
sc-get-pivot-data.diff, i#45843, jody
# Add R1C1 address support [ i#49499 for address ]
sc-r1c1.diff, i#20857, jody

# Fix autoshape excel macro import OOo
vba-sc-handleautoshapemacro-import.diff, i#59082, noelpwer
# Fix autoshape excel hyperlink import OOo ( depends on vba-sc-handleautoshapemacro-import.diff )
vba-sc-autoshapes-hyperlinks.diff, i#66550, noelpwer

# Shrink CellInfo size
#sc-size-fillinfo.diff, i#68672, michael

# Fix optional argument isses
sc-optional.diff, i#70041, michael
sc-optional-addins.diff, i#70041, michael

# CSV saved with .XLS extension should load in calc
sc-detect-csv-saved-as-xls.diff, i#70809, jholesov

[ LinuxOnly ]

# Modify the fpicker makefile causing problems in the win32 build
fpicker-common-build.diff, jholesov

# Markup symbols in Basic to use GCC4 symbol visibility attributes
libsb_gcc4_visibility_markup.diff, i#57949, dkeskar


[ Fixes ]

# Markup symbols in SO3 to use GCC4 symbol visibility attributes
libso3_gcc4_visibility_markup.diff, i#57950, dkeskar


[ LinuxOnly ]

# accelerate linking, by extreme cunning i#63927
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
# removing multimedia menu's X66608
# remove-default-multimedia-menu.diff, rodo, #no-upstream
# Changed the default option in the Templates and Documents dialog.
svtools-default-new-document.diff, rodo
# contextual autocomplete
context-autocomplete.diff, i#22961, michael
# Try to get the font mapping right
gui-metric-fonts.diff, i#63576, noelpwer

# Describe the metric compatible fonts for export mappings
gui-metric-fonts-descr.diff, i#63576, noelpwer

# Fix casts in db_java_wrap.c
db4-jni-casting.diff, rengelha

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

# fall back to the English help even without the symlink, rh#151357
sfx2-fallback-to-en-help.diff, pmladek

# use freetype embolden method instead of bold emulation n#176701. i65520, jianhua
config_office-freetype-embolden-check.diff, i#65520, jianhua
vcl-glyphs-cjk-embolden.diff, n#176701. i#65520, jianhua
#Fix Chinese font name in "Paragrgh Style:" and Chinese font Size name convertion.
svtools-Chinese-font-name.diff i#71759, jianhua

# fix table sorting
sw-sort-fix.diff, i#49629, n#200102, michael

[ Egg ]
# 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

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

[ NotDebian ]

# Fix the system default fpicker
default-system-fpicker.diff, michael
# don't display File->Wizards-> install dictionaries/fonts -
# makes no sense on Linux n#74249
default-no-install-wizards.diff, michael
# 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


[ DebianBaseOnly ]
SectionOwner => rengelha

odk-remove-non-free.diff
sdk-remove-non-free.diff
sensible-ooomua.diff
sensible-browser.diff
no-fontooo-wizard.diff
pyuno-rpath-ooodir.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
ooqstart-etc-openoffice-sofficerc.diff
# build using -O2 on x86 and sparc according to Debian policy.
debian-opt.diff

[ DebianOnly ]

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

[ DroplineGNOMEOnly ]
SectionOwner => DropLine

gui-font-paranoid-fallback.diff, i#63576, noelpwer
pushfont-psstream.diff
novell-cjk-fonts.diff
version-2-0-pre.diff
build-wizard-bitmap-scp.diff


[ MandrivaOnly ]
SectionOwner => gghibo

default-system-fpicker.diff, michael
gcc401-stlport45-include.diff
mandriva-archflags.diff
mandriva-java32_64.diff
db42-fix-jni-includes.diff


[ MandrivaOnlyUnix ]

SectionOwner => gghibo
help-support-mdv.diff
build-wizard-bitmap-scp.diff, michael
office-cfg-vcl-chinese-fonts-i65097.diff, i#65097, gghibo
# change user config dir name from ~/.openoffice.org2.0 to ~/.ooo-2.0
version-2-0-pre.diff, pmladek


[ NovellOnlyUnix ]

# Help Support page
help-support.diff, michael
# mark the files in share/template/<lang>/wizard/bitmap as lang specific
build-wizard-bitmap-scp.diff, michael
# change user config dir name from ~/.openoffice.org1.9.milestone to ~/.ooo-2.0-pre
version-2-0-pre.diff, pmladek
# Push fonts into the ps stream always
pushfont-psstream.diff, michael
# in case the system is panicing; registry/data/org/openoffice/VCL.xcu is
# not installed or broken; used for example if OOo is installed from an
# installation set by ./install --interactive
gui-font-paranoid-fallback.diff, i#63576, noelpwer

# configure some Japanese fonts used on Novell products
# (patch by Mike Fabian mfabian@suse.de)
novell-cjk-fonts.diff, pmladek

# use libxslt from system for xmlhelp / disable sablot
xmlhelp-use-libxslt-from-system.diff, i#30380, rengelha


[ NovellOnlyWin32 ]
SectionOwner => tml

novell-win32-agfa-monotype-fonts.diff, i#63805
novell-win32-installer-branding.diff
novell-win32-vrb-branding.diff, n#191913, i#68817
novell-win32-registry-branding.diff, n#191913
novell-win32-msi-patchability.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 ]
xmlhelp-port-to-db-4.4.diff, i#58474, hmth
gcc401-stlport45-include.diff, gghibo
disable-regcomp-java.diff, i#65026, vmiklos


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

# Disable the recovery report dialog
recovery-report.diff, i#53531, martink
# stop the user having to fight ooimpress constantly
capitalization.diff, i#35338, michael
# Use nicer colors for the charts X#64359
sc-default-color-modify.diff, rodo
# 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
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
# double the graphics cache limits, n#62310
default-graphics-cache.diff, i#46215, pmladek

#
# 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
# 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

# don't use any slow / nasty X fonts
default-no-x-fonts.diff, i#62039, jholesov

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

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


[ SDFPatches ]
sc-standard-filter-options-i18n.diff, i#35579, michael
# fake translations; combo box entries are not visible in the given
# localization if they are not translated
sc-standard-filter-options-i18n-fake.diff, i#66473, pmladek

recovery-disabled-crashreporter-localize.diff, i#65325, jholesov


[ Features ]

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

# Implementation of the layered accelerators
framework-layered-accelerators.diff, i#64717, jholesov

# 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

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

build-identification.diff, tml

checkdeliver-regexp-quoting.diff, rengelha

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

# Fix ODK Java bits
odk-java-wizpanel.diff, michael
# does not crash on grep; add a fallback path
# the shell processing RPM spec files crashes on every error; also it does
# not provide history, so the path of the profile cannot be detected
odk-setsdkenv_unix-in-spec.diff, i#71575, n#215627, pmladek
# add possibility to set ARCH_FLAGS when building libnas
nas-use-arch-flags.diff, pmladek
# fix building on SUSE Linux 9.3; disable the check for valid symlinks
freedesktop-menus-spec.diff, i#46226, pmladek

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

# add missing #include <stdio.h>, breaked build on ppc
buildfix-connectivity-kab-stdio.diff, i#62715, pmladek

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

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

# 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
# allows to install SDK that includes file names with $ (classes)
sdk-filenames-with-dollar.diff, pmladek, i#64801

# buildfix for xorg-7.0/7.1 and internal nas library
buildfix-xorg7-nas.diff, vmiklos, i#64134

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

# Use short TMP and TEMP if possible in Win32 build
win32-use-short-tmp.diff, i#68888, tml

# LFS support
lfs.diff, i#26865, rengelha

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


[ MandrivaOnly ]
SectionOwner => gghibo

mozilla-firefox.diff


[ BerkeleyDB43 ]

# Detect db 4.3.x when using --with-system-db
config_office-system-db-4.3.diff, i#58474, brosenk

# Sun Java is not able to find libdb_java-4.3.so if java.library.path property is not set
system-db-4.3-java-library-path.diff, jholesov

# Port to Berkeley DB 4.3
# FIXME breaks building with db < 4.3
xmlhelp-port-to-db-4.3.diff, i#58474, brosenk
# build this part with db 4.2/4.3/4.4
xmlhelp-port-to-db-4.4.diff, i#58474, hmth


[ ArkOnly ]
SectionOwner => hmth

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


[PLDOnly]
SectionOwner => arekm

# fix build of sal project
solenv-unxlngi4-link.diff, i#66982
# fix for macro browser crash
sfx2-badscript.diff, i#67976

[ BuildBits ]
# buildfix for some JDKs, i#68790
readlicense_oo-xml-apis.diff, cws-cmcfixes27

# Another fix for --without-java
# ...beefed up to always use xsltproc when it's available
filter-always-xsltproc.diff, i#56619, martink

# add automatical detection of serializer.jar into the configure
# add it to classpath on one more place
xalan-serializer-jar-more.diff, pmladek

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

# Make the ldap stuff compile even if system openldap is >= 2.3.x
extensions-ldap-system-openldap-2.3.x.diff, i#64920, brosenk
# fix LINK
arm-LINK-is-CC.diff, rengelha
s390-LINK-is-CXX.diff, rengelha

# fixes warnings about missing return values
warning-return-values-cppcanvas.diff, i#58976, pmladek
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

# fixes undefined usage of pointers that breaks with gcc-4.1
buildfix-gcc41-pointers-icu.diff, pmladek

# Don't re-define NULL
solar-dont-define-NULL.diff, i#66666, jholesov

# Fix warnings that appear on x86-64 & are considered dangerous
# FIXME file up-stream
sixtyfour-warnings-svx.diff, jholesov
sixtyfour-warnings-xmloff.diff, jholesov

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

[ BFBuildBits ]
SectionOwner => pmladek

# STLport fixes
binfilter-stl.diff, i#63770, hmth
# fixes warnings about problematic return values
warning-return-values-binfilter.diff
# fixes warnings about that a variable is used unitialized
warning-uninitialized-variables-binfilter.diff

# Fix warnings that appear on x86-64 & are considered dangerous
# FIXME file up-stream
sixtyfour-warnings-binfilter.diff, jholesov

# fix build with newer gccs
buildfix-binfilter-gcc-4.1.2-NULL.diff, rengelha, i#70684

[ 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

# Remove the ugly #define private public
kde-nwf-cleanup.diff, i#53068, jholesov


[ BuildBits ]
# use system xmlsec
system-xmlsec.diff, rengelha

[ SystemBits ]
# Enable the use of an internal nss with the symbols we need
internal-nss.diff, michael
internal-nss-xmlsecurity.diff, rengelha
internal-nss-xmlsecurity-libnss.diff, michael

# Fix gcc4 strict type checking problems in  xmlsecurity nss
xmlsecurity_source_xmlsec_nss_gcc4_compile_fix.diff, dkeskar

# cws ause064 with external/ fixes
cws-ause064-external-glibc.diff, rengelha
# use getopt() and readdir_r() from system glibc
system-libc.diff, i#69033, rengelha

[ ICU36 ]
cws-icuupgrade.diff

[ BuildBits ]
# Use system icu
system-icu.diff, i#54479, rengelha


[ Icons ]

# Make insensitive toolbar icons look far nicer
gui-insensitive.diff, i#35555, michael

# Default to industrial icons under win32
default-industrial-icons-w32.diff, jholesov

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

[ Branding ]
SectionOwner => jholesov
SectionIssue => i#66426

# Easier branding of OOo intro
intros-config_office.diff
intros-scp2.diff
intros-svx.diff
abouts-sfx2.diff
intros-desktop.diff


[ 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 ]

# 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
# Fix too wide "Menu -> Insert -> Picture -> From File..." dialog Novell#72010
fpicker-kde-too-wide.diff, jholesov

# Let the KDE and Gtk+ fpickers build and install FIXME IZ number
fpicker-common-scp2.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

# pre-expand the filter choice for 'Export'
fpicker-export-expand.diff, i#68219, michael

# don't crash if browsing to exotic URIs
crash-fpicker.diff, i#63263, michael

# fix multiselect issues
fpicker-multiselect.diff, i#63263, michael


[ 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

# add soname of the module from evolution-data-server-1.8
# fixes the search order, so the newer versions are preferred
evo2-evolution-data-server-1.8-soname.diff, i#69291, pmladek

[ Lwp ]

# Lotus Word Pro Import Filter
lwp-filter-component.diff, i#11215, noelpwer


[ 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
win32-gw-send-mail.diff, i#34264, michael
# Minor build fixes for win32
win32-build-fixes.diff, 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, i#66062, i#66215, i#66224
win32-multi-lang-installer.diff, tml


[ VBABits ]
vba-not-comments.diff, noelpwer
# Parse (& ignore) 'Attribute' statements
vba-attribute.diff, i#37347, noelpwer


[ ArkOnly ]
SectionOwner => brosenk

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


[ GentooExperimental ]
SectionOwner => hmth

# system STLport
dont-copy-and-install-stlport.diff, i#63732, rengelha
# system db check
system-db-check.diff, i#65979
# Gnu JRE paths.
gentooexperimental-gnujre.diff

[ GentooOnly ]
SectionOwner => aprosky

version-2-0-pre.diff, pmladek
# Fix for build breakage on PPC
stlport-ppc-buildfix.diff, aprosky
# Allow build to proceed with PaX enabled
gentoo-pax-fix.diff, aprosky
# hack for Gentoos gcc version
gentoo-gcc-naming-and-versioning.diff, hmth
# build with -fomit-frame-pointer
#omit-fp-workaround.diff, i#50625, hmth
# use libxslt from system for xmlhelp / disable sablot
xmlhelp-use-libxslt-from-system.diff, i#30380, rengelha
# Gentoo's portaudio ...
system-portaudio-use-lpthread.diff, hmth
# 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
# Fix for some execstacks in libgcc3_uno.so, i#70845, aprosky
libgcc3_uno_noexecstack.diff

[ DebianBaseOnly ]
SectionOwner => rengelha

system-xmlsec-workaround.diff
#disable-helpcontent2.diff
#disable-xmlsearch-and-xmlhelp-jar.diff
dont-build-cfgimport-jar.diff
dont-copy-and-install-stlport.diff, i#63732
help-msg-add-package-info.diff, pmladek

[ 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


[ Mono ]
SectionOwner => martink

#
# These patches are experimental beware ...
#
mono-scp2.diff
bridges-prj.diff
bridges-source-mono_uno-binaryuno-cs.diff
bridges-source-mono_uno-bridge-cs.diff
bridges-source-mono_uno-cli_environment-cs.diff
bridges-source-mono_uno-makefile-mk.diff
bridges-source-mono_uno-managed_proxy-cs.diff
bridges-source-mono_uno-mono_bridge-cxx.diff
bridges-source-mono_uno-mono_bridge-h.diff
bridges-source-mono_uno-mono_proxy-cxx.diff
bridges-source-mono_uno-rtl_ustring-cs.diff
bridges-source-mono_uno-typeclass-cs.diff
bridges-source-mono_uno-typedescription-cs.diff
bridges-source-mono_uno-uik-cs.diff
bridges-source-mono_uno-uno_glue-cxx.diff
bridges-source-mono_uno-uno_proxy-cs.diff
cli_ure-source-bootstrap-assembly-cs.diff
cli_ure-source-bootstrap-makefile-mk.diff
cli_ure-source-bootstrap-managed_bootstrap-cs.diff
cli_ure-source-bootstrap-native_glue-cxx.diff
mono-testtools.diff
# Is this correct? - at least it helps...
build-mono-link.diff, jholesov

mono-build.diff

# sign the output assembly using the key pair; it is needed to install
# the versioned assemblies into the system Global Assembly Cache  (GAC)
bridges-mono-uno-build-keyfile.diff
mono-build-keyfile.diff


[ VBAObjects ]
SectionOwner => noelpwer

offapi-org-openoffice-vba-makefile-mk.diff,  i#68883
offapi-org-openoffice-vba-xapplication-idl.diff,  i#68883
offapi-org-openoffice-vba-xcollection-idl.diff,  i#68883
offapi-org-openoffice-vba-xfont-idl.diff,  i#68883
offapi-org-openoffice-vba-xglobals-idl.diff,  i#68883
offapi-org-openoffice-vba-xoutline-idl.diff,  i#68883
offapi-org-openoffice-vba-xrange-idl.diff,  i#68883
offapi-org-openoffice-vba-xworkbook-idl.diff,  i#68883
offapi-org-openoffice-vba-xworkbooks-idl.diff,  i#68883
offapi-org-openoffice-vba-xworksheet-idl.diff,  i#68883
offapi-org-openoffice-vba-xworksheets-idl.diff,  i#68883
offapi-org-openoffice-vba-MSFormReturnTypes-idl.diff,  i#68883
offapi-org-openoffice-vba-xvbatoooeventdescgen-idl.diff,  i#68883
offapi-org-openoffice-vba-excel-xlcelltype-idl.diff,  i#68883
offapi-org-openoffice-vba-excel-makefile-mk.diff,  i#68883
offapi-org-openoffice-vba-xdialog-idl.diff,  i#68883
offapi-org-openoffice-vba-xdialogs-idl.diff,  i#68883
offapi-org-openoffice-vba-xlbuildindialog-idl.diff,  i#68883
offapi-org-openoffice-vba-xlpastespecialoperation-idl.diff,  i#68883
offapi-org-openoffice-vba-xlpastetype-idl.diff,  i#68883
offapi-org-openoffice-vba-xworksheetfunction-idl.diff,  i#68883
offapi-org-openoffice-vba-xinterior-idl.diff,  i#68883
offapi-org-openoffice-vba-excel-constants-idl.diff,  i#68883
offapi-org-openoffice-vba-excel-xlcutcopymode-idl.diff,  i#68883
offapi-org-openoffice-vba-excel-xlfindlookin-idl.diff,  i#68883
offapi-org-openoffice-vba-xwindow-idl.diff,  i#68883
offapi-org-openoffice-vba-excel-xlcalculation-idl.diff,  i#68883
offapi-org-openoffice-vba-xchart-idl.diff,  i#68883
offapi-org-openoffice-vba-xchartobject-idl.diff,  i#68883
offapi-org-openoffice-vba-xchartobjects-idl.diff,  i#68883
offapi-org-openoffice-vba-xseries-idl.diff,  i#68883
offapi-org-openoffice-vba-xseriescollection-idl.diff,  i#68883
offapi-org-openoffice-vba-xarraywrapper-idl.diff,  i#68883
offapi-org-openoffice-vba-xpivotcache-idl.diff,  i#68883
offapi-org-openoffice-vba-xpivottable-idl.diff,  i#68883
offapi-org-openoffice-vba-xpivottables-idl.diff,  i#68883
offapi-org-openoffice-vba-xcomment-idl.diff ,  i#68883
offapi-org-openoffice-vba-xcomments-idl.diff ,  i#68883
offapi-org-openoffice-vba-xwindows-idl.diff,  i#68883
offapi-org-openoffice-vba-xcharacters-idl.diff,  i#68883
offapi-org-openoffice-vba-excel-xlcommentdisplaymode-idl.diff,  i#68883
offapi-org-openoffice-vba-excel-xlcreator-idl.diff,  i#68883
offapi-org-openoffice-vba-excel-xldirection-idl.diff,  i#68883
offapi-org-openoffice-vba-excel-xllookat-idl.diff,  i#68883
offapi-org-openoffice-vba-excel-xlsearchorder-idl.diff,  i#68883
offapi-org-openoffice-vba-excel-xlsortmethod-idl.diff,  i#68883
offapi-org-openoffice-vba-excel-xlsortorder-idl.diff,  i#68883
offapi-org-openoffice-vba-excel-xlsortorientation-idl.diff,  i#68883
offapi-org-openoffice-vba-excel-xlyesnoguess-idl.diff,  i#68883
offapi-org-openoffice-vba-excel-xlsortdataoption-idl.diff,  i#68883
offapi-org-openoffice-vba-excel-xldeleteshiftdirection-idl.diff,  i#68883
offapi-org-openoffice-vba-excel-xlautofilltype-idl.diff,  i#68883
offapi-org-openoffice-vba-excel-xllistconflict-idl.diff ,  i#68883
offapi-org-openoffice-vba-excel-xllistdatatype-idl.diff ,  i#68883
offapi-org-openoffice-vba-excel-xllistobjectsourcetype-idl.diff ,  i#68883
offapi-org-openoffice-vba-excel-xllocationintable-idl.diff ,  i#68883
offapi-org-openoffice-vba-excel-xlmailsystem-idl.diff ,  i#68883
offapi-org-openoffice-vba-excel-xlmarkerstyle-idl.diff ,  i#68883
offapi-org-openoffice-vba-excel-xlmousebutton-idl.diff ,  i#68883
offapi-org-openoffice-vba-excel-xlmousepointer-idl.diff ,  i#68883
offapi-org-openoffice-vba-excel-xlmsapplication-idl.diff ,  i#68883
offapi-org-openoffice-vba-excel-xlobjectsize-idl.diff ,  i#68883
offapi-org-openoffice-vba-excel-xloletype-idl.diff ,  i#68883
offapi-org-openoffice-vba-excel-xloleverb-idl.diff ,  i#68883
offapi-org-openoffice-vba-excel-xlorder-idl.diff ,  i#68883
offapi-org-openoffice-vba-excel-xlorientation-idl.diff ,  i#68883
offapi-org-openoffice-vba-excel-xlpagebreak-idl.diff ,  i#68883
offapi-org-openoffice-vba-excel-xlpagebreakextent-idl.diff ,  i#68883
offapi-org-openoffice-vba-excel-xlpageorientation-idl.diff ,  i#68883
offapi-org-openoffice-vba-excel-xlpapersize-idl.diff ,  i#68883
offapi-org-openoffice-vba-excel-xlparameterdatatype-idl.diff ,  i#68883
offapi-org-openoffice-vba-excel-xlparametertype-idl.diff ,  i#68883
offapi-org-openoffice-vba-excel-xlpastespecialoperation-idl.diff ,  i#68883
offapi-org-openoffice-vba-excel-xlpastetype-idl.diff ,  i#68883
offapi-org-openoffice-vba-excel-xlpattern-idl.diff ,  i#68883
offapi-org-openoffice-vba-excel-xlphoneticalignment-idl.diff ,  i#68883
offapi-org-openoffice-vba-excel-xlpictureappearance-idl.diff ,  i#68883
offapi-org-openoffice-vba-excel-xlpictureconvertortype-idl.diff ,  i#68883
offapi-org-openoffice-vba-excel-xlpivotcelltype-idl.diff ,  i#68883
offapi-org-openoffice-vba-excel-xlpivotfieldcalculation-idl.diff ,  i#68883
offapi-org-openoffice-vba-excel-xlpivotfielddatatype-idl.diff ,  i#68883
offapi-org-openoffice-vba-excel-xlpivotfieldorientation-idl.diff ,  i#68883
offapi-org-openoffice-vba-excel-xlpivotformattype-idl.diff ,  i#68883
offapi-org-openoffice-vba-excel-xlpivottablemissingitems-idl.diff ,  i#68883
offapi-org-openoffice-vba-excel-xlpivottablesourcetype-idl.diff ,  i#68883
offapi-org-openoffice-vba-excel-xlpivottableversionlist-idl.diff ,  i#68883
offapi-org-openoffice-vba-excel-xlplacement-idl.diff ,  i#68883
offapi-org-openoffice-vba-excel-xlplatform-idl.diff ,  i#68883
offapi-org-openoffice-vba-excel-xlprinterrors-idl.diff ,  i#68883
offapi-org-openoffice-vba-excel-xlprintlocation-idl.diff ,  i#68883
offapi-org-openoffice-vba-excel-xlpriority-idl.diff ,  i#68883
offapi-org-openoffice-vba-excel-xlptselectionmode-idl.diff ,  i#68883
offapi-org-openoffice-vba-excel-xlquerytype-idl.diff ,  i#68883
offapi-org-openoffice-vba-excel-xlrangeautoformat-idl.diff ,  i#68883
offapi-org-openoffice-vba-excel-xlrangevaluedatatype-idl.diff ,  i#68883
offapi-org-openoffice-vba-excel-xlreferencestyle-idl.diff ,  i#68883
offapi-org-openoffice-vba-excel-xlreferencetype-idl.diff ,  i#68883
offapi-org-openoffice-vba-excel-xlrobustconnect-idl.diff ,  i#68883
offapi-org-openoffice-vba-excel-xlroutingslipdelivery-idl.diff ,  i#68883
offapi-org-openoffice-vba-excel-xlroutingslipstatus-idl.diff ,  i#68883
offapi-org-openoffice-vba-excel-xlrowcol-idl.diff ,  i#68883
offapi-org-openoffice-vba-excel-xlrunautomacro-idl.diff ,  i#68883
offapi-org-openoffice-vba-excel-xlsaveaction-idl.diff ,  i#68883
offapi-org-openoffice-vba-excel-xlsaveasaccessmode-idl.diff ,  i#68883
offapi-org-openoffice-vba-excel-xlsaveconflictresolution-idl.diff ,  i#68883
offapi-org-openoffice-vba-excel-xlscaletype-idl.diff ,  i#68883
offapi-org-openoffice-vba-excel-xlsearchdirection-idl.diff ,  i#68883
offapi-org-openoffice-vba-excel-xlsearchwithin-idl.diff ,  i#68883
offapi-org-openoffice-vba-excel-xlsheettype-idl.diff ,  i#68883
offapi-org-openoffice-vba-excel-xlsheetvisibility-idl.diff ,  i#68883
offapi-org-openoffice-vba-excel-xlsizerepresents-idl.diff ,  i#68883
offapi-org-openoffice-vba-excel-xlsmarttagcontroltype-idl.diff ,  i#68883
offapi-org-openoffice-vba-excel-xlsmarttagdisplaymode-idl.diff ,  i#68883
offapi-org-openoffice-vba-excel-xlsortmethodold-idl.diff ,  i#68883
offapi-org-openoffice-vba-excel-xlsorttype-idl.diff ,  i#68883
offapi-org-openoffice-vba-excel-xlsourcetype-idl.diff ,  i#68883
offapi-org-openoffice-vba-excel-xlspeakdirection-idl.diff ,  i#68883
offapi-org-openoffice-vba-excel-xlspecialcellsvalue-idl.diff ,  i#68883
offapi-org-openoffice-vba-excel-xlsubscribetoformat-idl.diff ,  i#68883
offapi-org-openoffice-vba-excel-xlsubtototallocationtype-idl.diff ,  i#68883
offapi-org-openoffice-vba-excel-xlsummarycolumn-idl.diff ,  i#68883
offapi-org-openoffice-vba-excel-xlsummaryreporttype-idl.diff ,  i#68883
offapi-org-openoffice-vba-excel-xlsummaryrow-idl.diff ,  i#68883
offapi-org-openoffice-vba-excel-xltabposition-idl.diff ,  i#68883
offapi-org-openoffice-vba-excel-xltextparsingtype-idl.diff ,  i#68883
offapi-org-openoffice-vba-excel-xltextqualifier-idl.diff ,  i#68883
offapi-org-openoffice-vba-excel-xltextvisuallayouttype-idl.diff ,  i#68883
offapi-org-openoffice-vba-excel-xlticklabelorientation-idl.diff ,  i#68883
offapi-org-openoffice-vba-excel-xlticklabelposition-idl.diff ,  i#68883
offapi-org-openoffice-vba-excel-xltimemark-idl.diff ,  i#68883
offapi-org-openoffice-vba-excel-xltimeunit-idl.diff ,  i#68883
offapi-org-openoffice-vba-excel-xltoolbarprotection-idl.diff ,  i#68883
offapi-org-openoffice-vba-excel-xltotalscalculation-idl.diff ,  i#68883
offapi-org-openoffice-vba-excel-xltrendlinetype-idl.diff ,  i#68883
offapi-org-openoffice-vba-excel-xlunderlinestyle-idl.diff ,  i#68883
offapi-org-openoffice-vba-excel-xlupdatelinks-idl.diff ,  i#68883
offapi-org-openoffice-vba-excel-xlvalign-idl.diff ,  i#68883
offapi-org-openoffice-vba-excel-xlwbatemplate-idl.diff ,  i#68883
offapi-org-openoffice-vba-excel-xlwebformatting-idl.diff ,  i#68883
offapi-org-openoffice-vba-excel-xlwebsectiontype-idl.diff ,  i#68883
offapi-org-openoffice-vba-excel-xlwindowstate-idl.diff ,  i#68883
offapi-org-openoffice-vba-excel-xlwindowtype-idl.diff ,  i#68883
offapi-org-openoffice-vba-excel-xlwindowview-idl.diff ,  i#68883
offapi-org-openoffice-vba-excel-xlxlmmacrotype-idl.diff ,  i#68883
offapi-org-openoffice-vba-excel-xlxmlexportresult-idl.diff ,  i#68883
offapi-org-openoffice-vba-excel-xlxmlimportresult-idl.diff ,  i#68883
offapi-org-openoffice-vba-excel-xlxmlloadoption-idl.diff ,  i#68883
offapi-org-openoffice-vba-excel-xlapplicationinternational-idl.diff,  i#68883
offapi-org-openoffice-vba-excel-xlapplynamesorder-idl.diff,  i#68883
offapi-org-openoffice-vba-excel-xlarabicmodes-idl.diff,  i#68883
offapi-org-openoffice-vba-excel-xlarrangestyle-idl.diff,  i#68883
offapi-org-openoffice-vba-excel-xlarrowheadlength-idl.diff,  i#68883
offapi-org-openoffice-vba-excel-xlarrowheadstyle-idl.diff,  i#68883
offapi-org-openoffice-vba-excel-xlarrowheadwidth-idl.diff,  i#68883
offapi-org-openoffice-vba-excel-xlautofilteroperator-idl.diff,  i#68883
offapi-org-openoffice-vba-excel-xlaxiscrosses-idl.diff,  i#68883
offapi-org-openoffice-vba-excel-xlaxisgroup-idl.diff,  i#68883
offapi-org-openoffice-vba-excel-xlaxistype-idl.diff,  i#68883
offapi-org-openoffice-vba-excel-xlbackground-idl.diff,  i#68883
offapi-org-openoffice-vba-excel-xlbarshape-idl.diff,  i#68883
offapi-org-openoffice-vba-excel-xlbordersindex-idl.diff,  i#68883
offapi-org-openoffice-vba-excel-xlbuildindialog-idl.diff,  i#68883
offapi-org-openoffice-vba-excel-xlcalculatedmembertype-idl.diff,  i#68883
offapi-org-openoffice-vba-excel-xlcalculationinterruptkey-idl.diff,  i#68883
offapi-org-openoffice-vba-excel-xlcalculationstate-idl.diff,  i#68883
offapi-org-openoffice-vba-excel-xlcategorytype-idl.diff,  i#68883
offapi-org-openoffice-vba-excel-xlcellinsertionmode-idl.diff,  i#68883
offapi-org-openoffice-vba-excel-xlchartgallery-idl.diff,  i#68883
offapi-org-openoffice-vba-excel-xlchartitem-idl.diff,  i#68883
offapi-org-openoffice-vba-excel-xlchartlocation-idl.diff,  i#68883
offapi-org-openoffice-vba-excel-xlchartpictureplacement-idl.diff,  i#68883
offapi-org-openoffice-vba-excel-xlchartpicturetype-idl.diff,  i#68883
offapi-org-openoffice-vba-excel-xlchartsplittype-idl.diff,  i#68883
offapi-org-openoffice-vba-excel-xlcharttype-idl.diff,  i#68883
offapi-org-openoffice-vba-excel-xlclipboardformat-idl.diff,  i#68883
offapi-org-openoffice-vba-excel-xlcmdtype-idl.diff,  i#68883
offapi-org-openoffice-vba-excel-xlcolorindex-idl.diff,  i#68883
offapi-org-openoffice-vba-excel-xlcolumndatatype-idl.diff,  i#68883
offapi-org-openoffice-vba-excel-xlcommandunderlines-idl.diff,  i#68883
offapi-org-openoffice-vba-excel-xlconsolidationfunction-idl.diff,  i#68883
offapi-org-openoffice-vba-excel-xlcopypictureformat-idl.diff,  i#68883
offapi-org-openoffice-vba-excel-xlcorruptload-idl.diff,  i#68883
offapi-org-openoffice-vba-excel-xlcubefieldtype-idl.diff,  i#68883
offapi-org-openoffice-vba-excel-xlcverror-idl.diff,  i#68883
offapi-org-openoffice-vba-excel-xldatalabelposition-idl.diff,  i#68883
offapi-org-openoffice-vba-excel-xldatalabelseparator-idl.diff,  i#68883
offapi-org-openoffice-vba-excel-xldatalabelstype-idl.diff,  i#68883
offapi-org-openoffice-vba-excel-xldataseriesdate-idl.diff,  i#68883
offapi-org-openoffice-vba-excel-xldataseriestype-idl.diff,  i#68883
offapi-org-openoffice-vba-excel-xldisplayblanksas-idl.diff,  i#68883
offapi-org-openoffice-vba-excel-xldisplaydrawingobjects-idl.diff,  i#68883
offapi-org-openoffice-vba-excel-xldisplayunit-idl.diff,  i#68883
offapi-org-openoffice-vba-excel-xldvalterstyle-idl.diff,  i#68883
offapi-org-openoffice-vba-excel-xldvtype-idl.diff,  i#68883
offapi-org-openoffice-vba-excel-xleditionformat-idl.diff,  i#68883
offapi-org-openoffice-vba-excel-xleditionoptionsoption-idl.diff,  i#68883
offapi-org-openoffice-vba-excel-xleditiontype-idl.diff,  i#68883
offapi-org-openoffice-vba-excel-xlenablecancelkey-idl.diff,  i#68883
offapi-org-openoffice-vba-excel-xlenableselection-idl.diff,  i#68883
offapi-org-openoffice-vba-excel-xlendstylecap-idl.diff,  i#68883
offapi-org-openoffice-vba-excel-xlerrorbardirection-idl.diff,  i#68883
offapi-org-openoffice-vba-excel-xlerrorbarinclude-idl.diff,  i#68883
offapi-org-openoffice-vba-excel-xlerrorbartype-idl.diff,  i#68883
offapi-org-openoffice-vba-excel-xlerrorchecks-idl.diff,  i#68883
offapi-org-openoffice-vba-excel-xlfileaccess-idl.diff,  i#68883
offapi-org-openoffice-vba-excel-xlfileformat-idl.diff,  i#68883
offapi-org-openoffice-vba-excel-xlfillwith-idl.diff,  i#68883
offapi-org-openoffice-vba-excel-xlfilteraction-idl.diff,  i#68883
offapi-org-openoffice-vba-excel-xlformatconditionoperator-idl.diff,  i#68883
offapi-org-openoffice-vba-excel-xlformatconditiontype-idl.diff,  i#68883
offapi-org-openoffice-vba-excel-xlformcontrol-idl.diff,  i#68883
offapi-org-openoffice-vba-excel-xlformulalabel-idl.diff,  i#68883
offapi-org-openoffice-vba-excel-xlhalign-idl.diff,  i#68883
offapi-org-openoffice-vba-excel-xlhebrewmodes-idl.diff,  i#68883
offapi-org-openoffice-vba-excel-xlhighlightchangestime-idl.diff,  i#68883
offapi-org-openoffice-vba-excel-xlhtmltype-idl.diff,  i#68883
offapi-org-openoffice-vba-excel-xlimemode-idl.diff,  i#68883
offapi-org-openoffice-vba-excel-xlimportdataas-idl.diff,  i#68883
offapi-org-openoffice-vba-excel-xlinsertformatorigin-idl.diff,  i#68883
offapi-org-openoffice-vba-excel-xlinsertshiftdirection-idl.diff,  i#68883
offapi-org-openoffice-vba-excel-xllayoutformtype-idl.diff,  i#68883
offapi-org-openoffice-vba-excel-xllegendposition-idl.diff,  i#68883
offapi-org-openoffice-vba-excel-xllinestyle-idl.diff,  i#68883
offapi-org-openoffice-vba-excel-xllink-idl.diff,  i#68883
offapi-org-openoffice-vba-excel-xllinkinfo-idl.diff,  i#68883
offapi-org-openoffice-vba-excel-xllinkinfotype-idl.diff,  i#68883
offapi-org-openoffice-vba-excel-xllinkstatus-idl.diff,  i#68883
offapi-org-openoffice-vba-excel-xllinktype-idl.diff,  i#68883
offapi-org-openoffice-vba-excel-xlborderweight-idl.diff,  i#68883
offapi-org-openoffice-vba-xborder-idl.diff,  i#68883
offapi-org-openoffice-vba-xborders-idl.diff,  i#68883
offapi-org-openoffice-vba-xcombobox-idl.diff, i#68883
offapi-org-openoffice-vba-excel-vba-idl.diff

sc-source-ui-vba-makefile-mk.diff,  i#68883
sc-source-ui-vba-vbaapplication-cxx.diff,  i#68883
sc-source-ui-vba-vbaapplication-hxx.diff,  i#68883
sc-source-ui-vba-vbafont-cxx.diff,  i#68883
sc-source-ui-vba-vbafont-hxx.diff,  i#68883
sc-source-ui-vba-vbaglobals-cxx.diff,  i#68883
sc-source-ui-vba-vbaglobals-hxx.diff,  i#68883
sc-source-ui-vba-vbahelper-hxx.diff,  i#68883
sc-source-ui-vba-vbaobj-map.diff,  i#68883
sc-source-ui-vba-vbaobj-xml.diff,  i#68883
sc-source-ui-vba-vbaoutline-cxx.diff,  i#68883
sc-source-ui-vba-vbaoutline-hxx.diff,  i#68883
sc-source-ui-vba-vbarange-cxx.diff,  i#68883
sc-source-ui-vba-vbarange-hxx.diff,  i#68883
sc-source-ui-vba-vbaworkbook-cxx.diff,  i#68883
sc-source-ui-vba-vbaworkbook-hxx.diff,  i#68883
sc-source-ui-vba-vbaworkbooks-cxx.diff,  i#68883
sc-source-ui-vba-vbaworkbooks-hxx.diff,  i#68883
sc-source-ui-vba-vbaworksheet-cxx.diff,  i#68883
sc-source-ui-vba-vbaworksheet-hxx.diff,  i#68883
sc-source-ui-vba-vbaworksheets-cxx.diff,  i#68883
sc-source-ui-vba-vbaworksheets-hxx.diff,  i#68883
sc-source-ui-vba-vbadialog-cxx.diff,  i#68883
sc-source-ui-vba-vbadialog-hxx.diff,  i#68883
sc-source-ui-vba-vbadialogs-cxx.diff,  i#68883
sc-source-ui-vba-vbadialogs-hxx.diff,  i#68883
sc-source-ui-vba-vbainterior-cxx.diff,  i#68883
sc-source-ui-vba-vbainterior-hxx.diff,  i#68883
sc-source-ui-vba-vbawsfunction-cxx.diff,  i#68883
sc-source-ui-vba-vbawsfunction-hxx.diff,  i#68883
sc-source-ui-vba-vbawindow-cxx.diff,  i#68883
sc-source-ui-vba-vbawindow-hxx.diff,  i#68883
sc-source-ui-vba-vbachartobject-cxx.diff,  i#68883
sc-source-ui-vba-vbachartobject-hxx.diff,  i#68883
sc-source-ui-vba-vbachartobjects-cxx.diff,  i#68883
sc-source-ui-vba-vbachartobjects-hxx.diff,  i#68883
sc-source-ui-vba-vbachart-cxx.diff,  i#68883
sc-source-ui-vba-vbachart-hxx.diff,  i#68883
sc-source-ui-vba-vbacollectionimpl-cxx.diff,  i#68883
sc-source-ui-vba-vbacollectionimpl-hxx.diff,  i#68883
sc-source-ui-vba-vbaseriescollection-cxx.diff,  i#68883
sc-source-ui-vba-vbaseriescollection-hxx.diff,  i#68883
sc-source-ui-vba-vbaarraywrapper-cxx.diff,  i#68883
sc-source-ui-vba-vbaarraywrapper-hxx.diff,  i#68883
sc-source-ui-vba-vbapivotcache-cxx.diff,  i#68883
sc-source-ui-vba-vbapivotcache-hxx.diff,  i#68883
sc-source-ui-vba-vbapivottable-cxx.diff,  i#68883
sc-source-ui-vba-vbapivottable-hxx.diff,  i#68883
sc-source-ui-vba-vbapivottables-cxx.diff,  i#68883
sc-source-ui-vba-vbapivottables-hxx.diff,  i#68883
sc-source-ui-vba-vbacomment-hxx.diff,  i#68883
sc-source-ui-vba-vbacomment-cxx.diff,  i#68883
sc-source-ui-vba-vbacomments-hxx.diff,  i#68883
sc-source-ui-vba-vbacomments-cxx.diff,  i#68883
sc-source-ui-vba-vbawindows-cxx.diff,  i#68883
sc-source-ui-vba-vbawindows-hxx.diff,  i#68883
sc-source-ui-vba-vbacharacters-cxx.diff,  i#68883
sc-source-ui-vba-vbacharacters-hxx.diff,  i#68883
sc-source-ui-vba-vbapalette-cxx.diff,  i#68883
sc-source-ui-vba-vbapalette-hxx.diff,  i#68883
sc-source-ui-vba-vbaborders-cxx.diff,  i#68883
sc-source-ui-vba-vbaborders-hxx.diff,  i#68883
sc-source-ui-vba-vbahelper-cxx.diff,  i#68883
sc-source-ui-vba-vbacombobox-cxx.diff, i#68883
sc-source-ui-vba-vbacombobox-hxx.diff, i#68883
sc-vba-build-lst.diff,  i#68883

vba-basic-globals.diff, noelpwer, i#68894

sc-hacky-handle-boolean.diff

svx-source-inc-fmundo-hxx.diff, i#68893
svx-source-form-makefile.diff, i#68893
svx-source-form-fmundo-cxx.diff, i#68893
scp_vba_uno_service.diff, i#68893
vbaevents-services-build.diff, i#68893
vbaevents-services-sources.diff, i#68893

vba-dim-and-constants-patch.diff, i#68897

vba-evaluate-support.diff, i#68898

vba_configure_set_soenv_in.diff
vba-mscompat-wait.diff, i#64882
vba-support-export-palette.diff, i#68900

cws-npower3-m4.diff, i#64377

vba-basic-array-erase.diff, i#70380

[ VBAObjects ]
vba-basic-default.diff, i#64884

vba-sc-docuno-hook.diff, noelpwer
sc-sort-replace-support.diff, i#68901

vba-vbaoption-evalfix.diff, i#68898, n#186977

vba-build.diff,  i#68883
# allow module variables defined in document modules
# be global ( when vbasupport is enabled )
vba-modscopevariable.diff

# when reading module source ( ala existing compatibilty switch )
vba-accent-in-module.diff, n#214312

# allow us to get the data set ( sfxitemset) associated
# with a range but that doesn't have ClearInvalidItems() applied
# to it
vba-cellsuno-numformat-support.diff, i#68902

vba-workbook-worksheet-events.diff

basic-speedup.diff, i#69913

# hack for searching for symbols in thisworkbook
vba-symbol-searchhack-for-thisworkbook.diff 
vba-windowsupport-sfx2-topfrm-hxx.diff

# ensure (empty) variant behavior matches excel
vba-variant-empty-behavior.diff, i#71827

# ensure that variant array pased over uno are actually contain
# variants
vba-multi-variantarray-fix.diff, i#72106

[ VBAUntested ]
SectionOwner => noelpwer
#this patch is unused at the moment, also possibly wont even
#apply, but I'd like to return to it at some stage (noelp)
basic-source-classes-eventatt-cxx.diff, #no-upstream
#ditto
vba-support-stoc-typeprovider-xexactname.diff, #no-upstream


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

# Fix sourceview font setting i#67985
font-sourceview.diff, michael

[ 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


[ SystemJavaBits ]
# create xt module - use plain xt instead of external/common/xt.jar
use-system-xt.diff, i#59985, hmth

# Don't build hsqldb with --without-java
config_office-hsqldb-no-java.diff, i#64921, brosenk

# link native HelpLinker to system jars
native-HelpLinker-use-system-libs.diff, i#67323, hmth

# fix build with hsqldb 1.8.0.7
buildfix-hsqldb-1-8-0-7.diff, rengelha

[ GCJWorkaround ]
# Workaround "error: final field 'XYZ' may not have been initialized"
# FIXME: Compile to .jar first
gcj-workaround-uninitialized-final.diff, jholesov
# Workaround Exception in thread "main" java.lang.NoClassDefFoundError: com.jclark.xsl.sax.XMLProcessorImpl$BuilderImpl
# Will be gone after we have ecj in openSUSE...
use-system-xt-workaround.diff, jholesov
# huh, gcj still compiles private/protected members a wrong way
# I got the following error when trying to edit table in oobase using hsqldb.jar that was compiled with gcj:
# General error: java.lang.IllegalAccessError: org.hsqldb.HsqlNameManager$HsqlName: org.hsqldb.HsqlNameManager.serialNumber
# last update: the problem seems to be only with nested clasees, this bug
#              is reported for years, gcc#9866, http://gcc.gnu.org/bugzilla/show_bug.cgi?id=9866
#              I'll keep this full patch for now to do nto break things at this stage
#              I'll prepare a reduced patch for HEAD
hsqldb-gcj-access-problems.diff, pmladek

[ 64bitPatches ]
# prefer gij on x86_64 with the 64-bit build;
# Sun JRE 1.5 does not work with the 64-bit build at all because of
# http://bugs.sun.com/bugdatabase/view_bug.do?bug_id=6487640
jvmfwk-prefer-gij-on-x86_64.diff

[ STLport5 ]
SectionOwner => hmth
SectionIssue => i#63770

# system STLport5 support
system-stlport5-config.diff
system-stlport5-STLPORT_VER.diff

system-stlport5.diff


[ CalcSolver ]
SectionOwner => kyoshida
SectionIssue => i#8808

# needs more boost headers
scs-boost.diff
# setup protocol handler (urgh)
scs-officecfg.diff
# install the component
scs-scp2.diff
# add scsolver to the dep chain for sc
scs-sc-build.diff
# add menu bar item ...
scs-sc-menubar.diff
scs-officecfg-calc.diff
# lpsolve module
lpsolve-makefile-mk.diff
lpsolve-prj-build-lst.diff
lpsolve-prj-d-lst.diff
# add lpsolve linker flag to libs.mk
solenv-inc-libs-mk.diff
# gen-erated files:

scsolver-changelog.diff
scsolver-docs-changelog-txt.diff
scsolver-docs-readme-txt.diff
scsolver-idl-org-openoffice-sc-solver-bound-idl.diff
scsolver-idl-org-openoffice-sc-solver-equality-idl.diff
scsolver-idl-org-openoffice-sc-solver-goal-idl.diff
scsolver-idl-org-openoffice-sc-solver-makefile-mk.diff
scsolver-idl-org-openoffice-sc-solver-xlpalgorithm-idl.diff
scsolver-idl-org-openoffice-sc-solver-xlpmodel-idl.diff
scsolver-prj-build-lst.diff
scsolver-prj-d-lst.diff
scsolver-source-inc-basedlg-hxx.diff
scsolver-source-inc-baselistener-hxx.diff
scsolver-source-inc-dialog-hxx.diff
scsolver-source-inc-global-hxx.diff
scsolver-source-inc-listener-hxx.diff
scsolver-source-inc-lpbuilder-hxx.diff
scsolver-source-inc-msgdlg-hxx.diff
scsolver-source-inc-nlpbuilder-hxx.diff
scsolver-source-inc-numeric-cellfuncobj-hxx.diff
scsolver-source-inc-numeric-diff-hxx.diff
scsolver-source-inc-numeric-exception-hxx.diff
scsolver-source-inc-numeric-funcobj-hxx.diff
scsolver-source-inc-numeric-lpbase-hxx.diff
scsolver-source-inc-numeric-lpmodel-hxx.diff
scsolver-source-inc-numeric-lpsimplex-hxx.diff
scsolver-source-inc-numeric-lpsolve-hxx.diff
scsolver-source-inc-numeric-lpuno-hxx.diff
scsolver-source-inc-numeric-matrix-hxx.diff
scsolver-source-inc-numeric-nlpbase-hxx.diff
scsolver-source-inc-numeric-nlpmodel-hxx.diff
scsolver-source-inc-numeric-nlpnewton-hxx.diff
scsolver-source-inc-numeric-suppl-hxx.diff
scsolver-source-inc-numeric-type-hxx.diff
scsolver-source-inc-optiondlg-hxx.diff
scsolver-source-inc-option-hxx.diff
scsolver-source-inc-solvemodel-hxx.diff
scsolver-source-inc-solver-hxx.diff
scsolver-source-inc-tool-timer-hxx.diff
scsolver-source-inc-type-hxx.diff
scsolver-source-inc-unoglobal-hxx.diff
scsolver-source-inc-unohelper-hxx.diff
scsolver-source-inc-xcalc-hxx.diff
scsolver-source-numeric-cellfuncobj-cxx.diff
scsolver-source-numeric-diff-cxx.diff
scsolver-source-numeric-diff_test-cxx.diff
scsolver-source-numeric-exception-cxx.diff
scsolver-source-numeric-funcobj-cxx.diff
scsolver-source-numeric-lpbase-cxx.diff
scsolver-source-numeric-lpmodel-cxx.diff
scsolver-source-numeric-lpsimplex-cxx.diff
scsolver-source-numeric-lpsolve-cxx.diff
scsolver-source-numeric-lpuno-cxx.diff
scsolver-source-numeric-makefile-mk.diff
scsolver-source-numeric-matrix-cxx.diff
scsolver-source-numeric-nlpbase-cxx.diff
scsolver-source-numeric-nlpmodel-cxx.diff
scsolver-source-numeric-nlpqnewton-cxx.diff
scsolver-source-numeric-nlp_test-cxx.diff
scsolver-source-service-makefile-mk.diff
scsolver-source-service-service-cxx.diff
scsolver-source-tool-makefile-mk.diff
scsolver-source-tool-timer-cxx.diff
scsolver-source-ui-basedlg-cxx.diff
scsolver-source-ui-baselistener-cxx.diff
scsolver-source-ui-dialog-cxx.diff
scsolver-source-ui-global-cxx.diff
scsolver-source-ui-listener-cxx.diff
scsolver-source-ui-lpbuilder-cxx.diff
scsolver-source-ui-makefile-mk.diff
scsolver-source-ui-msgdlg-cxx.diff
scsolver-source-ui-nlpbuilder-cxx.diff
scsolver-source-ui-option-cxx.diff
scsolver-source-ui-optiondlg-cxx.diff
scsolver-source-ui-scsolver-hrc.diff
scsolver-source-ui-scsolver-src.diff
scsolver-source-ui-solvemodel-cxx.diff
scsolver-source-ui-unoglobal-cxx.diff
scsolver-source-ui-unohelper-cxx.diff
scsolver-source-ui-xcalc-cxx.diff
scsolver-util-makefile-mk.diff
scsolver-util-makefile-pmk.diff
scsolver-util-scsolver-map.diff
scsolver-workben-addon_pkg-addons-xcu.diff
scsolver-workben-addon_pkg-makefile_build.diff
scsolver-workben-addon_pkg-makefile.diff
scsolver-workben-addon_pkg-protocolhandler-xcu.diff
scsolver-workben-makefile.diff
scsolver-workben-matrix2-txt.diff
scsolver-workben-matrix_test-cxx.diff
scsolver-workben-matrix-txt.diff
scsolver-workben-mx3-txt.diff
scsolver-workben-nlptest-cxx.diff
scsolver-workben-simplex_test-cxx.diff
scsolver-workben-ublas_test2-cxx.diff
scsolver-workben-ublas_test-cxx.diff
# configure check for system-lpsolve
system-lpsolve-config_office.diff

[ ArkOnly ]
SectionOwner => brosenk

# use libxslt from system for xmlhelp / disable sablot
ark-xmlhelp-use-libxslt-from-system.diff, i#30380
# There's no point in upstreaming this because it relies on the Ark
# Java lib naming scheme and won't work anywhere else.
compiletime-skip-duplicate-jars.diff
# Don't crash HelpLinker
gcj-HelpLinker-no-NullPointerException.diff, i#61278
# We use KMail...
# There's no point in upstreaming this because not everyone uses KMail.
ark-default-ExternalMailer.diff

# This is faster, and solves gcj -C's private bug. But it's also
# close to untested.
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.
ark-system-precompiled-java.diff

[ DebianBaseOnly ]
# don't steal the focus, when opening windows.
framework-nofocussteal.diff, i#19976, mklose

# use libxslt from system for xmlhelp / disable sablot
xmlhelp-use-libxslt-from-system.diff, i#30380, rengelha

# use -llpsolve55_pic
system-lpsolve-use-_pic.diff, rengelha

[ DebianOnly ]
# 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

[cairocanvas]
# build local cairo on Win32 (if enabled)
cairo-prj-build-lst.diff, tml
cairo-prj-d-lst.diff, tml
cairo-makefile-mk.diff, tml
cairo-config_office-configure-in.diff, tml
cairo-cairo-1-2-4-diff.diff, tml

# committed to cairofixes02 cws
cairo-canvas-clip-more.diff, i#65589, rodo

# committed to cairofixes02 cws
cairo-query-text-bounds.diff, i#65683, rodo

# fix for n#197859
cairocanvas-vcl-add-pixmap-size-to-bitmap-system-data.diff, rodo
cairocanvas-check-bitmap-system-data-pixmap-size.diff, rodo

# fix from Caolan, i#69325
cairo-move-coordinates-only-for-stroke.diff

# Additional diffs for cairocanvas on Win32
cairo-canvas-win32.diff, tml

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


[ DebianSidOnly ]
static-libs-use-_pic.diff, rengelha

[ UbuntuOnly ]
static-libs-use-_pic.diff, rengelha

[ UbuntuDapperOnly ]
ubuntu-lpi.diff, i#64895, mklose

[ UbuntuEdgyOnly ]
ubuntu-edgy-lpi.diff, i#64895, mklose
gnome2.16-no-bonobo.diff, doko
unxlngi6-notune.diff, doko
ubuntu-no-stack-protector.diff, doko

[ FedoraFixes ]
ooo67658.sfx2.reloadcrash.diff
ooo67716.svx.overflow.diff
ooo67781.sc.reloadhiddenrows.diff
ooo67976.svx.macroscrash.diff
ooo68048.vcl.imsurroundtext.diff
ooo68919.sc.atk.diff
ooo69236.slideshow.esccrash.diff
oooXXXXX.vcl.x86_64.impressatk.diff
workspace.calc39.diff
workspace.vcl65.diff
ooo69620.vcl.atkcombo.diff
ooo70361.vcl.atkfilechooser.diff
ooo70782.secondaryfpicker.atk.diff
#ooo64508.vcl.honourfontconfighinting.diff
ooo68047.vcl.zwj.diff

[ SpeedImageList ]
speed-image.diff, i#66680, michael
speed-image-sort.diff, i#66679, michael
speed-image-refactor.diff, i#66680, michael
speed-image-polish.diff, i#66680, michael

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

gstreamer-avmedia.diff
gstreamer-scp2.diff
gstreamer-sd.diff
gstreamer-slideshow.diff
gstreamer-config-office.diff
gstreamer-solenv.diff
gstreamer-svtools-content-types.diff
gstreamer-avmedia-file-types.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


[ Shrink ]
SectionOwner => michael

# shrink thread stacks
size-thread-stack.diff, i#68890, michael
# interface container waste - ~500k (?)
size-cppuhelper.diff, i#<pending-hdu> - FIXME use 'vector' instead ...
# font info / glyph cache waste - ~250k(?)
size-vcl-gcache.diff, i#68904
# pointlessly duplicated strings waste - ~600k(?)
size-vcl-fontcfg.diff, i#68909
# filter property waste - ~140k (?)
size-filter-props.diff, i#68929
# framework xml property waste - 50k+ (?)
size-framework-xml.diff, i#68984
# kill bloat in configmgr, i#69914
size-configmgr.diff
# kill more bloat in configmgr, i#69982
size-configmgr-template.diff
# kill >1Mb of bloat in sal, i#70166
#size-sal-textenc.diff


[ ParallelMake ]
scp2-parallel-build-fix.diff


[ NovellOnlyWin32 ]
SectionOwner => tml

novell-win32-odma.diff, i#6885, i#32741, i#63808

[ Security ]
starcalc-file-format-parser-2.2.diff
libwpd-CVE-2007-0002.diff