History log of /aoo41x/ (Results 751 - 775 of 5867)
Revision (<<< Hide revision tags) (Show revision tags >>>)Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
2926eac707-Feb-2017 Pedro Giffuni

Permit using clang for FreeBSD ARM and PowerPC builds.

Inspired on the linux/clang changes.


git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1782082 13f79535-47bb-

Permit using clang for FreeBSD ARM and PowerPC builds.

Inspired on the linux/clang changes.


git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1782082 13f79535-47bb-0310-9956-ffa450edef68

show more ...

0879711503-Jan-2017 pfg

Some more Initial support for the FreeBSD ARM platform.

Minor adjustments; still untested.


git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1777067 13f79535-47bb-0

Some more Initial support for the FreeBSD ARM platform.

Minor adjustments; still untested.


git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1777067 13f79535-47bb-0310-9956-ffa450edef68

show more ...

0bd9e24403-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 ...

941ddfd708-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 ...

af84ad0706-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 ...

610a398813-Aug-2015 Damjan Jovanovic

Fix a compilation failure caused by missing include when debugging is enabled.



git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1695735 13f79535-47bb-0310-9956-ffa450e

Fix a compilation failure caused by missing include when debugging is enabled.



git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1695735 13f79535-47bb-0310-9956-ffa450edef68

show more ...

07cb168e16-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 ...

4143745c05-Nov-2019 Don Lewis

Set compiler feature flags more correctly for recent gcc versions.

8bc8bc5403-Sep-2016 truckman

Fix an error and update boost's logic for enabling the use of
variadic templates when compiling wth g++. It was enabling them
unconditionally for g++ > 5.0. g++ warns about the use of varia

Fix an error and update boost's logic for enabling the use of
variadic templates when compiling wth g++. It was enabling them
unconditionally for g++ > 5.0. g++ warns about the use of variadic
templates unless a non-default -std option is specified for any
version older than 6.1, which switched to C++14 as its default.



git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1759058 13f79535-47bb-0310-9956-ffa450edef68

show more ...

e452c22e06-Jun-2016 truckman

#i126888#: bundled boost headers generate an excessive number of
warnings when building with modern compilers

When building OpenOffice with modern compilers, the bundled boost
heade

#i126888#: bundled boost headers generate an excessive number of
warnings when building with modern compilers

When building OpenOffice with modern compilers, the bundled boost
headers generate an excessive number of warnings. This is especially
bad with recent versions of clang, which generates very verbose
warning messages.

The attached patch updates the current boost_1_55_0.patch with
additional changes cherry picked from upstream boost, up through
version 1.60. These additional changes have been used with the
FreeBSD boost 1.55.0 port for a while.

This patch greatly reduces the number of warnings and size of the
OpenOffice build log. Compiling trunk r1735889 on FreeBSD 11.0
with clang 3.8, the number of warnings is reduced from 53260 to
13741, and the size of the build log is reduced from 117 MB to 44
MB.

Tested by: kschenk


git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1747019 13f79535-47bb-0310-9956-ffa450edef68

show more ...

6ea0ec5823-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 ...

ebd402a906-Feb-2016 Damjan Jovanovic

Platforms that need CLOSESOCKET_DOESNT_WAKE_UP_ACCEPT for sockets usually
need it for pipes too, and even if it isn't necessary it can't hurt.

In particular, on FreeBSD 11-CURRENT it see

Platforms that need CLOSESOCKET_DOESNT_WAKE_UP_ACCEPT for sockets usually
need it for pipes too, and even if it isn't necessary it can't hurt.

In particular, on FreeBSD 11-CURRENT it seems pipes no longer wake up
from accept when closed in other threads, so let's deal with that before
FreeBSD 11 is released.

Reported by: Matthias Apitz <g u r u a t u n i x a r e a d o t d e>
Patch by: me
Tested by: Matthias Apitz <g u r u a t u n i x a r e a d o t d e>



git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1728872 13f79535-47bb-0310-9956-ffa450edef68

show more ...

f27fad2521-Jan-2016 Damjan Jovanovic

#i125431# "The Password is incorrect. The file cannot be opened."

Fix handling of the "isRelative" option in Mozilla's profiles.ini files.

Patch by: Arrigo Marchiori <ardovm at yaho

#i125431# "The Password is incorrect. The file cannot be opened."

Fix handling of the "isRelative" option in Mozilla's profiles.ini files.

Patch by: Arrigo Marchiori <ardovm at yahoo dot it>
Review by: me



git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1726068 13f79535-47bb-0310-9956-ffa450edef68

show more ...

4d077a1f23-Jan-2017 Pedro Giffuni

lingucomponent: remove unused header from hunspell.

According to opengrok, we are not using DictMgr so the header is not
needed. The header has been removed in newer versions of hunspell

lingucomponent: remove unused header from hunspell.

According to opengrok, we are not using DictMgr so the header is not
needed. The header has been removed in newer versions of hunspell
altogether.

Obtained from: FreeBSD


git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1779875 13f79535-47bb-0310-9956-ffa450edef68

show more ...

77af848c05-Nov-2019 Don Lewis

Include <cstdlib> to get the declaration for exit().

bdb58f7717-Nov-2019 Don Lewis

When building icu on FreeBSD with ports gcc, use the rpath to find libstdc++.

This many only be needed with gcc is installed with a non-default PREFIX
and/or ldconifig is not run on that

When building icu on FreeBSD with ports gcc, use the rpath to find libstdc++.

This many only be needed with gcc is installed with a non-default PREFIX
and/or ldconifig is not run on that directory.

show more ...

7c99446019-Apr-2018 Pedro Giffuni

Fix build with boost-1.67.

The release notes say:
____
Utility:
Breaking change: <boost/utility.hpp> header no longer includes boost::next
and boost::prior as they have been

Fix build with boost-1.67.

The release notes say:
____
Utility:
Breaking change: <boost/utility.hpp> header no longer includes boost::next
and boost::prior as they have been moved to the iterator module. Instead
include <boost/next_prior.hpp>. Other uses of <boost/utility.hpp> are
discouraged, it's better to use the header for the specific functionality
instead.

____

Obtained from: Jan Beich
FreeBSD PR: 227553


git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1829494 13f79535-47bb-0310-9956-ffa450edef68

show more ...

8ff3034106-Nov-2019 Don Lewis

Comment out an unused method that breaks compilation with gcc9.

In case someone needs this method in the future, leave behind a note
with the likely code fix.

a5526c3b08-Oct-2014 Kay Schenk

#i125696# Removed error_report.xhp from linkage creation lineup.

git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1630243 13f79535-47bb-0310-9956-ffa450edef68
(cherry picked

#i125696# Removed error_report.xhp from linkage creation lineup.

git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1630243 13f79535-47bb-0310-9956-ffa450edef68
(cherry picked from commit 28a26fc9bdeafb00ee6d1eea982c5236b07ce15d)

show more ...

eec6517330-Sep-2014 Kay Schenk

#i125696 Removed error reporitng information and updated other files accordingly.

git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1628577 13f79535-47bb-0310-9956-ffa450edef68

#i125696 Removed error reporitng information and updated other files accordingly.

git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1628577 13f79535-47bb-0310-9956-ffa450edef68
(cherry picked from commit cd3719e8a1f56e7a16ebd23aee3f3a6f6da93ab8)

show more ...

1ce09da728-Dec-2018 Matthias Seidel

Removed whitespace, corrected toolbar position

git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1849889 13f79535-47bb-0310-9956-ffa450edef68
(cherry picked from commit 8177d

Removed whitespace, corrected toolbar position

git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1849889 13f79535-47bb-0310-9956-ffa450edef68
(cherry picked from commit 8177d95e873c85c386c06303193f75a844429145)

show more ...

af9cae2120-Jan-2019 Matthias Seidel

Remmed out forgotten reference to "error_report.xhp"

See: https://bz.apache.org/ooo/show_bug.cgi?id=125696

git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1851715 13f7

Remmed out forgotten reference to "error_report.xhp"

See: https://bz.apache.org/ooo/show_bug.cgi?id=125696

git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1851715 13f79535-47bb-0310-9956-ffa450edef68
(cherry picked from commit bc3bc05c84d3ff136548aea4a0c12521138f2494)

show more ...

40f26eee29-Jan-2019 Matthias Seidel

Fixed icon (file open -> opened folder)

git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1852438 13f79535-47bb-0310-9956-ffa450edef68
(cherry picked from commit d4b13f467f71

Fixed icon (file open -> opened folder)

git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1852438 13f79535-47bb-0310-9956-ffa450edef68
(cherry picked from commit d4b13f467f71344e503095ef291c12fb4d5fda15)

show more ...

ad2d53db21-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 ...

e250bff116-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 ...

1...<<31323334353637383940>>...235