History log of /aoo42x/main/configure.ac (Results 101 - 125 of 261)
Revision (<<< Hide revision tags) (Show revision tags >>>) Date Author Comments
# 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
# ec1eca59 20-Jun-2016 kschenk

Add specification for needed Perl module LWP::Protocol.



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


# 7c12a172 12-Feb-2016 Pedro Giffuni

i126369 - Finish off hwpfilter

The Hangul Word Processor filter was disabled from OpenOffice in
r1677190 due to security concerns. While some extra buffer controls
could have been m

i126369 - Finish off hwpfilter

The Hangul Word Processor filter was disabled from OpenOffice in
r1677190 due to security concerns. While some extra buffer controls
could have been made and the filter restored, the truth is a much
bigger effort is required to catch up with this format. Files created
with later editions of Hangul, including Hangul Wordian, Hangul 2002,
Hangul 2005 and Hangul 2007 cannot be opened with the existing filter.
Existing users can apparently download a free viewer and convert their
document to RTF or doc.

Drop completely the code. while here also drop remnants of wpd support
that we dropped since 3.4.1. Having less code is sometimes better.


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

show more ...


# 28633775 25-Nov-2015 Pedro Giffuni

i123682 - configure should use $GREP, $EGREP to work well on Solaris

Since we already spend some time detecting GREP and EGREP it seems
good to use it always. Tested on FreeBSD.

i123682 - configure should use $GREP, $EGREP to work well on Solaris

Since we already spend some time detecting GREP and EGREP it seems
good to use it always. Tested on FreeBSD.


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

show more ...


# c4b07b4b 12-Nov-2015 Pedro Giffuni

Add support for MacOSX El Capitan

Patch-by: Pathangi Janardhanan Jatinshravan <JATINSHR001 at e dot ntu dot edu dot sg>


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

Add support for MacOSX El Capitan

Patch-by: Pathangi Janardhanan Jatinshravan <JATINSHR001 at e dot ntu dot edu dot sg>


git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1714089 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


Revision tags: AOO411
# cfc83b6c 13-Sep-2015 Pedro Giffuni

mv configure.in configure.ac

This takes care of a deprecation warning.

Documented:
http://www.gnu.org/savannah-checkouts/gnu/autoconf/manual/autoconf-2.69/html_node/Writing-Auto

mv configure.in configure.ac

This takes care of a deprecation warning.

Documented:
http://www.gnu.org/savannah-checkouts/gnu/autoconf/manual/autoconf-2.69/html_node/Writing-Autoconf-Input.html#Writing-Autoconf-Input



git-svn-id: https://svn.apache.org/repos/asf/openoffice/trunk@1702819 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 ...


# ca1cff08 16-Jan-2015 Pedro Giffuni

Revert most of r1651396:

We really don't use libwpd but it left some leftover cruft that
has to be removed as well. A mini-project for a rainy day.

Reported by: arielch

Revert most of r1651396:

We really don't use libwpd but it left some leftover cruft that
has to be removed as well. A mini-project for a rainy day.

Reported by: arielch


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

show more ...


# 9835bf0f 13-Jan-2015 Pedro Giffuni

Don't look for libwpd - we don't use it.

Fix typo while here.


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


# 8bebafa9 12-Jan-2015 Pedro Giffuni

Beanshell's license is not Category B anymore.


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


# 0fdc0ac7 05-Dec-2014 Herbert Dürr

#i125921# fix autodetection of the OSX 10.10 SDK

which failed because the autodetection only worked with single-digit
minor-versions.

Patch-by: Thorsten Wagner <thorsten.wagner.

#i125921# fix autodetection of the OSX 10.10 SDK

which failed because the autodetection only worked with single-digit
minor-versions.

Patch-by: Thorsten Wagner <thorsten.wagner.4@gmail.com>
Found-by: Thorsten Wagner <thorsten.wagner.4@gmail.com>
Review-by: Herbert Duerr <hdu@apache.org>


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

show more ...


# 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


# 07a3d7f1 29-Apr-2014 Pedro Giffuni

Many spelling fixes: directories a* - g*.

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 a* - g*.

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@1591058 13f79535-47bb-0310-9956-ffa450edef68

show more ...


Revision tags: AOO410
# ba4fa4fa 24-Mar-2014 Juergen Schmidt

#124410# #124411# related change to version upgrades code, logging

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


Revision tags: AOO410_Beta
# 19ce5e0b 23-Feb-2014 Andrea Pescetti

#i124301# Override system epm and --with-epm if --with-epm-url is used.

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


# 6849fadb 23-Feb-2014 Andrea Pescetti

#i124301# Use more informative error messages for EPM failures.

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


# e4db7d0f 30-Jan-2014 Herbert Dürr

#i114728# improve configure diagnostics for the OSX SDK check


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


# 63ad6360 30-Jan-2014 Herbert Dürr

#i114728# allow OSX platform SDKs that support OSX 10.7

Some newer Mac SDKs are backward compatible with OSX 10.7 deployment targets.
Allowing the build with newer compatible SDKs enable

#i114728# allow OSX platform SDKs that support OSX 10.7

Some newer Mac SDKs are backward compatible with OSX 10.7 deployment targets.
Allowing the build with newer compatible SDKs enables the use plain XCode,
even when XCode>= dropped the 10.7 SDK.


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

show more ...


# 25c8c0ab 27-Jan-2014 Andrea Pescetti

#i123683# Override system dmake if --with-dmake-path or --with-dmake-url is used.
Patch By: hajma <tropikhajma@gmail.com>


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

#i123683# Override system dmake if --with-dmake-path or --with-dmake-url is used.
Patch By: hajma <tropikhajma@gmail.com>


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

show more ...


# 61a3a0ff 23-Jan-2014 Herbert Dürr

#114728# use 10.7 SDK as default, but allow newer SDK in configure

Patch by: Juergen Schmidt <jsc@apache.org>


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

#114728# use 10.7 SDK as default, but allow newer SDK in configure

Patch by: Juergen Schmidt <jsc@apache.org>


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

show more ...


# b12514e1 23-Jan-2014 Herbert Dürr

#i121715# do not enable java's -d32 option on 32bit capable jre

merged from revision 1560617 in branch rejuvenate01


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

#i121715# do not enable java's -d32 option on 32bit capable jre

merged from revision 1560617 in branch rejuvenate01


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

show more ...


# 1e1ac450 23-Jan-2014 Herbert Dürr

#i122301# switch Mac port to SDK 10.7 / 64bit

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


# ea16fa1f 29-Dec-2013 Andrea Pescetti

#i123683# Override system dmake if --with-dmake-path or --with-dmake-url is used.
Patch By: hajma <tropikhajma@gmail.com>


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

#i123683# Override system dmake if --with-dmake-path or --with-dmake-url is used.
Patch By: hajma <tropikhajma@gmail.com>


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

show more ...


1234567891011