summaryrefslogtreecommitdiff
path: root/patches/dev300/apply
blob: c958f4bbecc8fd8b3313a3e4cc1ca58f77504020 (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
#
# The format of this file is: not documented except by example
#

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

PATCHPATH=.:../vba:../mono:../64bit:../gstreamer:../ooxml:../postgresql

# might be space separated list to support more MWS
OLDEST_SUPPORTED=ooo330-m7 ooo-build-3.2.98.0 libreoffice-3.2.99.1

# -------- Functional sub-sets --------
Common : BuildBits, TemporaryHacks, Fixes, DefaultSettings, Misc, CalcFixes, EasterEgg, GnomeVFS, VBAObjects, OOXML, FedoraCommonFixes, WriterDocComparison, MySQL

LinuxCommon : Common, LinuxOnly, CliMonoCommon, Mono, MonoComp, Netbook
MacOSXCommon : Common
Win32Common : Common, Win32Only, CliMonoCommon, CliComponent
# Experimental sections
Experimental: VBAUntested, ArkOnlyExperimental, \
	      UnUsedButNotYetRemovedFromGit, WebDAV, \
	      PostgreSQL, RadioButtons, WWInProgress, \
	      KDE4Experimental, AutoLayout, \
	      Speed, GSoC2010, Toolbars, Win32Packaging
DebianLooseSections: DebianBaseNoHelpContent
# optional section for NLPSolver extension
NLPSolver : NLPSolverBits
#Localize
Localize : LocalizeFixes

# Novell
NovellBase : LinuxCommon, NovellOnly, NovellOnlyUnix
SUSE-9.1  : NovellBase, DisableGCJ
SUSE-9.2  : NovellBase, DisableGCJ
SUSE-9.3  : NovellBase, DisableGCJ
SUSE-10.0 : NovellBase, DisableGCJ
SUSE-10.1 : NovellBase, DisableGCJ, Java14, BrokenSystemNSS, Cairo10, SUSE101
SUSE-10.2 : NovellBase, DisableGCJ, Java14
SUSE-10.3 : NovellBase, DisableGCJ, Java14, GCC41
SUSE-11.0 : NovellBase, DisableGCJ, PostgreSQL
SUSE-11.1 : NovellBase, DisableGCJ, ImpressFontSize, PostgreSQL
SUSE-11.2 : NovellBase, DisableGCJ, ImpressFontSize, PostgreSQL, SUSE112
SUSE      : NovellBase, DisableGCJ, ImpressFontSize, PostgreSQL, SUSE112
# Slackware
Slackware : LinuxCommon, Mono
# Debian
DebianBase : LinuxCommon, DebianBaseOnly, PostgreSQL
Debian : DebianBase, DebianOnly, DebianSidOnly, Debian32Only
DebianEtch : DebianBase, DebianOnly, DebianEtchOnly, Debian32Only
# Ubuntu
UbuntuBased : DebianBase
Ubuntu : UbuntuBased
UbuntuL10n : UbuntuBased
# DroplineGNOME
DroplineGNOME : LinuxCommon, Mono
DroplineGNOME64 : LinuxCommon, Mono
# Ark Linux
Ark: LinuxCommon, ArkOnly
# www.pld-linux.org
PLDBase: LinuxCommon, PLDOnly
PLD: PLDBase
PLD64: PLDBase
# Mandriva Linux
MandrivaBase: MandrivaOnly, LinuxCommon
Mandriva: MandrivaBase
Mandriva64: MandrivaBase
# openmamba
openmamba: LinuxCommon, GlobalDesktopFiles
#Gentoo
GentooBase : LinuxCommon, GentooOnly
GentooUnstable: GentooBase, GentooExperimental
Gentoo : GentooBase
Gentoo64: GentooBase
# rPath Linux
rPathCommon: LinuxCommon
rpl2: rPathCommon
rpl2-64: rPathCommon
# ArchLinux
ArchLinux: LinuxCommon
# Win32
Win32 : Win32Common
# translate.org.za
translate-org-za-linux: translate-org-za-common, LinuxCommon, Common
translate-org-za-win32: translate-org-za-common, Win32Common, Common
NovellLikeWin32: Win32Common, NovellOnly, MultilanguageWin32Only
# Novell
NovellWin32: NovellLikeWin32, NovellOnlyWin32, MultilanguageWin32Only, NovellWin32WritingAids, Win32Packaging
NovellWin32ISO: NovellLikeWin32, NovellOnlyWin32, MultilanguageWin32Only, NovellWin32WritingAids
# Mac OS X
MacOSX : MacOSXCommon
# Pardus
Pardus2007: PardusOnly, LinuxCommon
Pardus2008: PardusOnly, LinuxCommon
# Solaris
Solaris: NovellBase, UnstableExtensions
# OxygenOffice Professional
OxygenOfficeLinuxCommon :	Common,  LinuxOnly, \
				OpenGLTransitions, CliMonoCommon, Mono, MonoComp, \
				Netbook
OxygenOfficeMacOSXCommon :	Common
OxygenOfficeWin32Common :	Common, Win32Only, CliMonoCommon, CliComponent

OxygenOfficeLinux:	OxygenOfficeLinuxCommon, OxygenOfficePalettes, OxygenOfficeDefaultSettings, OxygenOfficeExtras, OxygenOfficeLinuxOnly
OxygenOfficeWindows:	OxygenOfficeWin32Common, OxygenOfficePalettes, OxygenOfficeDefaultSettings, OxygenOfficeExtras, OxygenOfficeWin32Only
# Plain build; just with base build fixes
PlainLinux: PlainBuildFixes
# Generic Patch-less builds
Raw: RawCommon RawPatches
# LibreOffice
LibreOfficeWin32: LibreOfficeCommon LibreOfficePatches LibreOfficeWin32Patches, Win32Packaging
LibreOfficeWin64: LibreOfficeCommon LibreOfficePatches LibreOfficeWin32Patches, Win32Packaging
LibreOfficeLinux: LibreOfficeCommon LibreOfficePatches LibreOfficeLinuxPatches
LibreOfficeLinuxDevel: LibreOfficeCommon LibreOfficePatches LibreOfficeLinuxPatches
LibreOfficeMacOSX: LibreOfficeCommon LibreOfficePatches LibreOfficeMacOSXPatches
LibreOfficeOpenBSD: LibreOfficeCommon LibreOfficePatches LibreOfficeOpenBSDPatches

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

[ CliMonoCommon ]
cli-mono-common.diff

[ CliComponent ]
cli-component.diff

[ TemporaryHacks ]

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

# 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

#set default varchar lenght to 100.
dbaccess-default-varchar-lenght.diff, i#62664, jianhua
#for selection delete crash
selection-crash-svx-svdmrkv.diff, i#76084, jianhua

# 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

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

# included in dev300 for OOo-3.4
# add the .archive flag to some instsetoo_native/util/makefile.mk rules
buildfix-instsetoo_native-archive.diff, i#111617

buildfix-instsetoo_native-no-PKGFORMAT.diff, i#112761, rengelha

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

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

# Use the characters after the string to get a better kerning
# FIXME: temporarily disabled as this causes a race condition in calc's cell format dialog.
#vcl-kerning-fix.diff, n#464436, i#26519, cbosdo

svx-sdrobjeditview-update-edit-area.diff, n#305205, n#347355, rodo
goodies-eps-filter-unix.diff, n#200053, rodo

# fix erroneous element exists exception while defining new toolbar/menu
# buried in cws-vbasupportdev300
#fix-uiconfiguration-insert.diff, i#105154, noelpwer
#sc-xclimpchangetrack-discard-bogus-formula-size.diff, n#355304, tml

fix-ppt-linespacing-import-export.diff, n#355302, rodo

fields-table-formula.diff, n#631912, cbosdo

svx-hacky-htmlselect-control-import.diff, n#523191, noelpwer

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

# FIXME dev300-m83 xmloff_dis26300_conformance.diff, n#396280, flr

# FIXME: 2009-09-11: I wonder when this has been commented out, and
# why? If this really is not needed, let's remove totally then. --tml
#sw-import-TOC.diff ,n#404254, Amelia Wang

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

fix-es-accelerators.diff, i#102645

# Experimental support for Interix
# FIXME dev300-m83 win32-interix.diff, tml

# fix problem with calling private and protected members in layout code
sfx2-privateprotectedpublic.diff

# unresolved Base64 Java classes
base64.diff, i#100620, hmth

# Fix for crash on Windows by Rail Aliev. Root cause unknown.
svx-fix-fit-to-frame-crash.diff, n#508621, rodo

# FIXME dev300-m77 sd-print-fix-pageoffset.diff, n#537931, rodo # the code has moved to sd/source/ui/view/DocumentRenderer.cxx
svx-ppt-import-fix-bullet-size.diff, n#515972, rodo
# correctly import connector style attribute.
# FIXME ooo3330-m4: doesn't apply in m3f svx-msdff-import-connector-style-fix.diff, n#631804, kohei

filter-fix-build-FCFGMerge.cfg.diff, rodo
store-crash-fix.diff, deb#566189, thorsten
sd-ppt-fix-document-summary-reading.diff, n#546758, rodo
# fixes crasher in xml parser
unoxml-fix-empty-xmlns.diff, rodo
build-fix-xulrunner-npapi-inc.diff, janneke
# FIXME ooo330-m2: does not apply: configure-fix-lpsolve-depends.diff, janneke

vcl-gtk-process-events-on-exit.diff, rodo
sfx2-add-to-recently-used-after-save.diff, rodo

# In some cases when exporting a PDF from a presentation, we are asked
# to export an empty "link annotation", which gets turned into a
# rather bogus file: link to the directory the presentadion document
# is in.  Just don't bother handling such empty "link annotations".
pdf-link-export-fix.diff, n#598816, n#639278, cbosdo

svx-ppt-bullet-offset-fix.diff, n#593609, rodo

svx-fix-layout-build.diff, rodo
sfx2-style-edit-greyentry.diff, i#85003, simonaw

# soffice process doesn't block ( under linux ) connect
# to raised office instance instead ( should work for windows too )
smoketest-officeconnection-fix.diff

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


[ UnUsedButNotYetRemovedFromGit ]
SectionOwner => jholesov
SectionIssue => i#29152
# WebDAV locking implementation - totally out-of-date

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

# 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

[ 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

# Note that the CFLAGS+=-DGNOME_VFS_OPEN_LOCKED=16 in
# gnome-vfs-locking-ucb.diff is quite broken. No current Linuxes
# implement GNOME_VFS_OPEN_LOCKED any more as far as I know.
# FIXME dev300-m77 gnome-vfs-locking-ucb.diff, i#91151, jholesov # FIXME depends on webdav-locking.diff

# 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)
# FIXME dev300-m77 gnome-vfs-late-init.diff, i#84137, jholesov # FIXME careful, double check that we haven't lost anything

[ CalcFixes ]

# Excel compatibility for handling of "string numbers".
# FIXME: Please check, there was some change in this between OOO330_m4 and m6;
# I have just updated the patch to apply again, but maybe it is not necessary
# any more? -- kendy
calc-string-number.diff, kohei

# Allow export of filtered range selection, and show error when fails.
calc-pdf-export-allow-filtered-range-sc.diff,     n#585028, kohei
calc-pdf-export-allow-filtered-range-filter.diff, n#585028, kohei

# Support PHONETIC function to display asian phonetic guide.
# LATER: I'll take care of this later.  --kohei
# calc-formula-asian-phonetic.diff, i#80764, i#80765, i#80766, kohei

[ LinuxOnly ]
# make some symbols from svtools visible for the kde fpicker when compiling with gcc4
# fix: this breaks win32
# FIXME: temporary disabled by pmladek on 2011-03-30
#        we do not have that many patches against the file picker any longer
#        it is most likely solved in the plain code another way
# fpicker-kde-gcc4-visibility.diff, pmladek

system-python-ure-bootstrap.diff, deb#501028, i#90701
pyuno-ooodir.diff, i#90701
system-python-uno-path.diff, i#97629

[ Misc ]
# Changed the default option in the Templates and Documents dialog.
svtools-default-new-document.diff, rodo

# 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

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

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

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

[ NovellOnly ]
# Some Novell colors ...
novell-palette.diff, michael

# Work around G/W mail component crasher bug #FIXME - re-file vs. i#34264
# Also fix OOo/GW deadlock
win32-gw-send-mail.diff, i#34264, n#418407, tml

[ DebianBaseOnly ]
SectionOwner => rengelha

debian-default-cairo-disable.diff
# read variables from /etc/libreoffice/sofficerc, since /usr/lib/libreoffice/sofficerc
# just refers to it
oosplash-etc-libreoffice-sofficerc.diff

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

# build using -O2 on x86 and sparc according to Debian policy.
debian-opt.diff

sensible-ooomua.diff
sensible-browser.diff

# add JDK paths for MySQL, PostgreSQL, JTDS
jdbc-driver-classpaths-debian.diff

soffice-opengl-and-locking-config.diff, mklose

#configures-explicit-arch.diff

icu-arm.diff, doko

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

[ LocalizeFixes and DebianBaseOnly ]
# mention openoffice.org-report-builder instead of getting people
# to download it from elsewhere
reportdesign-mention-package-l10n.diff, rengelha

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

[ NovellOnlyUnix ]
# change user config dir name from ~/.openoffice.org3 to ~/.ooo3
# FIXME: do we want another config dir for the Novell buidls?
scp2-user-config-suse.diff, pmladek

[ DisableGCJ ]

# ignore gcj; OOo newer worked well with it
jvmfwk-disable-gcj.diff

[ 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

[ 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
# various build fixes for Sun Java 1.4; can't go upstream
build-java-1.4-qadevOOo.diff, i#12345, pmladek
build-java-1.4-wizards.diff, i#12345, pmladek
build-java-1.4-accessibility.diff, i#12345, pmladek
build-java-1.4-connectivity.diff, i#12345, pmladek
build-java-1.4-dbaccess.diff,  i#12345, pmladek
build-java-1.4-forms.diff, i#12345, pmladek
# Sun Java 1.4 does not know the -Xbootclasspath option, will not go upstream
build-java-1.4-no-Xbootclasspath.diff, i#12345, pmladek
# the new declaration was supported only by Java 1.5, see i#102469
# fortunately, the java semantic did not allow to change the other locations
# where this method was used
build-java-1.4-UnoRuntime-queryInterface.diff, i#12345, pmladek
# there are hacks to avoid LD_LIBRARY_PATH during build, see i#97992
# it somewhat does not work with Sun Java 1.4
# the paths are probably hardcoded somewhere but where?
# the old solution with shell wrapper is good enough in this case
build-java-1.4-regcomp.diff, i#12345, pmladek
# Java 1.4 does not support HashMap<String, Level1Entry> and Iterator<Level2Entry> templates
# the universal types and explicit cast must be used instead
build-java-1.4-jurt.diff, i#12345, pmladek
# Java 1.4 does not have String.replace(CharSequence, CharSequence)
# we use String.replaceAll instead; it is not perfect because it treats the parameter
# as a regular expression; though, it should be acceptable because it is only a helper tool
# and we use the hack only for building on the very old distros
build-java-1.4-l10ntools.diff, i#12345, pmladek
# another fallback to load libhsqldb with JRE 1.4
connectivity-load-libhsqldb-with-jre-1.4.diff, n#431360, pmladek


[ NovellOnlyWin32 ]
SectionOwner => tml

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

novell-win32-installer-branding.diff

# make it possible to set file open dialog default to "details" on XP
novell-win32-xp-fpicker-detail.diff, bnc#620924

novell-win32-splash.diff, fridrich
openlockedquerybox-alwaysontop.diff, n#656566, tml

[ NovellWin32WritingAids ]

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

[ DefaultSettings ]
# Optimal Page Wrap should be default for graphics insertion (X#59831)
writer-default-as-optimal-page-wrap.diff, i#38108, jody


[ BuildBits ]
build-identification.diff, tml

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

# 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

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

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

novell-win32-agfa-monotype-fonts.diff, tml


[ DebianOnly ]
open-url-support-iceanimals.diff
seamonkey-is-iceape.diff

# build against xulrunner 1.9.1+
xulrunner-1.9.1.diff, ccheney

#debian-gccXXXXX.solenv.javaregistration.diff

[ ArkOnly ]
SectionOwner => brosenk

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

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

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


[ PLDOnly ]
SectionOwner => arekm

# fix for macro browser crash
sfx2-badscript.diff, i#67976

[ Win32Only ]
# 2 more makefiles in sysui are seriously broken #35628
# parallel-python-makefile_mk.diff # looks to be upstream

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

# Save old associations for MS doc types when installing OOo, and then
# restore them if still relevant when uninstalling OOo
win32-restore-associations.diff, n#530872, tml

[ GentooOnly ]
SectionOwner => aprosky

# default inc/lib
config_office-XINC-XLIB-defaults.diff, i#65976
# Sandbox problem with wrong path
gentoo-sandbox.diff
# specific JVM search path
jvm-search-path.diff

[ DebianBaseNoHelpContent ]
SectionOwner => rengelha

disable-xmlsearch-and-xmlhelp-jar.diff

[ 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

# 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
mono-testtools.diff, rodo
buildfix-testtool-disabled.diff, cbosdo

# FIXME: ooo310-m1: the makefile is quite rewritten;
#        the pieces removed by the older version of this diff are missing now
#        it is possible that we would need another change, though
#        => need to check on Windows
climaker-csharp-win.diff, rodo

buildfix-climaker-disabled.diff, rodo
mono-bootstrap-config-and-policy.diff, rodo
mono-bridge-version.diff, n#361463, 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
# Mono component support of course requires Mono
# same caveat applied too e.g. experimental
[ MonoComp ]
mono-component-support.diff

[ VBAObjects ]
SectionOwner => noelpwer
# fix vbasupport for field related changes ( note this code
# is disabled in vbasupportdev300 upstream )
cws-vbasupportdev300_m83-fix.diff, cbosdo
vba-enable-fieldrelatedbits.diff
# This one is in the repo, it seems
#vba-container-controls.diff
# need to adapt ooo-build wrt the changes intorduced into container_controls
oox-projectname-oobuild-specifix.diff
# fix problem with inserting imported modules with oox
oox-insert-module-bug.diff
# tweak oox filter to handle any passed generated code names
# there is a strange scenario with one cust doc where a code module is missing
vba-oox-autocodename.diff,  n#507768
# tweak oox filter to handle strange scenario where there might be some
# missing codenmames in excel
vba-oox-olenameoverride.diff, n#359933, n#403974
# remove dependency of vbahelper on oox ( added by container_controls.diff )
vbahelper-no-oox.diff
# unoize msvbahelper to solve some dependency issues for split build
vba-msvbahelper-splitbuilt.diff
# fix upstream introduced Application::Intersection problem
# FIXME The problem seems to be gone, but double-check.
#vba-fix-interesection.diff
# use oox filter exclusively for import of controls  ( excel/word )
vba-use-ooxfilter-forcontrols.diff
# fix logical Operator precendence for VBA
# disabled as it causes a regression
vba-fix-logical-precedence-order.diff, bnc#644156
[ VBAUntested ]
SectionOwner => noelpwer
# KEEP - unfinished autotext stuff
vba-transient-imported-autotext.diff
# not sure if this is useful, keep for reference
save-doc-withembedded-doc-with-vba-crash.diff
# doesn't work
vba-support-stoc-typeprovider-xexactname.diff, #no-upstream
#must ask kendy about this ( noelp )
vba-parallel-build.diff, #no-upstrea
#not so useful but perhaps we can build on it later
basic-speedup-fix.diff

# the following patch is in cws pflin10
# NOT parameter without brackets
vba-not-param-withoutbrackets.diff, n#397325, Fong
# fix datevalue function in non-en_US locale
vba-datevalue-function-fix.diff, Fong
# Fixed for n#407805
basic-not-is-nothing.diff, n#407805, Fong
basic-replace-function-fix.diff, n#411203, Fong

# following patches are now maintained in the tracking vbasupport cws
#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

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

vba-show-data-form-link-fix.diff, kohei

# ensure macros are imported ( not as comments ) for calc
vba-default-enable-calcmacros.diff, noelpwer
# 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, noelpwer

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

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

sc-hacky-handle-boolean.diff, noelpwer
#tweak cws-npower7/8 to build vba before filter ( filter uses headers generated
#from oovbapi.rdb )
sc-vba-build-lst.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

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

vba-allow-ranges-for-cell-functions.diff

vba-error-object.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, i#85358

# 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

# 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

# uno interface for vba mode
vba-compatible-mode-uno.diff, Fong

# support to display spinbutton in userform
vba-spinbutton-in-userform.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 ( depends on cws-scsheetprotection02-sc.diff )
vba-worksheet-enableselection.diff, n#405312, 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
vba-fix-ide-friendly-modulename.diff, n#439971, Fong
# display a friendly basic macro tree in macrochoose dialog
vba-basic-macrochoose-dialog.diff, Fong
vba-fix-basic-macro-organizer.diff, n#439972, Fong
# fix bug accessing default member of userform control
range-listBox-compare.diff, n#421939

# fix import sizes and geometry of userforms
vba-userform-geometry-tweak.diff

# n#426415
vba-allow-forms-resetvalue-binding.diff
# n#426416
fix-vba-NOT-trigger-update.diff
# variant + string
vba-variant-fix.diff, Fong
# fix for image import for userform
userform-image-import-fix.diff
# spinbutton change wasn't imported correctly
spinbutton-import-valuechange.diff

# don't apply regex to MATCH function if typical
# 'regex' like characters are present
vba-noregrex-for-match.diff

# fix treatment of NULL with
# a) NOT operator b) comparison operators
vba-null-not-treatment.diff, n#496844
# fix core issue in Commandbar
vba-commandbar-fix.diff, n#434214, n#437157, Fong

# always use English Excel grammar when parsing formulas.
# (depends on calc-grammar-xls-english-*.diff patches.)
vba-xls-formula-parser.diff, n#422145, kohei

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

vba-servicemacros-rework.diff

#vba-word-executable-option.diff, Fong
vba-interior-object-fix.diff, n#459479, Fong
range-defaultmethod-i98476.diff, i#98476
vba-excel-iserror-fix.diff, n#469762

# filter to read custom toolbars ( and other customization data ) from writer
word-read-custom-toolbar-filter.diff, noelpwer
# vba for word support
vba-word-support.diff
vba-templateobject.diff
vba-vpagebreak-object.diff, hanbo

vba-combobox-listindex-fix.diff, n#476891, Fong
vba-fix-copysheet-toend.diff, n#478187
vba-improve-toolbarapi-macro-search.diff
# fix core when there is an error in the doc close vba
# event handler ( bit of a hack )
fix-doc-exit-basic-error-core.diff
read-vba-dir-stream-fix.diff
vba-commandbar-enabled.diff, n#459458, Fong
# worksheet change event rework
vba-worksheet-change-event-fix.diff, Fong
# fix core(s) reading custom menu's from word docs
vba-toolbar-menufilter-core-fix.diff
# enhancement to above to read new menus added to the builtin menubar
word-read-builtinmenubar-filter.diff
# allow private/public modifier for DECLARE
vba-fix-private-declare.diff
# import customization and macros from global templates ( if defined ) when
# opening word documents
vba-import-globaltemplate-customizations.diff
# fix problem with syntax like 'If LCase(str1) = str2 <> 0 Then'
vba-basic-if-compare-fix.diff, i#100600, n#488588, Fong
# fix parallel build problems in basic
# (probably obsoletes vba-parallel-build.diff)
vba-basic-parallel-build.diff
# fix parallel build problems in oovbaapi
vba-oovbaapi-parallel-build.diff

basic-allow-objectforerror-symbol.diff, n#492423
vba-fix-named-any-para-pass.diff, n#485467
vba-allow-arrays-in-usertypes.diff, n#485623
# disable project reference and toolbar/menu customization import
# for 3.1
vba-disable-toolbar+customizationimport.diff
# fix IsEmpty where api objects are passed
vba-fix-IsEmpty-api-object.diff, n#494990
# fix crash when attempting to use geometry attributes of
# control on sheet/document
vba-fix-control-shape-geom-fix.diff, n#500006
#
basic-public-dim-fix.diff, n#488590, i#100659
vba-fix-optionalparam-assigment.diff, n#494667
vba-reset-screenupdateing.diff, n#494964
vba-redim-array-fix.diff, n#495604
vba-fix-userform-init.diff, n#497923
vba-fix-Range-Insert-CopyOrigin.diff, n#498325
calc-vba-volatile-user-func.diff
vba-documentcontext.diff
fix-read-disabled-toolbarimport.diff
# more api related changes + dummy model support for multi-page
# would be nice to be able to move it nearer the other word patch
# but it won't apply there
vba-word-support-part2.diff
# tweak custom toolbar import slightly to
# import dropdowns not associated with builtin menu additions
vba-only-import-std-menutoolbar.diff
# sometimes the resize event cores the office
vba-fix-workbook-resize-core.diff
# fix macromode in documents opened by the api
vba-fix-macromode-api-docopen.diff
#fixup macro search ( provide a central macro resolve function )
vba-fixup-macrosearch.diff
#rework use of getCurrentDocument, additionally create new
#getCurrentExcelDoc & getCurrentWordDoc
vba-currentcomponent-rework.diff
#tweak testvba.cxx to cater for newly imported ProjectName
vba-testclient-fix-project.diff
#fix checkbox access via vba api
vba-fix-checkbox-ole-access.diff, n#507400
# fix vbadocumentbase::getPath & vbadocumentbase::getFullName
vba-fix-path-fullname.diff, n#507745
# fix setting control default value ( when accessed from sheet )
fix-sheet-control-valueset.diff, n#507748
# fix auto calculation of shift direction for delete ( where none specified )
vba-fix-range-delete-shift.diff, n#508101
# allow worksheet to be passed as ( before or after ) param
vba-fix-worksheet-add-before-param-object.diff, n#507760
# active newly added worksheet
vba-fix-worksheet-add-activate.diff, n#507758
# add Application.Quit api
vba-application-quit.diff, n#510003
# menu/toolbar rework
vba-commandbar-rework.diff, Fong
# add menubars related object
vba-menubar-objects.diff, n#508113, Fong
# fix missing codename problems
vba-fix-missing-codename.diff, n#507768
# fix zoom, should only affect active sheet
vba-zoom-per-sheet.diff
# fall back to doc context for active sheet if it fails
vba-fallback-to-calling-doc-context.diff
# when selecting full range view is not scrolled back
vba-cursor-pos-for-selected-maxrange.diff
# fix combox binding data import in userform
vba-combobox-rowsource-fix.diff, Fong
# support workbook auto_open event
vba-workbook-auto-open-event.diff, n#520228, Fong
# support buildin toolbar in CommandBar object
vba-buildin-toolbar-fix.diff, n#520228, Fong
# support WorkBook.PrecisionAsDisplayed
vba-workbook-precisionasdisplayed.diff, n#520228, Fong
# fix for uno api in XMenu::getPopupMenu
uno-xmenu-getpopupMenu-fix.diff, i#103486, Fong
# support CommandbarControl.Enabled
vba-commandbarcontrol-enabled.diff, n#520228, Fong
# create toolbar/menubar in document scope
vba-commandbar-document-scope.diff, Fong
# fix for dim a variable as vba constant
vba-dim-as-contants-fix.diff, n#521820, Fong
# fix for find the toolbar creating during importing
vba-commandbar-toolbar-fix.diff, Fong
# fix for set involving an automation object ( in vba mode )
vba-automation-set-fix.diff, n#507501, iz#103859
# various improvements, handle tooltip, handle seperators, fix bug where
# toolbar control isn't displayed if the macro isn't resolved,
# added classes for excel toolbar import ( disabled )
tool-menu-bar-improvements.diff
# fix for the issue in Styles.Add in Calc
vba-styles-add-fix.diff, Fong
vba-financial-functions.diff, n#525633, n#525635, n#525642, n#525647,
vba-typename-fix.diff, n#525649
# disable untill master is updated
# associated with vba-automation-set-fix.diff above, this patch
# allows the automation bridge to tell the basic runtime about
# default member of automation objects
vba-automation-defaultmember.diff, n#507501
# disable untill master is updated
# misc fixed from ibm
ibm-misc-fixes-1.diff,i#104203, i#103653
vba-automation-fix-named-paramaters.diff, n#535087
vba-automation-put-get-property-improvements.diff, n#535086, n#535088, n#535089

vba-toolbar-menu-support.diff
vba-reenable-rowsourcefixes.diff, bnc#540960

vba-basic-not-fix.diff, i#105321, Fong
vba-autofiltermode.diff, n#549383
vba-fix-selection-dot-inproject.diff
vba-fix-override-exportproblem.diff
vba-thiscomponent-fix.diff
# more Writer VBA support, need to merger into cws-vbasupportdev
vba-word-support-m4.diff, Fong
vba-reenable-cwssheetproctectbits.diff

vba-fix-find-wraparound-onfail.diff, n#554261
fix-embedobj-load.diff, n#557965
fix-vba-late-docevent-crash.diff, n#558907

# support a local cache of local excel named references
# to imported names, use that in range by name lookups
vba-import-and-use-localrangenames.diff


eventhelper-closecrash-fix.diff, n#438606, i#106270
# make sure no vba libraries are loaded ( if not filtering )
vba-dont-load-for-odf.diff
vba-fix-listboxhang-n560355.diff, n#560355
vba-fireevents-from-apichange.diff, n#561639, n#539220
vba-macro-properties.diff, n#566030
vba-word-executable-option.diff, Fong #disabled
vba-fixup-vbasupportcws.diff #disabled
# support copy of worksheet to 'other' document
vba-worksheet-copy-otherdoc-api-support.diff
# fix problem with parallel build failing
vba-fix-scripting-parallelbuild.diff
# fix strange problem when strange (empty) TBC records can
# cause document load to ... loop ( and potential crash )
vba-ctb-fix-looponload.diff, n#589794, n#590359

# fix resolving of Err function/object in vba/non-vba mode
vba-fixerror-nonvba.diff, n#597884
# tweak errObj behaviour
vba-tweak-errorobj.diff
# import vba project from xlsm document ( experimental )
# FATE # 309162
vba-import-xlsm.diff

[ WebDAV ]
SectionOwner => tml
SectionIssue => bnc#651977

cws-mav58.diff, bnc#651977, tml
webdav-locking-after-mav58.diff, tml
sfx2-pre-and-postprocess-during-save-load-after-mav58.diff, i#71939, flr

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

writerfilter-module-writer.diff #disabled
writerfilter-source-dmapper-domainmapper-debug.diff

# Ugly temporary fix
docx-ugly-fix.diff, n#548701, cbosdo

buildfix-oox-depends-on-unotools.diff

# FIXME dev300-m83 oox-fix-placeholder-layout.diff, n#485316, n#480223, rodo

# FIXME: 2009-09-02: Applies but causes compilation errors. --tml
# oox-import-chart-externalref.diff, n#480868, janneke

# FIXME: 2009-08-12: The patch to tablefragment.cxx doesn't apply and
# it isn't trivial to make it apply. I am unsure whether the expected
# semantics of the function being patched has changed.  Actual
# understanding of the code needed. --tml
# oox-import-table-autofilter.diff, n#479381, janneke

# FIXME: 2009-09-02: Applies but causes compilation errors. --tml
# oox-import-shape-textbox-hyperlink.diff, n#480854, janneke

oox-xlsx-import-fix-connector-shape.diff, n#549331, Fong

# FIXME dev300-m83 oox-custom-shape-polygons.diff, n#485418, rodo

# FIXME: 2009-08-12: This stuff seems to be already in dev300-m54
# (with some stylistic differences)? --tml
# oox-import-comments-fix-add-annotation.diff, n#480876, janneke

# FIXME_ 2009-09-02: Applies but causes compilation errors. --tml
# oox-import-sheet-protect.diff, n#481317, janneke

# FIXME dev300-m83 oox-import-text-vert-anchor-and-anchorctr.diff, n#479829, rodo

# FIXME: 2009-08-12: Does not apply, upstream code refactored, not
# clear what to do. --tml
# oox-import-zoom-setting-with-tab-color.diff, n#494603, janneke

oox-drawingml-fix-apply-shape-reference-crash.diff, n#593611, rodo

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

[ KDE4Experimental ]
# Not yet ported to co-exist with the KDE3 stuff
kde4-kab.diff

[ NovellOnlyUnix DebianBaseOnly ]
# 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

[ 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

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

[ FedoraCommonFixes ]
oooXXXXX.vcl.x86_64.impressatk.diff

ooo86080.unopkg.bodge.diff

oooXXXX.partial-revert-ooo95118.diff

[ SUSE101 ]
sled10-splash.diff, i#123456, pmladek

# fix build with the old autoconf
build-sled10-autoconf.diff
# fix ixon build with internal boost
# FIXME: it is a hack:
#     * the tools ixion-parser ixion-sorter require boost/program_options.hpp
#       and the related library; we would need jam and some hacks in
#       the internal boost to provide it => it might be easier to make
#       the ixion-parser ixion-sorter optional; they are not needed in LO
#     * AC_PROG_GREP, _AS_ECHO_LOG, _AC_DO_STDERR are not provided by
#       autoconf-2.59
#     * change to AC_PREREQ([2.59]) is not valid because the original
#       boost.m4 can't be procced by it
build-sled10-ixion-with-internal-boost.diff

[ SUSE112 ]
xulrunner-1.9.1.diff, ccheney

#[ NovellLikeOnlyWin32 ]
# Drop this for now
# novell-win32-msi-patchability.diff, tml

# FIXME: 2009-09-11: Bypass this for now. Interferes with
# cws-koheidatapilot03-vcl.diff. Test whether still needed, and if
# yes, will have to split out the interfering part of
# cws-koheidatapilot03-vcl.diff into separate versions for
# NovellLikeOnlyWin32 and others. (I am not at all sure enough about
# this to have it used on all platforms.) --tml
# i92372.diff, i#92372, n#353143, tml

[ PardusOnly ]
pardus-default-ExternalMailer.diff
pardus-clipart.diff
dont-check-fqdn.diff


# Provides a great speed-up for a mail merge operation : 7x faster
sw-mailmerge-faster.diff, i#40827, mloiseleur

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

[ OxygenOfficePalettes ]
palette-enhanced-arrow.diff
## palette-enhanced-color.diff
palette-enhanced-dash.diff
palette-enhanced-gradient.diff
palette-enhanced-hatch.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
#OxygenOffice styled progress bar
ooop-splash.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 create backup files
#always-create-backups.diff
# Make CaptionOrderNumberingFirst true for Hungarian
captionnumbering-hu.diff, i#110273, timar
# OxygenOffice new defaults
oxygenoffice_defaults.diff

#Create langpack and full installers
## ooop-langpack-policy.diff

[ OxygenOfficeExtras ]
## extras_wizard.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

[ OxygenOfficeWin32Only ]
# Update Windows installation of OpenOffice.org even the version is same
# So you can upgrade to OxygenOffice without removing OpenOffice.org
ooop-updatable-sameversion.diff

[ OxygenOfficeLinuxOnly ]
#Always use default iconset
always_default_iconset.diff

[ WWInProgress ]
sw_layout_in_table_cell_fix.diff, n#367341, flr
sw-team-pane.diff

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

[ LocalizeFixes ]
# Fix Spanish translation of the autofilter menu; thanks to Eduardo Moreno
# FIXME: still broken in translations repo on 2010-03-31
#        need to be fixed in Pootle; sent mail to l10n@es.libreoffice.org
# sc-autofilter-l10n-es.diff, i#103840, pmladek

[ Experimental ]
experimental_ooapi.diff, flr

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

[ AutoLayout ]
impress-autolayout.diff, cocofan

[ WriterDocComparison ]
SectionOwner => jholesov
# GSoC 2009 task, implemented by Tzvetelina Tzeneva
# http://gsoc-tzvetelina.blogspot.com/

# Improved document comparison

# FIXME 2010-10-08: Doesn't apply with new RTF code now in the repo,
# tries to patch the nonexistent sw/source/filter/rtf/rtfatr.cxx
#writer-doc-comparison.diff, tzvetelina

# Help files for the document comparison
# FIXME 2010-11-11: Does not make sense to modify help without the modified functionality; thanks Rene for pointing it out
#writer-doc-comparison-help.diff, tzvetelina


[ MySQL and DebianBaseOnly ]
# fix mysqlc to use the SONAME instead of the .so symlink...
mysqlcppconn-mysqlclient-SONAME.diff

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

[ Speed ]
# don't throw unnecessary exceptions in sfx2
speed-sfx2-dont-throw-too-much.diff, i#107512, jholesov

[ GentooExperimental ]
SectionOwner => hmth
# make Python2 optional
disable-python.diff

[ Netbook ]
vcl-netbook.diff, rodo

framework-netbook.diff, rodo

vcl-netbook-export-small-screen-mode.diff, rodo

framework-netbook-use-small-screen-mode.diff, rodo

netbook-window-decoration-update.diff, n#621116, rodo

# reduce height of selected dialogs to avoid shrinking on Netbooks
pdf-export-dialog-reduce-height.diff, bnc#623352, rodo
recovery-dialog-reduce-height.diff, bnc#623352, rodo

[ Toolbars ]
SectionOwner => jholesov
# experimental now

# Not looking too well, but might be useful?
toolbar-decorations-vcl-nwf.diff

[ GSoC2010 ]
# Patches from GSoC 2010 students.
maths_baseline_fix.diff, i#972, spiso
online_gallery.diff, tijana
sc-single-right.diff, td123
sd_effects_styles.diff, pixie
symbols-20-august.diff, i#11167, jopsen
vEdit-13-August.diff, jopsen

[ Win32Packaging ]
# patch to create a multilang installer and helppacks by default
instsetoo_native-win32-packaging.diff, fridrich