9b32443e | 12-Jul-2018 |
Jim Jagielski |
Work on getting macOS building again w/ 4.2.0 and the versioning of libs... what a cluster* git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1835757 13f79535-47bb-0310-
Work on getting macOS building again w/ 4.2.0 and the versioning of libs... what a cluster* git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1835757 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|
bee6bcb9 | 09-Apr-2018 |
Damjan Jovanovic |
Port main/ridljar to gbuild / Ant. Generalize the Ant build a bit, to make using javamaker more flexible, and allow arbitrary "pre-compile" actions to be plugged in. Patch b
Port main/ridljar to gbuild / Ant. Generalize the Ant build a bit, to make using javamaker more flexible, and allow arbitrary "pre-compile" actions to be plugged in. Patch by: me git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1828757 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|
41f03cd9 | 08-Apr-2018 |
Damjan Jovanovic |
Added an Ant target type to gbuild, that can be used to call Ant to build a deliverable. Added Ant support files that provide build infrastructure that can be used by Java projects, including
Added an Ant target type to gbuild, that can be used to call Ant to build a deliverable. Added Ant support files that provide build infrastructure that can be used by Java projects, including testing with JUnit at compile time, processing of external dependencies, using the IDL toolchain (idlc, regmerge, javamaker), and general build support like compiling into class files, building the JAR file and cleaning. These features require Ant version >= 1.9.1. Ported main/jurt to gbuild and this Ant infrastructure. Patch by: me git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1828636 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|
Revision tags: AOO415 |
|
edd74ba5 | 12-Mar-2018 |
Damjan Jovanovic |
Implement initial unfinished support for building 64 bit AOO on 64 bit Windows. For now, require --enable-win64 to be passed to ./configure and without it build 32 bit binaries like befo
Implement initial unfinished support for building 64 bit AOO on 64 bit Windows. For now, require --enable-win64 to be passed to ./configure and without it build 32 bit binaries like before. Detect the MSVC compiler only through oowintool (ie. registry keys) and the command line option, not by searching the path, as we need to know the exact path to determine whether the compiler outputs 32 or 64 bit binaries. Pass --aoo32-on-win64 to oowintool when doing the AOO32 on Win64 build, so oowintool known to look at the 32 bit registry for Java, as we need a JDK of matching bitness. We may need this option for other oowintool tasks. Introduce the "mscx" COMNAME for 64 bit AOO. Add the remaining gbuild and dmake changes necessary to use the 64 bit MSVC compiler. Patch by: me git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1826580 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|
b32aa359 | 10-Mar-2018 |
Damjan Jovanovic |
tr;dr: Don't use .map files for main/cppuhelper on Windows, control symbol visibility using source-level declarations instead. C++ symbols are mangled differently on Win64 and Win32, and
tr;dr: Don't use .map files for main/cppuhelper on Windows, control symbol visibility using source-level declarations instead. C++ symbols are mangled differently on Win64 and Win32, and extracting new symbols from binaries and updating .DEF/.map files that control symbol visibility is painful. Both Windows and *nix have moved from using .DEF and .map files to using declarations in the source code instead, of the form __declspec(dllexport) and __attribute__ ((visibility("default"))) (which we wrap in SAL_DLLPUBLIC_EXPORT). The GBuild ported modules also have to replace .map files with source code declarations (and all so far have), as the default symbol visibility in GBuild is "hidden" and GBuild has no mechanism to use .map files so far. So for the purpose of the Win64 port, but as a generally good idea and a necessity for future GBuild ports, re-implement linker symbol visibility in main/cppuhelper using SAL_DLLPUBLIC_EXPORT declarations in the source code instead of using .map files. The purpose of .map files is to version symbols in the ELF binary format on *nix instead of just controlling visibility, so they still provide that benefit on *nix, but Windows has no symbol versioning, all dmake does with .map files is convert them to unversioned .DEF files, which are harder to maintain than source-level declarations (as they are both mangled and in a separate file, and have to be specified per method instead of only once per class). This turned out to cause trouble, as our autodoc tool doesn't have a C preprocessor, so the "CPPUHELPER_DLLPUBLIC" was breaking generating documentation, which was breaking the build due to documentation completeness checks in main/odk. Thus main/autodoc had to be patched to allow command line parameters passed to it to specify parsing tokens to ignore, and main/odk had to be patched to pass "CPPUHELPER_DLLPUBLIC" as the token to ignore. Patch by: me git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1826398 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|
db48b064 | 06-Mar-2018 |
Damjan Jovanovic |
Revert 1825956 and put it into the win64.patch file instead, as it may break building 32 bit AOO on 64 bit Windows. Patch by: me git-svn-id: https://svn.apache.org/repos/as
Revert 1825956 and put it into the win64.patch file instead, as it may break building 32 bit AOO on 64 bit Windows. Patch by: me git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1826001 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|
b80a7b46 | 06-Mar-2018 |
Damjan Jovanovic |
Win64 has the "mscx" CPPU_ENV. Patch by: me git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1825956 13f79535-47bb-0310-9956-ffa450edef68 |
78ecfec3 | 05-Jan-2018 |
Don Lewis |
Nothing uses GXX_INCLUDE_PATH, so remove it. The uretest/README file mentions is being needed by the STLport included in the URE, but that does not appear to be true any longer, and it is no
Nothing uses GXX_INCLUDE_PATH, so remove it. The uretest/README file mentions is being needed by the STLport included in the URE, but that does not appear to be true any longer, and it is not used by boost. git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1820351 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|
Revision tags: AOO414 |
|
0a26ed81 | 25-Aug-2017 |
Matthias Seidel |
Changed %PRODUCT_RELEASE% for SDK from 4.2 to 4.2.0 git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1806161 13f79535-47bb-0310-9956-ffa450edef68 |
Revision tags: AOO413 |
|
1807f435 | 25-Mar-2017 |
Matthias Seidel |
Changed color of table head git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1788688 13f79535-47bb-0310-9956-ffa450edef68 |
b486c179 | 17-Mar-2017 |
Matthias Seidel |
Changed link from openoffice.org to openoffice.org/api git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1787396 13f79535-47bb-0310-9956-ffa450edef68 |
f953d1c4 | 28-Feb-2017 |
Matthias Seidel |
Minor changes in HTML and CSS git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1784832 13f79535-47bb-0310-9956-ffa450edef68 |
a02e2aeb | 22-Feb-2017 |
Matthias Seidel |
Removed unused graphics in SDK, minor changes in HTML git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1784055 13f79535-47bb-0310-9956-ffa450edef68 |
64c3c3ee | 19-Feb-2017 |
Matthias Seidel |
Further HTML code cleanup, removed unused graphic git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1783682 13f79535-47bb-0310-9956-ffa450edef68 |
2f8a5df7 | 18-Feb-2017 |
Matthias Seidel |
Further HTML code cleanup git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1783599 13f79535-47bb-0310-9956-ffa450edef68 |
907636ef | 18-Feb-2017 |
Matthias Seidel |
Fixed typos, HTML code cleanup git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1783597 13f79535-47bb-0310-9956-ffa450edef68 |
d861de33 | 18-Feb-2017 |
Matthias Seidel |
Rebranding in HTML SDK documentation (OpenOffice.org->Apache OpenOffice git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1783485 13f79535-47bb-0310-9956-ffa450edef68 |
ae5b48de | 17-Feb-2017 |
Matthias Seidel |
Changed %PRODUCT_RELEASE% for SDK from 4.2.0 to 4.2, removed unused graphics, fixed typos, changed makefiles git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1783451 13f79535-47
Changed %PRODUCT_RELEASE% for SDK from 4.2.0 to 4.2, removed unused graphics, fixed typos, changed makefiles git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1783451 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|
5d5501ce | 16-Feb-2017 |
Matthias Seidel |
Changed %PRODUCT_RELEASE% for SDK from 4.1 to 4.2.0 git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1783309 13f79535-47bb-0310-9956-ffa450edef68 |
99eb6ac2 | 16-Feb-2017 |
Matthias Seidel |
Uploaded missing graphics for SDK HTML doc, HTML code changes git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1783264 13f79535-47bb-0310-9956-ffa450edef68 |
80295734 | 15-Feb-2017 |
Matthias Seidel |
Updated footer with new ASF logo, updated graphic (bluball.gif->blueball.png), fixed Wiki links and some smal typos git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1783109 13f7
Updated footer with new ASF logo, updated graphic (bluball.gif->blueball.png), fixed Wiki links and some smal typos git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1783109 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|
0f3543aa | 14-Feb-2017 |
Matthias Seidel |
Corrected title, fixed typos and corrected link for SDK HTML doc git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1783028 13f79535-47bb-0310-9956-ffa450edef68 |
258fec27 | 13-Feb-2017 |
Matthias Seidel |
Updated graphic for SDK HTML doc git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1782773 13f79535-47bb-0310-9956-ffa450edef68 |
3367b748 | 11-Dec-2016 |
damjan |
Fix an odk makefile ok Windows. Patch by: me git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1773598 13f79535-47bb-0310-9956-ffa450edef68 |
26f17024 | 09-Dec-2016 |
damjan |
Port main/javaunohelper to gbuild. Also fix building odk with the new path to the zipped .java files. Patch by: me git-svn-id: https://svn.apache.org/repos/asf/openoffice/t
Port main/javaunohelper to gbuild. Also fix building odk with the new path to the zipped .java files. Patch by: me git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1773449 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|