b4e95e96 | 22-May-2021 |
mseidel |
Fixed error in last commit |
3c0d14cb | 21-May-2021 |
mseidel |
Re-enable adapted texts for NSIS installer. This fixes https://bz.apache.org/ooo/show_bug.cgi?id=127628 |
be689d08 | 11-May-2021 |
mseidel |
Bump rev to 4.1.11 |
Revision tags: AOO4110-GA |
|
b1cdbd2c | 19-Apr-2021 |
Jim Jagielski |
RC2 |
b9c8791e | 01-Apr-2021 |
mseidel |
Bump rev to 4.1.10 |
Revision tags: AOO419-GA |
|
85cfe422 | 04-Jan-2021 |
mseidel |
Updated copyright year to 2021 |
Revision tags: AOO418-GA, 420-Dev2-m2, AOO417, AOO420-Dev-m1, AOO416, AOO416-RC1, AOO415, AOO414, AOO413 |
|
0ede1db1 | 15-Mar-2017 |
Matthias Seidel |
Fixed typos git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1786974 13f79535-47bb-0310-9956-ffa450edef68 (cherry picked from commit f1e0dfd3db8a55251bf21b6dd04cde9725d20b76) |
30f2cd9a | 26-Dec-2020 |
Jim Jagielski |
bump rev to 4.1.9 |
67baec14 | 29-Oct-2020 |
Jim Jagielski |
Force git/svn version to display if we are a src build (cherry picked from commit 8403f704f807051b7f1dc4cc96915c2e825f68d3) |
43c75f1d | 28-Oct-2020 |
Jim Jagielski |
Be safe when checking FAKEROOT (cherry picked from commit dfe9974f00bbfbbbe3454d83e54146dac7779823) |
04229760 | 21-Oct-2020 |
Jim Jagielski |
FAKEROOT is "" in the env |
314bad97 | 19-Oct-2020 |
Matthias Seidel |
Update minor.mk |
1732e54a | 06-Oct-2020 |
Jim Jagielski |
Bump to m2 ==> AOO418-RC2 |
746748b1 | 24-Sep-2020 |
Jim Jagielski |
Various macOS fixes to force C++11 and correct file layout and builds |
e0ac9675 | 09-Oct-2017 |
Jim Jagielski |
More hoo-haa trying to get NSS to compile under macOS with 10.7 as the target. Moving to 10.9 most likely is the better fix, but that means AOO 4.2.0 will no longer support anything older
More hoo-haa trying to get NSS to compile under macOS with 10.7 as the target. Moving to 10.9 most likely is the better fix, but that means AOO 4.2.0 will no longer support anything older than Mavericks. Which I don't think we want to do. git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1811598 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|
0bd9e244 | 03-Jan-2017 |
pfg |
Initial support for the FreeBSD ARM platform. This is just the skeleton, basically a copy of the linux support. It wouldn't be surprising if it works without much trouble.
Initial support for the FreeBSD ARM platform. This is just the skeleton, basically a copy of the linux support. It wouldn't be surprising if it works without much trouble. git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1777057 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|
941ddfd7 | 08-Dec-2016 |
pfg |
Update endianness detection on FreeBSD. This produces a working AOO on FreeBSD PowerPC64! This is related to i126615 which was also fixed by Curtis a while ago. Kudos for both c
Update endianness detection on FreeBSD. This produces a working AOO on FreeBSD PowerPC64! This is related to i126615 which was also fixed by Curtis a while ago. Kudos for both contributions, makes me want to get a PowerPC to run FreeBSD + AOO on it! Author: Curtis Hamilton -- cmhamilto at gmail git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1773166 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|
Revision tags: AOO4121, AOO412, SNAPSHOT, AOO411 |
|
af84ad07 | 06-Jul-2014 |
Pedro Giffuni |
Add initial support for FreeBSD PPC using gcc. This is just the skeleton and required bridge support based on linux-ppc. Currently untested. git-svn-id: https://svn.apache.
Add initial support for FreeBSD PPC using gcc. This is just the skeleton and required bridge support based on linux-ppc. Currently untested. git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1608245 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|
07cb168e | 16-Jan-2017 |
pfg |
i104495 - libstdc++ removal. This cleanup was meant for KDE4 integration: in the BSDs this is dead code and it doesn't seem a good idea on linux either, plus carrying libstdc++ doesn
i104495 - libstdc++ removal. This cleanup was meant for KDE4 integration: in the BSDs this is dead code and it doesn't seem a good idea on linux either, plus carrying libstdc++ doesn't align with ASF policies. git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1779119 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|
6ea0ec58 | 23-Aug-2020 |
Don Lewis |
Force Linux builds to use gnu++98 (C++98 + GNU extensions) mode to be the most compatible with our old code base rather than relying on the compiler default mode. Compiling in C++11 or newer
Force Linux builds to use gnu++98 (C++98 + GNU extensions) mode to be the most compatible with our old code base rather than relying on the compiler default mode. Compiling in C++11 or newer mode is very noisy due to deprecation warnings about our use of std::auto_ptr. If the compiler defaults to C++17 mode or newer, the build would be totally broken because std::auto_ptr is removed from C++17. There is an unknown amount of porting effort needed to convert to std::unique_ptr, which has somewhat different semantics and which is not available before C++11, which would break building with older versions of gcc which default to gnu++98 mode. std::shared_ptr, might be an alternative since there is a BOOST implementation.
show more ...
|
ad2d53db | 21-Apr-2018 |
Don Lewis |
Unbreak build on FreeBSD with clang 6.0 and newer. Clang 6 changed the its default C++ standard from C++98 to C++14 and our old code is not prepared for that. Avoid the problem by adding th
Unbreak build on FreeBSD with clang 6.0 and newer. Clang 6 changed the its default C++ standard from C++98 to C++14 and our old code is not prepared for that. Avoid the problem by adding the -std=gnu++98 compiler flag. Add the -fstack-protector compiler flag on FreeBSD INTEL and X86_64. git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1829757 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|
e250bff1 | 16-Jan-2019 |
Jim Jagielski |
Merge r1851443, r1851449 from trunk: Use fakeroot instead of our custom getuid.c LD_PRELOAD hack if available when creating Debian packages. This is because epm and dpkg (et.al.) need to be
Merge r1851443, r1851449 from trunk: Use fakeroot instead of our custom getuid.c LD_PRELOAD hack if available when creating Debian packages. This is because epm and dpkg (et.al.) need to be fooled into thinking that root is creating these packages for the correct permissions. As long as we have the full path, use it Reviewed by: jim git-svn-id: https://svn.apache.org/repos/asf/openoffice/branches/AOO42X@1851450 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|
29535d02 | 19-May-2020 |
mseidel |
Fixes issue with GNU make 4.3 (cherry picked from commit 7f3d5d1d1e5d0e51092276ddff205b8a31aab26f) |
3d054da9 | 05-Oct-2019 |
mseidel |
Patch for Win64 shell extension, provided by: Don Lewis (cherry picked from commit f65b8bff325add857d0f70d81aeb09a90aa05edf) |
4c01c3a0 | 02-Oct-2019 |
Don Lewis |
Upgrade bundled expat to 2.2.9. Delete expat-winapi.patch which was needed to get linkage on Windows to work with the expat static libraries. Instead add -DXML_STATIC to the compile
Upgrade bundled expat to 2.2.9. Delete expat-winapi.patch which was needed to get linkage on Windows to work with the expat static libraries. Instead add -DXML_STATIC to the compiler flags when building the modules that link to the expat static libraries to accomplish the same thing, but in a supported way. Don't build the expat man pages since we don't have the necessary build dependencies and we don't need them anyway. (cherry picked from commit 190cb14849237ec7207449ab78b1e9f4cddb3d32)
show more ...
|