e5dc8c16 | 03-Dec-2016 |
arielch |
i127236 - Use libwww-perl to download dependencies git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1772463 13f79535-47bb-0310-9956-ffa450edef68 |
c0f6b924 | 03-Dec-2016 |
arielch |
i127236 - Use libwww-perl to download dependencies Cherrypicked some changes from Revision 1761352 git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1772462 13f7953
i127236 - Use libwww-perl to download dependencies Cherrypicked some changes from Revision 1761352 git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1772462 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|
b871de36 | 21-Oct-2016 |
arielch |
i127100 - Build Windows installer with NSIS >= 3.0 git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1766031 13f79535-47bb-0310-9956-ffa450edef68 |
55511c50 | 01-Oct-2016 |
pescetti |
#i127148# Include testgraphical/references in generated source package. git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1763019 13f79535-47bb-0310-9956-ffa450edef68 |
4b8ca05d | 01-Oct-2016 |
pescetti |
#i126605# Ignore generated scripts for supported platforms when creating source package. git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1763017 13f79535-47bb-0310-9956-ffa450e
#i126605# Ignore generated scripts for supported platforms when creating source package. git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1763017 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|
274b8a62 | 21-Sep-2016 |
pescetti |
#i127129# Backport fix from AOO413 for downloading extensions from HTTPS. git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1761814 13f79535-47bb-0310-9956-ffa450edef68 |
e6091915 | 28-Aug-2016 |
truckman |
Follow up to r1758061. Only pass -DPRECOMPILED_HEADERS to the compiler when the precompiled header is actually going to be used. git-svn-id: https://svn.apache.org/repos/asf/o
Follow up to r1758061. Only pass -DPRECOMPILED_HEADERS to the compiler when the precompiled header is actually going to be used. git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1758092 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|
7517f704 | 27-Aug-2016 |
truckman |
#i117845# [gbuild] invalid link-target dep-files can be generated Fix the Windows build performance regression with precompiled headers introduced by the fix for #i117845# that was merg
#i117845# [gbuild] invalid link-target dep-files can be generated Fix the Windows build performance regression with precompiled headers introduced by the fix for #i117845# that was merged from branches/gbuild-reintegration by r1755455. The use of precompiled headers is triggered by the use of two compiler flags, -DPRECOMPILED_HEADERS which triggers the inclusion of a special header for the library that includes all of the include files needed for any source file in the library, and -Yu[headername] which tells the the Microsoft compiler to use the precompiled version of this header. It would be nice if these two flags were added to the compiler flags at the same time, but they are not. The -DPRECOMPILED_HEADERS flag is always added if the library is configured to use precompiled headers, but the -Yu flag is only added conditionally if the flags for building a particular source file match those that were used to precompile the header. A further condition is the presence of $(PCH_NAME), which is set as a target-specific variable on the library, and which is supposed to be inherited by its dependencies to be used when compiling the source files for the library. Unfortunately the fix for #i117845 caused the source and object files to be dependencies of a different target, which did not have $(PCH_NAME) set. They did not inherit $(PCH_NAME), so they were compiled with -DPRECOMPILED_HEADERS, but not -Yu, causing the compiler to do more work than in the case where the precompiled header option is disabled resulting in longer builds with the use of this option. Fix by setting a target-specific $(PCH_NAME) for the new target. git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1758061 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|
bc6f66a4 | 09-Aug-2016 |
damjan |
Modern versions of JUnit need the hamcrest-core JAR. Patch by: me git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1755627 13f79535-47bb-0310-9956-ffa450edef68 |
b63233d8 | 07-Aug-2016 |
damjan |
Merge branches/gbuild-reintegration to trunk. git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1755455 13f79535-47bb-0310-9956-ffa450edef68 |
Revision tags: AOO4121 |
|
a4176b65 | 28-Jul-2016 |
damjan |
Perl returns the exit code of a subprocess shifted right by 8 bits. Shift it left before use. Patch by: me git-svn-id: https://svn.apache.org/repos/asf/openoffice/trun
Perl returns the exit code of a subprocess shifted right by 8 bits. Shift it left before use. Patch by: me git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1754353 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|
fb2ebae7 | 27-Jul-2016 |
damjan |
Allow Ctrl+C to interrupt ./bootstrap. Patch by: me git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1754316 13f79535-47bb-0310-9956-ffa450edef68 |
6eeb2f28 | 24-Jul-2016 |
damjan |
Give up on using Perl's LWP::UserAgent and LWP::Protocol::https to download files during ./bootstrap. It's a nightmare to get it working on the buildbots - Infra has been trying on INFRA-1129
Give up on using Perl's LWP::UserAgent and LWP::Protocol::https to download files during ./bootstrap. It's a nightmare to get it working on the buildbots - Infra has been trying on INFRA-11296 for 5 months to get it installed. Installing through CPAN doesn't always work - tests fail on CentOS 5 and on Cygwin. Even when installed, it's not always found. The gain just doesn't justify the effort. Worst of all, it's holding back development. What else is there? A CLI tool like wget could work, but it's not listed as a dependency, and it breaks on CentOS 5 for https://, the thing it's needed for most. I instead re-implemented it in Java. Java is freely available, highly portable, and rock solid. We already use it in the build, and it's described as being a mandatory build requirement even though ./configure.ac treats it as optional. Best of all it supports https:// out of the box in java.net.URLConnection and uses its own root CA certificates. Tests show my AOOJavaDownloader class works on FreeBSD and Windows, supports HTTP redirection, and generally works like a charm. Patch by: me git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1753943 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|
6546466c | 10-Jun-2016 |
damjan |
Fix a typo in my last patch. Patch by: me git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1747759 13f79535-47bb-0310-9956-ffa450edef68 |
00c50a90 | 10-Jun-2016 |
damjan |
#i126918# - windows build breaks in module crashrep - Assertion Failed Prevent OSL assertion failures from bringing up messageboxes during the build on Windows. Patch by: me
#i126918# - windows build breaks in module crashrep - Assertion Failed Prevent OSL assertion failures from bringing up messageboxes during the build on Windows. Patch by: me git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1747758 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|
d29d84fa | 05-Jun-2016 |
damjan |
#i126736#: fix typo in systemactions.pm Remove stray backslashes in warning messages in systemactions.pm which cause warnings. Patch by: j.nitschke@ok.de Reviewed by: me
#i126736#: fix typo in systemactions.pm Remove stray backslashes in warning messages in systemactions.pm which cause warnings. Patch by: j.nitschke@ok.de Reviewed by: me git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1746887 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|
30acf5e8 | 22-May-2016 |
pfg |
Spelling, spelling ... Why worry about some sprinkled German when we haven't yet learned English. git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1745006 13f79535
Spelling, spelling ... Why worry about some sprinkled German when we haven't yet learned English. git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1745006 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|
a2e6ca42 | 16-Mar-2016 |
pfg |
writerperfect is no more. git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1735186 13f79535-47bb-0310-9956-ffa450edef68 |
c014b5f2 | 19-Feb-2016 |
Damjan Jovanovic |
Log the HTTP status when a download in ./bootstrap fails. Patch by: me git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1731307 13f79535-47bb-0310-9956-ffa450
Log the HTTP status when a download in ./bootstrap fails. Patch by: me git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1731307 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|
83e0440a | 06-Feb-2016 |
Damjan Jovanovic |
Exit the "./bootstrap" step with an error if some dependencies could not be downloaded. If dependencies fail to download, the build usually fails later. This is apparent on our buildbots. Rat
Exit the "./bootstrap" step with an error if some dependencies could not be downloaded. If dependencies fail to download, the build usually fails later. This is apparent on our buildbots. Rather catch it early. Patch by: me git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1728822 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|
06aba1c9 | 09-Jan-2016 |
Andrea Pescetti |
#i126469# Fix failing checksums at first download attempt in ./bootstrap Patch By: j.nitschke <j.nitschke@ok.de> git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1
#i126469# Fix failing checksums at first download attempt in ./bootstrap Patch By: j.nitschke <j.nitschke@ok.de> git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1723866 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|
Revision tags: AOO412, SNAPSHOT |
|
dfce871f | 11-Oct-2015 |
Damjan Jovanovic |
#i125003# Eliminate cppunit from our tree completely. git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1707955 13f79535-47bb-0310-9956-ffa450edef68 |
6f6416a7 | 06-Oct-2015 |
Damjan Jovanovic |
#i125003# delete the obsolete CppunitTest.mk git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1707108 13f79535-47bb-0310-9956-ffa450edef68 |
b54fbe0b | 06-Oct-2015 |
Damjan Jovanovic |
#i125003# add sample GoogleTest.mk to main/solenv/gbuild/templates git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1707107 13f79535-47bb-0310-9956-ffa450edef68 |
Revision tags: AOO411 |
|
e75d772d | 16-Sep-2015 |
Damjan Jovanovic |
#i125003# Provide gbuild integration for Google Test. Windows, Linux and FreeBSD have been tested, the other platforms are educated guesses. git-svn-id: https://svn.apache.org/
#i125003# Provide gbuild integration for Google Test. Windows, Linux and FreeBSD have been tested, the other platforms are educated guesses. git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1703444 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|