Revision tags: AOO420-Dev5-m5, AOO4115-GA, AOO4114-GA, AOO420-Dev4-m4, AOO4113-GA, AOO4112-GA, AOO4111-GA, AOO420-Dev3-m3, AOO4110-GA, AOO419-GA, AOO418-GA |
|
746748b1 | 24-Sep-2020 |
Jim Jagielski |
Various macOS fixes to force C++11 and correct file layout and builds |
Revision tags: 420-Dev2-m2, AOO417, AOO420-Dev-m1, AOO416, AOO416-RC1, AOO415, AOO414 |
|
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 ...
|
Revision tags: AOO413 |
|
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 ...
|
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 ...
|
Revision tags: AOO4121, AOO412, SNAPSHOT |
|
1079955c | 07-Oct-2015 |
Andrea Pescetti |
#i124712# Use -fuse-cxa-atexit (to build svl on, e.g., Ubuntu 14.04) Patch by: Amali Praveena Soban Kumar <samalipraveena@yahoo.com.au> git-svn-id: https://svn.apache.org/repos/asf/
#i124712# Use -fuse-cxa-atexit (to build svl on, e.g., Ubuntu 14.04) Patch by: Amali Praveena Soban Kumar <samalipraveena@yahoo.com.au> git-svn-id: https://svn.apache.org/repos/asf/openoffice/branches/AOO410@1707399 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|
Revision tags: AOO411 |
|
de2c434c | 24-Sep-2015 |
Pedro Giffuni |
i126553- Basic merges to clean up the FreeBSD port. Bring major updates from trunk for the FreeBSD build. This mainly targets the FreeBSD port that uses external libraries. The build
i126553- Basic merges to clean up the FreeBSD port. Bring major updates from trunk for the FreeBSD build. This mainly targets the FreeBSD port that uses external libraries. The buildbot, using internal components, requires more changes but I am not planning to bring them to this branch. r1591501, r1602791: Fix for the i386 platform. r1669457, r1669459: Make FreeBSD bridges code buildable with clang. r1669462, r1669465, r1694132: Fixes for recent gcc and clang. git-svn-id: https://svn.apache.org/repos/asf/openoffice/branches/AOO410@1705124 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|
Revision tags: AOO410, AOO410_Beta |
|
33b74116 | 14-Feb-2014 |
Herbert Dürr |
#i114728# force target compatibility when building with a newer OSX SDK using OSX's MAC_OS_X_VERSION_MAX_ALLOWED define forces the build to be binary compatibile to the configured deploy
#i114728# force target compatibility when building with a newer OSX SDK using OSX's MAC_OS_X_VERSION_MAX_ALLOWED define forces the build to be binary compatibile to the configured deployment target, even when the SDK version employed for building it is newer than the deployment target git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1568287 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|
61a3a0ff | 23-Jan-2014 |
Herbert Dürr |
#114728# use 10.7 SDK as default, but allow newer SDK in configure Patch by: Juergen Schmidt <jsc@apache.org> git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1560
#114728# use 10.7 SDK as default, but allow newer SDK in configure Patch by: Juergen Schmidt <jsc@apache.org> git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1560758 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|
1e1ac450 | 23-Jan-2014 |
Herbert Dürr |
#i122301# switch Mac port to SDK 10.7 / 64bit git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1560747 13f79535-47bb-0310-9956-ffa450edef68 |
3d82938a | 22-Jan-2014 |
Herbert Dürr |
#i122195# extend macosx gbuild makefile for clang-compiler git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1560350 13f79535-47bb-0310-9956-ffa450edef68 |
6d1ed1dd | 10-Dec-2013 |
Herbert Dürr |
#122195# change cppu env, comid from generic cxx to s5abi (System 5 AMD64 ABI) Patch by: Juergen Schmidt <jsc@apache.org> Merged from r1534063 in the rejuvenate01 branch
#122195# change cppu env, comid from generic cxx to s5abi (System 5 AMD64 ABI) Patch by: Juergen Schmidt <jsc@apache.org> Merged from r1534063 in the rejuvenate01 branch git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1549925 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|
bebebbbf | 19-Nov-2013 |
Herbert Dürr |
#i122362# post-stlport fixes for the macosx-target=10.4 build git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1543407 13f79535-47bb-0310-9956-ffa450edef68 |
b597708b | 18-Nov-2013 |
Herbert Dürr |
#i122362# remove stlport4-build support but keep the --without-stlport configure option for now it is the new default anyway git-svn-id: https://svn.apache.org/repos/asf/op
#i122362# remove stlport4-build support but keep the --without-stlport configure option for now it is the new default anyway git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1543067 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|
f958b5f1 | 27-Oct-2013 |
Yuri Dario |
i118923 - OS/2 port: build system updates. git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1536083 13f79535-47bb-0310-9956-ffa450edef68 |
Revision tags: AOO401, AOO400 |
|
e5a7b9b2 | 17-Jul-2013 |
Herbert Dürr |
#i122767# disallow pre-standard C++ for-scope git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1504081 13f79535-47bb-0310-9956-ffa450edef68 |
23f1be86 | 06-Jun-2013 |
Herbert Dürr |
#i122378# fix the dbgutil-enabled build on Windows crt-debug libraries use different structure layouts than their regular counterparts so mixing causes binary incompatibilities which
#i122378# fix the dbgutil-enabled build on Windows crt-debug libraries use different structure layouts than their regular counterparts so mixing causes binary incompatibilities which must be avoided. Always using the regular libs achieves this. git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1490324 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|
3d2a2350 | 27-May-2013 |
Herbert Dürr |
#i122378# allow linking against MSVC TR1's STL libraries instead of stlport the standard C++ library on MSVC is available in LIBCPMT.LIB and MSVCPRT.LIB (the static and dynamic C++ runti
#i122378# allow linking against MSVC TR1's STL libraries instead of stlport the standard C++ library on MSVC is available in LIBCPMT.LIB and MSVCPRT.LIB (the static and dynamic C++ runtime libraries for multithreaded environments). git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1486650 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|
910823ae | 18-Apr-2013 |
Jürgen Schmidt |
#121996# integrate first part to remove 3layer office git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1469276 13f79535-47bb-0310-9956-ffa450edef68 |
9964c96f | 12-Apr-2013 |
Herbert Dürr |
stop using Mac specific compiler option "Wno-long-double" having this option results in a warning for each compile on gcc>=4.2 or clang. Apple says in http://lists.cs.uiuc.edu/pipermail/
stop using Mac specific compiler option "Wno-long-double" having this option results in a warning for each compile on gcc>=4.2 or clang. Apple says in http://lists.cs.uiuc.edu/pipermail/llvmdev/2008-June/015095.html "[...] the best thing is not to use it. There is no reason to." git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1467220 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|
64f1f997 | 04-Feb-2013 |
Herbert Dürr |
fix linker complaints about invalid security options for StaticLib targets git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1442188 13f79535-47bb-0310-9956-ffa450edef68 |
cde270a3 | 01-Dec-2012 |
Yuri Dario |
i118923 - OS/2 port: build import libraries from .def file instead of .dll, allows export by ordinal for faster loading. git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1415951
i118923 - OS/2 port: build import libraries from .def file instead of .dll, allows export by ordinal for faster loading. git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1415951 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|
Revision tags: AOO340 |
|
a8e4828d | 15-Oct-2012 |
Pedro Giffuni |
Merge r1394813 from buildsys branch. Bring in port changes to the FreeBSD configuration files [1]. Also drop the gnu ld hash style selection: on FreeBSD this is not critical and the
Merge r1394813 from buildsys branch. Bring in port changes to the FreeBSD configuration files [1]. Also drop the gnu ld hash style selection: on FreeBSD this is not critical and the system compiler knows better what to do. Author: Maho [1] git-svn-id: https://svn.apache.org/repos/asf/incubator/ooo/trunk@1398166 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|
10b7a200 | 19-Jun-2012 |
Yuri Dario |
i118923 - OS/2 port: hide truncation warnings while building. git-svn-id: https://svn.apache.org/repos/asf/incubator/ooo/trunk@1351688 13f79535-47bb-0310-9956-ffa450edef68 |
4d2a3edf | 01-Mar-2012 |
Yuri Dario |
i118923 - OS/2 port: remove 8.3 hacks from gbuild, remove IMP_ORD dependencies. git-svn-id: https://svn.apache.org/repos/asf/incubator/ooo/trunk@1295713 13f79535-47bb-0310-9956-ffa450edef68 |