953605d5 | 15-Sep-2015 |
Pedro Giffuni |
Revert r1700845 for more scripts. The shebang situation for Windows seems to be a bit odd. Revert the change in all the cases where it is likely to cause trouble. Found and repo
Revert r1700845 for more scripts. The shebang situation for Windows seems to be a bit odd. Revert the change in all the cases where it is likely to cause trouble. Found and reported by: damjan git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1703220 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|
8c8d76e1 | 14-Sep-2015 |
Yuri Dario |
#i118923# OS/2, the emxexpr tool is no longer used. git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1702988 13f79535-47bb-0310-9956-ffa450edef68 |
af1486d9 | 14-Sep-2015 |
Yuri Dario |
#i118923# OS/2, use pmbidi header from dev toolkit. git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1702986 13f79535-47bb-0310-9956-ffa450edef68 |
58303369 | 02-Sep-2015 |
Damjan Jovanovic |
Don't pass -finline-limit=0 and -fno-default-inline command line options to Clang during debug builds, since it doesn't want to run with them. git-svn-id: https://svn.apache.or
Don't pass -finline-limit=0 and -fno-default-inline command line options to Clang during debug builds, since it doesn't want to run with them. git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1700874 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|
8c482dc0 | 02-Sep-2015 |
Pedro Giffuni |
If you said /bin/sh use sh not bash. Still the path for python doesn't look right. git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1700850 13f79535-47bb-0310-9956
If you said /bin/sh use sh not bash. Still the path for python doesn't look right. git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1700850 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|
91e872df | 02-Sep-2015 |
Pedro Giffuni |
One more perl shebang. git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1700846 13f79535-47bb-0310-9956-ffa450edef68 |
c667dd47 | 02-Sep-2015 |
Pedro Giffuni |
Fix some perl shebangs. Mosrt important perl scripts already use a portable method but fix these nevertheless. git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk
Fix some perl shebangs. Mosrt important perl scripts already use a portable method but fix these nevertheless. git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1700845 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|
eadca5ea | 29-Aug-2015 |
Damjan Jovanovic |
#i125003# add Google Test APPnTARGET_run targets for n=2..10, which commit 1599163 must have missed out ("Up to 9 run unit test targets are supported" says the Wiki, even though only 1 exists
#i125003# add Google Test APPnTARGET_run targets for n=2..10, which commit 1599163 must have missed out ("Up to 9 run unit test targets are supported" says the Wiki, even though only 1 exists in main/solenv/inc/_tg_app.mk). git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1700037 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|
a84fbf33 | 07-Aug-2015 |
Pedro Giffuni |
FreeBSD: Work around clang-3.4 issues. It is well known that clang-3.4 doesn't build all AOO correctly. Workaround the issue for FreeBSD 10 which ships with clang-3.4. The workaround
FreeBSD: Work around clang-3.4 issues. It is well known that clang-3.4 doesn't build all AOO correctly. Workaround the issue for FreeBSD 10 which ships with clang-3.4. The workaround may still be needed for other clang based platforms. Submitted by: Don Lewis git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1694701 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|
c25219e0 | 05-Aug-2015 |
Pedro Giffuni |
FreeBSD build fixes. This allows out the box builds with gcc and to simplify the build with clang and also the FreeBSD port. From Don Lewis (FreeBSD port maintainer): B
FreeBSD build fixes. This allows out the box builds with gcc and to simplify the build with clang and also the FreeBSD port. From Don Lewis (FreeBSD port maintainer): Because we need to use different CFLAGS for gcc and clang, I had to add some compiler detection logic. On most platforms, the value of $(COM) is either set statically by set_soenv, or set_soenv parses the compiler name to figure out which compiler is being used and then set $(COM) appropriately. The latter doesn't work for FreeBSD because cc could either be gcc or clang. For FreeBSD, I added the compiler detection logic to configure, which then passes that to set_soenv, in a somewhat hackish manner. When building with ports gcc on FreeBSD, we need to pass the rpath for the gcc runtime to the linker. The FreeBSD port attempts to to this by adding this information to LDFLAGS, which the openoffice configure script then steps on, and in any case, this does not help the out of the box build. My solution is to add some logic to configure to generate the necessary linker flags, which it then passes to set_soenv for inclusion in FreeBSD*Env.Set.sh. On FreeBSD, the out of the box build needs to pass $LIBINTL_PREFIX in the environment to the build phase. I added some code to configure to figure out the value of this variable and to pass it to set_soenv for inclusion in FreeBSD*Env.Set.sh so that this does not need to be done as a extra step in the build. Changing $(COM) from GCC to CLANG for clang builds caused a number regressions elsewhere in the build framework. These were mostly caused by the framework checking for $(COM) == GCC and $(OS) == FREEBSD, with $(COM) == CLANG case unhandled. The fix was generally to just ignore the value of $(COM) and only test the value of $(OS). One special case was the bridgetest regression test, which started dumping core on INTEL 32-bit when built with clang. It turns out that this entire test is was skipped for $(COM) == gcc, $(OS) == FREEBSD, and $(CPU) == I. Rather than also skipping this test when building with clang, I tracked down the failure to a particular subtest involving polymorphic structures that also fails on OS/2 and tweaked the code to also skip that subtest on FREEBSD INTEL (32-bit). Now bridgetest is run and passes on FreeBSD with both gcc and clang, on both i386 and amd64. Submitted by: Don Lewis git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1694132 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|
908225ed | 26-Mar-2015 |
Pedro Giffuni |
FreeBSD build structure changes Part of Code Review: https://reviews.freebsd.org/D2108 Author: Don Lewis (truckman at FreeBSD) git-svn-id: https://svn.a
FreeBSD build structure changes Part of Code Review: https://reviews.freebsd.org/D2108 Author: Don Lewis (truckman at FreeBSD) git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1669465 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|
d6df322d | 09-Sep-2014 |
Yuri Dario |
#i118923# OS/2 port, use forward slashes for paths in installer scripts. git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1623850 13f79535-47bb-0310-9956-ffa450edef68 |
2f5c2846 | 09-Sep-2014 |
Yuri Dario |
#i118923# OS/2 port, use forward slashes for paths in installer scripts. git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1623849 13f79535-47bb-0310-9956-ffa450edef68 |
a162354d | 09-Sep-2014 |
Yuri Dario |
#i125501# build fixes for enabling Category B also in OS/2 port. git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1623847 13f79535-47bb-0310-9956-ffa450edef68 |
4d340eeb | 24-Aug-2014 |
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/trunk@1620195 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|
da847c14 | 24-Aug-2014 |
Andrea Pescetti |
#i123887# Revert change with wrong issue reference. git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1620193 13f79535-47bb-0310-9956-ffa450edef68 |
e64c3ce4 | 24-Aug-2014 |
Andrea Pescetti |
#i123887# 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/
#i123887# 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/trunk@1620192 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|
37cd1c1e | 18-Jul-2014 |
Juergen Schmidt |
#125264# add support for ca-XR similar to ca-XV, UI support only git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1611586 13f79535-47bb-0310-9956-ffa450edef68 |
76cf6069 | 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 ...
|
9ec97a62 | 19-Jun-2014 |
Herbert Dürr |
#i125121# speed up the "make writeable" step when building external libraries avoiding the many individual invocations of chmod for each directory strips makes this step about ten times
#i125121# speed up the "make writeable" step when building external libraries avoiding the many individual invocations of chmod for each directory strips makes this step about ten times faster on Windows without SSD (460sec -> 41sec for boost). With SSD the speedup should be even higher. git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1603756 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|
41e044bc | 03-Jun-2014 |
Juergen Schmidt |
#125003# change LIBRARY path for test run target to use local output dir git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1599446 13f79535-47bb-0310-9956-ffa450edef68 |
43feee13 | 02-Jun-2014 |
Juergen Schmidt |
#125003# integrate googletest framework for general use for unit testing git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1599163 13f79535-47bb-0310-9956-ffa450edef68 |
86e1cf34 | 29-Apr-2014 |
Pedro Giffuni |
Many spelling fixes: directories r* - z*. Attempt to clean up most but certainly not all the spelling mistakes that found home in OpenOffice through decades. We could probably blame
Many spelling fixes: directories r* - z*. Attempt to clean up most but certainly not all the spelling mistakes that found home in OpenOffice through decades. We could probably blame the international nature of the code but it is somewhat shameful that this wasn't done before. git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1591062 13f79535-47bb-0310-9956-ffa450edef68
show more ...
|
Revision tags: AOO410 |
|
a6a7b0fc | 24-Apr-2014 |
Juergen Schmidt |
drop tar.gz src release git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1589622 13f79535-47bb-0310-9956-ffa450edef68 |
77bec208 | 15-Apr-2014 |
Andre Fischer |
i124682: Use the right upgrade code for lanaguage sets. git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1587528 13f79535-47bb-0310-9956-ffa450edef68 |