diff options
author | Michael Stahl <mstahl@redhat.com> | 2017-07-14 15:31:20 +0200 |
---|---|---|
committer | Michael Stahl <mstahl@redhat.com> | 2017-07-14 16:20:45 +0200 |
commit | 55baf61c08630e0c09a87d99519211467818ef8c (patch) | |
tree | d2632afcc5122b10e5142124321fe3cd0b3c03ed /postprocess | |
parent | a03a0cfb1e41c357950a40623c2f8b6f5507e97d (diff) |
officecfg: increase GraphicManager/TotalCacheSize again for 64-bit
There's a bit of a problem with XFillBitmapItem, which contains a
GraphicObject that can't be swapped because it's a poolable item.
Generally contemptorary hardware has enough RAM that we can easily
increase the cache size to 400M (effectively there's another factor
of 2x), but on legacy 32-bit platforms the address space is getting
scarce, so keep the existing size for those.
Change-Id: I8437f4e8c5421f8ec20e94e4cdf64f867d7760ca
Diffstat (limited to 'postprocess')
-rw-r--r-- | postprocess/CustomTarget_registry.mk | 5 |
1 files changed, 5 insertions, 0 deletions
diff --git a/postprocess/CustomTarget_registry.mk b/postprocess/CustomTarget_registry.mk index 294f9de9400f..87792b6f062e 100644 --- a/postprocess/CustomTarget_registry.mk +++ b/postprocess/CustomTarget_registry.mk @@ -351,6 +351,11 @@ else postprocess_FILES_main += $(postprocess_MOD)/org/openoffice/Office/Paths-internallibexttextcatdata.xcu endif +ifneq ($(filter $(CPUNAME),POWERPC INTEL ARM HPPA GODSON M68K SPARC S390),) +postprocess_FILES_main += \ + $(postprocess_MOD)/org/openoffice/Office/Common-32bit.xcu +endif + postprocess_DEPS_math := main postprocess_FILES_math := \ $(postprocess_XCS)/Office/UI/MathCommands.xcs \ |