History log of /trunk/main/solenv/ (Results 201 - 225 of 568)
Revision (<<< Hide revision tags) (Show revision tags >>>)Date Author Comments
(<<< Hide modified files)
(Show modified files >>>)
7a46fbe403-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 ...

9168f84a29-Dec-2016 damjan

Fix a FreeBSD (and probably Solaris) regression in commit 1776288
caused by listing static libraries before objects, causing the
main/slideshow module to fail to build, as the one-pass linkin

Fix a FreeBSD (and probably Solaris) regression in commit 1776288
caused by listing static libraries before objects, causing the
main/slideshow module to fail to build, as the one-pass linking described
in that commit won't find anything from the static library as it appears
too early. Rather link all libraries after objects, like Linux does.

Patch by: me



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

show more ...

9b09309d28-Dec-2016 damjan

I've heard rumours it's a POSIX feature, but so far the problem only
appears on Linux, not FreeBSD.

Linking is one-pass, using symbols exported by libraries to resolve
missing symbol

I've heard rumours it's a POSIX feature, but so far the problem only
appears on Linux, not FreeBSD.

Linking is one-pass, using symbols exported by libraries to resolve
missing symbols in previous, but *NOT* subsequent, objects (including
libraries). This means the order libraries are given to the linker
does matter, because symbols missing in latter objects cannot be
satisfied by former objects.

Static libraries should be therefore be linked to before dynamic
libraries, as static libraries cannot specify dependencies on dynamic
libraries, yet might need symbols from them.

This should fix the main/slideshow build problem on Linux.

Only Linux has been tested. The other platforms are guessed.

Patch by: me



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

show more ...

df3f5cbc26-Dec-2016 damjan

Port main/slideshow to gbuild.
Add glu32 and opengl32 to the known Windows libraries.

Patch by: me



git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@177605

Port main/slideshow to gbuild.
Add glu32 and opengl32 to the known Windows libraries.

Patch by: me



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

show more ...

b9fd132d24-Dec-2016 pfg

Add some "Revision" svn keywords.

Revisions were used within the tree, perhaps inherited by previous
CVS/Subversion usage. Re-use them now since we have been lazy about
updating them

Add some "Revision" svn keywords.

Revisions were used within the tree, perhaps inherited by previous
CVS/Subversion usage. Re-use them now since we have been lazy about
updating them manually and because they can be useful for bug reports.


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

show more ...

0495d53e24-Dec-2016 pfg

Avoid including build dates in executable files.

Embedding build dates and other environment specific information may
casue gratuitous difference in the resulting binaries, which makes m

Avoid including build dates in executable files.

Embedding build dates and other environment specific information may
casue gratuitous difference in the resulting binaries, which makes more
difficult security verifications and binary updates.

We currently make no claims but this is the first step to generate
reproducible builds. For more information check:
https://reproducible-builds.org/

While here, since we have been so lazy about updating it, also add the svn
Revision keyword to configure.ac.


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

show more ...

6ecc461523-Dec-2016 damjan

Build fixes for main/fpicker on Windows:
* add comdlg32 to the list of known libraries for Windows
* fix the postprocess/packcomponents paths to the fps and fop components
* fix the WinRe

Build fixes for main/fpicker on Windows:
* add comdlg32 to the list of known libraries for Windows
* fix the postprocess/packcomponents paths to the fps and fop components
* fix the WinResTarget name in Module_fpicker.mk
* hack for calling $(shell) (recipe before target error)
* only try to build fps_gnome on *nix
* link to the stl library where necessary
* link to the user32 DLL where necessary
* fi -> endif typos
* fix capitalization of filenames
* move fps and fop to the OOOLIBS layer where they belong

Patch by: me



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

show more ...

7b4f406622-Dec-2016 pfg

Re-enable some Id svn:keywords.

Most of these pre-existed in the code, probably due to older version
control. New Id keywords were added only in these files:

main/solenv/inc/mi

Re-enable some Id svn:keywords.

Most of these pre-existed in the code, probably due to older version
control. New Id keywords were added only in these files:

main/solenv/inc/minor.mk
main/vcl/unx/kde4/KDEXLib.cxx

The latter are important as they keep release information and we want
to maintain such references when new versions are bumped.
While here, update the information for KDE.




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

show more ...

5a41b37918-Dec-2016 damjan

strmiids needs to be added to gb_Library_PLAINLIBS_NONE
on Windows to get the avmediawin library to link.

Patch by: me



git-svn-id: https://svn.apache.org/repos/asf/ope

strmiids needs to be added to gb_Library_PLAINLIBS_NONE
on Windows to get the avmediawin library to link.

Patch by: me



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

show more ...

c30f6fe318-Dec-2016 damjan

#i127139# undefined reference to `__stack_chk_fail' breaks build on some Linux 32-bit systems

Work around this issue for the time being, by always explicitly linking to libc (-lc)
for al

#i127139# undefined reference to `__stack_chk_fail' breaks build on some Linux 32-bit systems

Work around this issue for the time being, by always explicitly linking to libc (-lc)
for all gbuild modules, which I've verified doesn't break anything. (Using the Gold linker
instead of BFD also works, also for unknown reasons, but the Gold linker may not always be
available.)

Also revert the previous workaround in main/svl/Library_passwordcontainer.mk

Patch by: me



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

show more ...

8f3a2c2f16-Dec-2016 damjan

Revert a test patch that was accidentally committed in r1774567
which breaks the build.

Patch by: me


git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1774637 1

Revert a test patch that was accidentally committed in r1774567
which breaks the build.

Patch by: me


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

show more ...

e8183b3f16-Dec-2016 damjan

Port main/dtrans to gbuild.

Patch by: me


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

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

6de2905b04-Dec-2016 damjan

Standardize all gbuild bridge makefile.mk files
(main/*/prj/makefile.mk) to the version that sets gbuild
debug flags from the configure.ac debug settings, and make this the
standard gbuil

Standardize all gbuild bridge makefile.mk files
(main/*/prj/makefile.mk) to the version that sets gbuild
debug flags from the configure.ac debug settings, and make this the
standard gbuild template too.

Patch by: me



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

show more ...

e5dc8c1603-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

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

b871de3621-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

55511c5001-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

4b8ca05d01-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 ...

274b8a6221-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

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

7517f70427-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 ...

bc6f66a409-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

b63233d807-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
a4176b6528-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 ...

12345678910>>...23