Commit graph

464 commits

Author SHA1 Message Date
Tor Lillqvist
bb4e01086c Don't use FLIPCMD when cross-compiling from Unix 2011-06-23 01:46:11 +03:00
Caolán McNamara
9574f268a8 add FONTCONFIG_[LIBS|CFLAGS] 2011-06-22 12:43:33 +01:00
Petr Mladek
17466b2d28 fix configure without the optional translations module 2011-06-22 12:05:19 +02:00
Tor Lillqvist
67e1946064 Disable ATL when compiling with MinGW 2011-06-21 00:40:19 +03:00
Bjoern Michaelsen
81a1c065fd Merge branch 'master' into feature/gnumake4
Conflicts:
	Repository.mk
	RepositoryFixes.mk
	configure
	configure.in
	set_soenv.in
	solenv/config/sdev300.ini
	solenv/gbuild/ComponentTarget.mk
	solenv/gbuild/CppunitTest.mk
	solenv/gbuild/CustomTarget.mk
	solenv/gbuild/Deliver.mk
	solenv/gbuild/Executable.mk
	solenv/gbuild/JavaClassSet.mk
	solenv/gbuild/Library.mk
	solenv/gbuild/LinkTarget.mk
	solenv/gbuild/StaticLibrary.mk
	solenv/gbuild/TargetLocations.mk
	solenv/gbuild/gbuild.mk
	solenv/gbuild/platform/linux.mk
	solenv/gbuild/platform/macosx.mk
	solenv/gbuild/platform/solaris.mk
	solenv/gbuild/platform/windows.mk
	solenv/gbuild/platform/winmingw.mk
	solenv/gbuild/templates/Executable.mk
	solenv/gbuild/templates/Library.mk
	solenv/inc/libs.mk
	solenv/inc/unxobsd.mk
2011-06-19 11:36:52 +02:00
David Tardon
510737a54a enable libstdc++'s debug mode with --enable-debug 2011-06-18 17:20:10 +02:00
Tor Lillqvist
e17aac891e Temporary hack can be binned now 2011-06-18 16:51:32 +03:00
Michael Stahl
b2fab435e6 gnumake4: set_soenv.in: do not generate tcsh environment file [hg:7ac1d3e8f1fa] 2011-06-17 18:20:52 +02:00
Michael Stahl
00610e27d1 gnumake4: #i117687#: do not source *Env.Set.sh in bootstrap [hg:3c81abff5843] 2011-06-17 18:17:20 +02:00
Philipp Lohmann [pl]
54c611fa45 ooo340fixes: #i117804# differentiate between ENABLE_CAIRO and ENABLE_CAIRO_CANVAS [hg:e09be3339384] 2011-06-17 13:51:41 +02:00
Jan Holesovsky
e3d5d7185d Merge remote-tracking branch 'origin/libreoffice-3-4'
Conflicts:
	Makefile.in
	bootstrap.1
	configure.in
	solenv/inc/minor.mk
2011-06-17 13:44:18 +02:00
Jan Holesovsky
d75defa37f Make the online update service configurable (via --enable-online-update).
Signed-off-by: Petr Mladek <pmladek@suse.cz>
2011-06-17 11:45:12 +02:00
Robert Nagy
ba62ce46c8 only fetch external tarballs if --disable-fetch-external is not defined 2011-06-15 12:55:51 +02:00
Robert Nagy
6fdc8ae0d1 only fetch external tarballs if --disable-fetch-external is not defined 2011-06-15 12:51:41 +02:00
Michael Meeks
fc328a31e8 first cut of gtk3 auto-detection, and autoconf-foo 2011-06-14 12:28:52 +01:00
Tor Lillqvist
5f92c3275a Add FOR_BUILD variant of SYSTEM_LIBXSLT and use it to decide which xsltproc to run 2011-06-14 00:53:34 +03:00
Tor Lillqvist
0957430c12 Don't use undefined variable 2011-06-10 00:46:15 +03:00
Tor Lillqvist
e59b18c6ec Propagate also SYSBASE to the build environment 2011-06-09 23:17:34 +03:00
Tor Lillqvist
354f25c64a Compare CROSS_COMPILING explicitly to YES 2011-06-08 11:46:06 +03:00
Fridrich Štrba
6f6d51d86c Allow system libvisio when asked nicely 2011-06-06 12:49:32 +02:00
Tor Lillqvist
aa961bb6ca Bin the --with-icu-native-build-root option 2011-06-05 01:24:52 +03:00
Tor Lillqvist
f206336a25 Rehash of cross-compilation ideas
Like in my previous plan, when cross-compiling we run the same
configure script separately for a native build configuration on the
build platform, in a temporary subdirectory.

Now use a fixed name "CONF-FOR-BUILD" for that subdirectory, so that
it is easy to edit out that path component from those build
environment variables that contain it.

Pass more of the native build environment variables up to the main
configure and propagate those to the build environment suffixed with
_FOR_BUILD: INPATH, OUTPATH OUTDIR, PATH, SOLARINC, SOLARLIB,
WORKDIR. Whether these all will actually be needed remains to be seen,
the set can be reduced later.

The environment setting file (*Env.Set.sh) for the native build is
copied here to the top directory under the name Env.Build.sh, and the
environment variables set in it that contain pathnames are modified to
point directly to this top directory, not the temporary CONF-FOR-BUILD
subdirectory.

When doing a cross-compiling build, we first do a build of the
necessary build-time tools for the build platform. This is done in the
same source tree. As the directories where build results are stored
include the platform specification (OUTPATH or in some cases INPATH),
there should be no clashes.

Don't run the download script from ./bootstrap(.1). We are running it
from Makefile already anyway often enough. This could also do with
some clean-up; the ./g -f clone phase is a bit slow, I am not sure if
it really is necessary every time? Also, we should not overwrite
ooo.lst if its contents isn't changing.

Use INPATH_FOR_BUILD in SOLARBINDIR so that the self-built tools like
idlc that we run are for the build platform, not the host
platform.

Attempt to get rid of the makefile.rc and makefile.mk files. Surely it
should be enough with just Makefile(.in) (and then GNUmakefile.mk for
its own so far special gbuild purposes). Instead of invoking dmake to
do "clean" or "distclean" from Makefile(.in), we already just do the
same directly in Makefile(.in). This way we don't need to first build
dmake in order to be able to do a make clean, which will then finally
clean out dmake again;)

Ideally I would like to get rid of bootstrap(.1), too. It should be
possible to merge its tasks into configure(.in) or Makefile(.in) as
appropriate.

And actually, maybe also what set_soenv(.in) does could well be merged
into configure(.in)?
2011-06-04 19:08:44 +03:00
Tor Lillqvist
4b93f8cdc7 Simplify zip and unzip checks 2011-06-02 02:40:32 +03:00
Tor Lillqvist
cf8989c140 Unify librsvg options into --enable-librsvg=no/auto/system/internal 2011-06-02 01:01:34 +03:00
Jan Holesovsky
6a29b48bf5 Merge branch 'master' of git://anongit.freedesktop.org/libreoffice/bootstrap 2011-05-31 10:46:15 +02:00
Jan Holesovsky
07c1d34ec7 Merge commit 'libreoffice-3.4.0.2'
Conflicts:
	configure.in
	distro-configs/LibreOfficeMacOSX.conf
	distro-configs/OxygenOfficeLinux.conf
	distro-configs/OxygenOfficeWin32.conf
	download
	instsetoo_native/util/openoffice.lst
	ooo.lst.in
	set_soenv.in
	solenv/bin/modules/installer/download.pm
	solenv/gbuild/CppunitTest.mk
	solenv/inc/minor.mk
	solenv/inc/settings.mk
2011-05-31 10:45:37 +02:00
Tor Lillqvist
a53ebd43ec No need to do anything with $HOME 2011-05-31 10:08:33 +03:00
Jan Holesovsky
e72584561e Merge branch 'master' of git://anongit.freedesktop.org/libreoffice/bootstrap 2011-05-27 20:49:08 +02:00
Jan Holesovsky
ca907e0220 Merge remote-tracking branch 'origin/integration/dev300_m106'
Conflicts:
	Makefile.in
	Repository.mk
	autogen.sh
	bin/lo-commit-stat
	configure.in
	distro-configs/LibreOfficeOpenBSD.conf
	distro-configs/LibreOfficeWin32.conf
	instsetoo_native/util/openoffice.lst
	ooo.lst.in
	scp2/source/ooo/module_langpack.ulf
	set_soenv.in
	solenv/bin/ooinstall
	solenv/gbuild/CppunitTest.mk
	solenv/gbuild/Library.mk
	solenv/gbuild/LinkTarget.mk
	solenv/gbuild/TargetLocations.mk
	solenv/gbuild/platform/macosx.mk
	solenv/gbuild/platform/solaris.mk
	solenv/gbuild/platform/unxgcc.mk
	solenv/gbuild/platform/windows.mk
	solenv/inc/minor.mk
	solenv/inc/settings.mk
	tail_build/prj/makefile.mk
2011-05-27 20:39:04 +02:00
Caolán McNamara
de6b387500 ENABLE_DIRETX->ENABLE_DIRECTX 2011-05-26 14:06:18 +01:00
Tor Lillqvist
f52905162f Add --with-icu-native-build-root switch
Must be used when cross-compiling the bundled ICU. Will then be
forwarded to the ICU configury as its --with-cross-build switch.
2011-05-26 02:55:45 +03:00
Tor Lillqvist
5d50561735 Use the build OS xsltproc when cross-compiling 2011-05-24 02:48:19 +03:00
Tor Lillqvist
6c28e9e143 Set SOLARLIB also for MinGW (cross-)compilation
Set it as on Cygwin, and with the -L flags in the same order as for
Linux &co for consistency.
2011-05-23 17:33:48 +03:00
Robert Nagy
85822219bc use $GNUMAKE to print the build instructions 2011-05-23 09:25:00 +02:00
Robert Nagy
8ce2d816a1 use $GNUMAKE to print the build instructions 2011-05-23 09:24:04 +02:00
Francois Tigeot
6dad9edb9e Use a single shell source file for all NetBSD platforms
Finish cleaning up INPATH and OUTPATH.
2011-05-22 10:29:41 +02:00
Francois Tigeot
255ba80655 Use the same OUTPATH on all NetBSD architectures 2011-05-22 10:04:20 +02:00
Tor Lillqvist
3f56e8f87c Java tweaks for cross-compilation 2011-05-21 02:45:18 +03:00
Tor Lillqvist
c761ef3d41 Export NSIS_PATH also in the MinGW cross-compiling case
Actually NSIS_PATH is crack, it is actually the *directory* where the
makensis program is located, so why not simply just have a variable
with the full pathname to that instead (or just the command name, in
case it is in the default PATH anyway, like on openSUSE with
/usr/bin/makensis)? That would simplify the stuff in download.pm, too.
2011-05-19 22:55:17 +03:00
Robert Nagy
333fb1d408 handle amd64 and x86_64 for OpenBSD the same way 2011-05-19 12:26:44 +02:00
Tor Lillqvist
89b361c0a4 More cross-compiling work and cleanup
Re-introduce the old --with-mingw option but now called
--with-mingw-cross-compiler. Its purpose is now specifically to give
the cross-compiler used when building the ODK, if Java is enabled, and
if building the unowinreg.dll. It has now nothing to do with
cross-compiling LibreOffice itself.

Correspondingly, the WITH_MINGW variable now has meaning only when
building LibreOffice for Windows: If using MinGW, whether natively on
Windows itself (which we as such don't intend to support, I hope), or
cross-compiling, it is set to "yes".

Automate and simplify the search for the MinGW cross-compiler when
intending to build unowinreg.dll on Unix.

Look for the usual tool-chain tools ar, nm, objdump, pkg-config,
ranlib, strip, and for Windows alto dlltool and windres using
AC_CHECK_TOOL so that the proper cross tools are found when
needed. Propagate to environment. As such these are not used except in
the MinGW mk files so far.

Other minor cleanups.
2011-05-18 18:56:58 +03:00
Tor Lillqvist
c9f99f4ec8 Rework how <db.h> is included 2011-05-18 11:13:43 +03:00
Tor Lillqvist
95760e349e MSVC followup fix for RC command line syntax 2011-05-18 03:19:02 +03:00
Tor Lillqvist
3d97229173 Make checks for db work when cross-compiling
When looking for the db,h header, use Autoconf mechanisms instead of
manual checks in hardcoded directories. So yeah, this means that you
need to make sure the correct -I flag is passed if you have db
installed in a weird place where the compiler doesn't find it.

Use checks that require only compiling, not running code. Nice.

Don't AC_SUBST variables that are not used.
2011-05-17 22:36:57 +03:00
Tor Lillqvist
84fbaed77d More cross-compiling work
AC_SUBST also EXEEXT_FOR_BUILD and use that in Makefile.in.

As winemv.set.sh is now called WindowsMSVCEnv.Set.sh, with capital E
and S like all the others, we can simplify the glob pattern for the
Set.sh file.

Don't attempt to download and/or run unpackers for dependencies
relevant only when using MSVC if using MinGW.

Misc other Windows host vs. build fixes.
2011-05-17 02:22:19 +03:00
Tor Lillqvist
85d44913ab Minor tweaks for cross-compiling
Still a long way from working, of course.

The configure script now runs to finish on Linux with --host=mingw32.

It is no longer an error if Windows SDK or DirectX SDK are not found
by the logic in the configure script. It might well be that the user
has included relevant -I and -L flags in CC or CXX that makes the
compilations work anyway, or something. We should not try to be too
clever and try to predict how the compiler or linker work in the
configure script.

We now define the FOO_FOR_BUILD environment variables in set_soenv.in
even when not cross-compiling (identically as the plain FOO ones in
that case, obviously). This should make some makefiles and stuff that
build tools to run on the build host a bit simpler.
2011-05-16 18:55:07 +03:00
Tor Lillqvist
699d119f78 Use current terminology and socket library
It's called the Windows SDK, not the Platform SDK. Link only with the
ws2_32 library, not the wsock32 one.
2011-05-16 16:01:30 +03:00
Tor Lillqvist
71c391a328 Set GUIBASE for Android 2011-05-16 00:51:42 +03:00
Tor Lillqvist
60dbfc13ee Use specific OS value for Android 2011-05-16 00:00:57 +03:00
Tor Lillqvist
30659f237f Initial baby steps for Android cross-compilation 2011-05-15 03:54:50 +03:00
Tor Lillqvist
89b315948c Rename the Windows env setting files to be in MixedCase, too 2011-05-15 03:54:48 +03:00
Tor Lillqvist
c552c7faf1 Fix from-scratch build breakage: Don't call realpath on Windows path
In a from-scratch build, when running the configure script, which then
runs the set_soenv script, the default_images symlink (that is passed
to this function in the form of a Windows path, for some reason) does
not exist yet, and realpath fails anyway. So don't bother calling
realpath on Windows paths.

Although I don't know whether it then will cause a problem that the
cygpath -m call won't be able to expand the symlink as it doesn't
exist anyway. This is a mess. And if cygpath -m expands symlinks
anyway, why is the realpath needed at all?
2011-05-15 03:41:58 +03:00
Tor Lillqvist
dc4d7d995b Kill obsolete STAR_FOO stuff 2011-05-15 00:37:04 +03:00
Tor Lillqvist
4c7f692682 Kill USE_NEW_SDK and adapt to it being always TRUE 2011-05-14 23:26:26 +03:00
Tor Lillqvist
a84c47186d Kill SET_EXCEPTIONS, not used anywhere as far as I could see 2011-05-14 23:14:05 +03:00
Tor Lillqvist
14a32cca5c Kill CDPATHx, not used anywhere as far as I could see 2011-05-14 23:04:24 +03:00
Tor Lillqvist
85373fe2e7 Kill BIG_SVX, not used anywhere as far as I could see 2011-05-14 22:55:09 +03:00
Tor Lillqvist
210fc3366a Kill build_deliver, not used anywhere as far as I could see 2011-05-14 22:43:13 +03:00
Tor Lillqvist
985bbdbc7d Kill "TF_FILTER"
No idea what it is, not used anywhere as far as I could see.
2011-05-14 22:40:25 +03:00
Tor Lillqvist
79173f64a1 Kill "NEW_JAR_PACK"
It was fixed as TRUE, so unconditionally change its uses according to
that.
2011-05-14 22:38:29 +03:00
Tor Lillqvist
6498fdaca7 Kill "BMP_WRITES_FLAG"
Not used anywhere as far as I can see.
2011-05-14 22:29:36 +03:00
Tor Lillqvist
4e011da922 Kill "BUILD_SOSL", some Hamburg thing 2011-05-14 22:02:30 +03:00
Tor Lillqvist
5f0b89e382 Kill "BUILD_SOSL_RELEASE"
No idea what it is, doesn't occur anywhere else in the sources.
2011-05-14 21:58:16 +03:00
Tor Lillqvist
2cba0cf4bc Kill "local solenv"
No idea in what circumstance one would want to use that.
2011-05-14 21:56:49 +03:00
Tor Lillqvist
025ca51745 Check more sizes and alignments and propagate to environment 2011-05-14 02:56:37 +03:00
Tor Lillqvist
a6e5ca0cc4 More cross-compiling work 2011-05-13 23:54:02 +03:00
Tor Lillqvist
414c15bbb2 Argh, it's just host, not host_alias 2011-05-13 20:36:31 +03:00
Tor Lillqvist
eaf8e0939a Some initial baby steps towards cross-compilation
And some baby steps for cross-compiling for iOS in particular.
2011-05-13 20:24:40 +03:00
Tor Lillqvist
11606530ee Use more meaningful option name
It's called the .NET Framework, so don't talk about "frame".

Also align Usage help printout better.
2011-05-13 15:07:54 +03:00
Kalman Szalai - KAMI
f36579d1af Fix oooblogger extension download mechanism
Signed-off-by: Fridrich Štrba <fridrich.strba@bluewin.ch>
2011-05-12 12:23:47 +02:00
Kalman Szalai - KAMI
c6b0efb648 Fix SUN Template extension configure, download, handling
Signed-off-by: Fridrich Štrba <fridrich.strba@bluewin.ch>
2011-05-12 12:22:35 +02:00
Kalman Szalai - KAMI
b04faf6398 Fix Ligthproof extension integration
* Fix configure and download support
* Extension naming scheme is: <md5>-<extension-name>_<version>.oxt
  - Renamed extensions
* Rename extension version number in download script and scp2 module

Signed-off-by: Fridrich Štrba <fridrich.strba@bluewin.ch>
2011-05-12 12:22:13 +02:00
Tor Lillqvist
f33232a3ff Fix building of the 64-bit Windows Explorer extension, fdo#36950
Don't confuse the 64-bit Explorer extension with a 64-bit LibreOffice,
which is unfinished and highly experimental work. OOo has been
building and distributing a 64-bit Explorer extension since long, and
we should too. They used some secret Hamburg sauce when building it,
though, but hopefully now it works here, too.
2011-05-11 12:33:32 +03:00
Kalman Szalai - KAMI
9bb5f5314f Fix oooblogger extension download mechanism 2011-05-11 11:18:37 +02:00
Kalman Szalai - KAMI
9b756202ad Fix SUN Template extension configure, download, handling 2011-05-08 11:14:57 +02:00
Kalman Szalai - KAMI
68b8377eab Fix Ligthproof extension integration
* Fix configure and download support
* Extension naming scheme is: <md5>-<extension-name>_<version>.oxt
  - Renamed extensions
* Rename extension version number in download script and scp2 module
2011-05-08 10:25:25 +02:00
Kalman Szalai - KAMI
64dec765d8 Add copy and extract for extras and few extensions 2011-05-04 04:56:37 +02:00
Andras Timar
140e2dc70c introducing --enable-release-build configure switch - fdo#36437
and default is dev build
2011-04-30 22:09:17 +02:00
Andras Timar
0b4cfce98c do not ship non-localized helppacks 2011-04-29 16:41:49 +02:00
Andras Timar
a8b49b4b38 do not ship non-localized helppacks 2011-04-28 22:50:38 +02:00
Andras Timar
2f734f54a6 put L10N_MODULE definition to set_soenv instead of settings.mk
and remove alternative l10n locations from settings.mk
2011-04-28 18:12:39 +02:00
Bjoern Michaelsen
d941a0bf7c add --enable-lomenubar switch to configure 2011-04-28 10:02:25 +02:00
Bjoern Michaelsen
34f9d7b795 add --enable-lomenubar switch to configure 2011-04-28 01:44:09 +02:00
Michael Meeks
b41e01d92f initial uglification 2011-04-26 14:57:14 +01:00
Tor Lillqvist
97bfc27b4b Kill BrOffice, fdo#36262 2011-04-26 14:27:20 +03:00
Andras Timar
32352e1ce8 put L10N_MODULE definition to set_soenv instead of settings.mk
and remove alternative l10n locations from settings.mk
2011-04-26 10:27:13 +02:00
Kalman Szalai - KAMI
8898e7a9c4 Add copy and extract for extras and few extensions 2011-04-24 16:19:54 +02:00
Jan Holesovsky
fc1e9f253d Merge branch 'DEV300_m106' into libreoffice-3-4
Conflicts:
	Module_ooo.mk
	Repository.mk
	configure
	configure.in
	ooo.lst
	scp2/source/ooo/file_library_ooo.scp
	scp2/source/ooo/makefile.mk
	scp2/source/ooo/module_hidden_ooo.scp
	solenv/config/sdev300.ini
	solenv/config/ssolar.cmn
	solenv/gbuild/AllLangResTarget.mk
	solenv/gbuild/ComponentTarget.mk
	solenv/gbuild/CppunitTest.mk
	solenv/gbuild/Deliver.mk
	solenv/gbuild/JavaClassSet.mk
	solenv/gbuild/JunitTest.mk
	solenv/gbuild/Library.mk
	solenv/gbuild/LinkTarget.mk
	solenv/gbuild/Module.mk
	solenv/gbuild/Output.mk
	solenv/gbuild/SdiTarget.mk
	solenv/gbuild/TargetLocations.mk
	solenv/gbuild/gbuild.mk
	solenv/gbuild/platform/linux.mk
	solenv/gbuild/platform/macosx.mk
	solenv/gbuild/platform/solaris.mk
	solenv/gbuild/platform/windows.mk
	solenv/gbuild/platform/winmingw.mk
	solenv/inc/minor.mk
2011-04-22 15:07:18 +02:00
Tor Lillqvist
49313fa83b Fix from-scratch build breakage: Don't call realpath on Windows path
In a from-scratch build, when running the configure script, which then
runs the set_soenv script, the default_images symlink (that is passed
to this function in the form of a Windows path, for some reason) does
not exist yet, and realpath fails anyway. So don't bother calling
realpath on Windows paths.

Although I don't know whether it then will cause a problem that the
cygpath -m call won't be able to expand the symlink as it doesn't
exist anyway. This is a mess. And if cygpath -m expands symlinks
anyway, why is the realpath needed at all?
2011-04-18 12:43:20 +03:00
Jan Holesovsky
9d66573987 Don't override CC and CXX on Windows when set, handle ccache.
This is to allow use of ccache by specifying something like:

  export CC="ccache C:/path/to/cl.exe"
  export CXX="ccache C:/patch/to/cl.exe"

before running ./autogen.sh
2011-04-15 14:20:36 +02:00
Jan Holesovsky
15a1260bd7 Detect the prefix of the cl.exe -showIncludes output. 2011-04-15 14:20:36 +02:00
Tor Lillqvist
20ba3c4ae8 Kill OS/2 stuff 2011-04-15 14:08:09 +03:00
Francois Tigeot
08d49db2aa Remove CVER.
It is no longer used.
2011-04-14 13:41:19 +02:00
Caolán McNamara
0818377646 get rid of legacy libXaw usage 2011-04-12 13:14:16 +01:00
Francois Tigeot
19480ddf48 Remove the C52 define.
It corresponds to a version of a Solaris-specific compiler used in the
2000-2001 timeframe.
2011-04-08 13:28:02 +02:00
Tor Lillqvist
4fe951fde5 Remove ENABLE_PRESENTER_EXTRA_UI from here, too 2011-04-08 13:47:40 +03:00
Tor Lillqvist
df1e3fc991 Must export also WITH_AGFA_MONOTYPE_FONTS 2011-04-07 11:20:45 +03:00
Tor Lillqvist
2f9a326043 Must export also WITH_AGFA_MONOTYPE_FONTS 2011-04-07 11:19:48 +03:00
Francois Tigeot
4999d91ceb Use the same $outfile and $OUTPATH on all DragonFly architectures. 2011-04-04 21:27:10 +02:00
Ivo Hinkelmann
50628e59cb CWS-TOOLING: integrate CWS solaris11 2011-04-01 10:23:05 +02:00
Ivo Hinkelmann
5e59015d5a masterfix DEV300: #i10000# corrected fix 2011-03-31 16:29:46 +02:00
Caolán McNamara
b20f3427ed we only need the java lib path to link bean 2011-03-31 13:36:19 +01:00
Philipp Lohmann [pl]
26e2df6b02 rsvglibs: final touches 2011-03-29 14:37:15 +02:00
Petr Mladek
047a74d0e7 use --hash-style=gnu linking when supported 2011-03-29 12:25:46 +01:00
ka
edec9358a2 rsvglibs: rebased to DEV300_m104 2011-03-29 02:04:27 +02:00
Michael Stahl
4bd9ea1f76 solaris11: set_soenv.in: fix Solaris JDK include path:
Solaris 11 has JDK with no libmawt.so in motif21 directory, so breaks in bean;
 the libmawt.so in headless does not work, so use the xawt directory instead.
 xawt/libmawt.so seems to exist in JDKs since 1.5.0.
2011-03-28 10:34:17 +00:00
Michael Meeks
6ba9f63157 remove re-definition of BUILD_TYPE warning 2011-03-25 16:27:17 +00:00
Petr Mladek
a8bc463c2c new --with-system-translate-toolkit configure option 2011-03-25 12:13:51 +01:00
Petr Mladek
d9aaf20177 set build depencencies against the new "translations" module 2011-03-25 12:13:50 +01:00
Jan Holesovsky
a874a71d9f Kill the remnants of the PAM removal (--enable-crypt-link and CRYPT_LINK). 2011-03-24 22:33:03 +01:00
Jan Holesovsky
5f08d6e5a4 Merge commit 'ooo/DEV300_m103'
Conflicts:
	configure
	configure.in
	instsetoo_native/util/openoffice.lst
	set_soenv.in
	solenv/bin/cws.pl
	solenv/bin/modules/installer/simplepackage.pm
	solenv/gbuild/LinkTarget.mk
	solenv/gbuild/extensions/post_PackModule.mk
	solenv/gbuild/platform/linux.mk
	solenv/gbuild/platform/macosx.mk
	solenv/gbuild/platform/windows.mk
	solenv/inc/installationtest.mk
	solenv/inc/minor.mk
	soltools/cpp/_eval.c
2011-03-23 16:58:44 +01:00
Michael Meeks
5c3f86934e use the unix quickstarter un-conditionally. 2011-03-21 21:17:57 +00:00
Jan Holesovsky
61a4bf5a07 Merge remote-tracking branch 'origin/integration/dev300_m101'
Conflicts:
	set_soenv.in
2011-03-17 16:06:07 +01:00
Hanno Meyer-Thurow
ff33fd9d5d Merge Gentoo patches from old build and downstream repositories.
1. Do not add compiler default include and library path: potentially build
   against different version of system library than requested by the user.
2. Add a configure option to disable Python2 (PyUNO) bindings. Python3 is
   available for more than two years. Noone cares, therefore rest in peace.
   Python2 is going to be ditched at some point. Simply do not fail then.
   Windows builds need to be updated for BUILD_TYPE: "PYUNO". Or how is it
   handled nowadays?
3. Fix sandbox violation in officecfg module: rm /bin/<language>.zip
4. Add a configure option to search only in one place for JVMs, which is quite
   interesting for Linux Distributions. Enforce the user to place JVMs in one
   base directory.
5. Fix build for libxml-2.7.8 with ICU support.

* config_office-XINC-XLIB-defaults.diff: (1)
* disable-python.diff: (2)
* gentoo-sandbox.diff: (3)
* jvm-search-path.diff: (4)
* libxmlsec_fix_extern_c.diff: (5)
2011-03-14 18:47:10 +01:00
Frank Schoenheit [fs]
647a89f5f5 debuglevels: pulled and merged DEV300.m102 2011-03-14 09:47:56 +01:00
Norbert Thiebaud
dcbb52f15a mismerge: l10n has not changed location in libo 2011-03-12 18:49:14 -06:00
Andras Timar
68a38407f5 remove legacy SOURCE_ROOT_DIR variable 2011-03-12 09:29:25 +01:00
Philipp Lohmann [pl]
c5819b62fa rsgvlibs: adapt build configuration 2011-03-09 18:12:52 +01:00
Norbert Thiebaud
f0e5895d5b Merge commit 'ooo/DEV300_m101' into integration/dev300_m101
* commit 'ooo/DEV300_m101': (500 commits)
  masterfix DEV300: #i10000# remove hard dep
  masterfix DEV300: #i10000# usage of L10N build_type
  masterfix DEV300: #i10000# usage of L10N build_type
  masterfix DEV300: #i100000# dep. fix
  masterfix DEV300: #i10000# removed one hard dep
  masterfix DEV300: #i10000# fixed patch handling
  masterfix DEV300: #i10000# new configure
  DEV300
  masterfix DEV300: #i10000# nawk -> awk
  l10nmove: adjust repository handling
  l10nmove: fixed regex
  l10nmove: minor fixes
  l10nmove: add l10n repo to gb_REPOS
  DEV300 masterfix: gnumake3: subsequenttests requires  in environment
  ab80: Adding changes of cws mib21, ab77, ab77run2, dr77i to dev300
  DEV300 masterfix: #i10000#: windows: more bizare hacks ...
  locales34: have a matching configure as well
  DEV300
  locales34: back out change from autoreconf
  gnumake3: JunitTest.mk: bizarre hacks to make it work on windows
  ...

Conflicts:
	configure
	configure.in
	instsetoo_native/prj/build.lst
	instsetoo_native/util/makefile.mk
	instsetoo_native/util/openoffice.lst
	instsetoo_native/util/pack.lst
	ooo.lst
	scp2/source/canvas/canvascommons.scp
	scp2/source/canvas/mtfrenderer.scp
	scp2/source/ooo/common_brand.scp
	scp2/source/ooo/directory_ooo.scp
	scp2/source/ooo/file_library_ooo.scp
	scp2/source/ooo/file_ooo.scp
	scp2/source/ooo/makefile.mk
	scp2/source/ooo/module_hidden_ooo.scp
	scp2/source/ooo/module_langpack.ulf
	scp2/source/ooo/ure.scp
	scp2/source/python/file_python.scp
	scp2/source/sdkoo/sdkoo.scp
	scp2/source/templates/module_langpack_accessories_templates.sct
	scp2/source/templates/module_langpack_accessories_templates_root.sct
	set_soenv.in
	soldep/bootstrp/appdef.cxx
	soldep/bootstrp/dep.cxx
	soldep/bootstrp/hashtbl.cxx
	soldep/bootstrp/makefile.mk
	soldep/bootstrp/minormk.cxx
	soldep/bootstrp/prj.cxx
	soldep/bootstrp/prodmap.cxx
	soldep/inc/dep.hxx
	soldep/inc/minormk.hxx
	soldep/inc/prodmap.hxx
	soldep/inc/soldep/appdef.hxx
	soldep/inc/soldep/connctr.hxx
	soldep/inc/soldep/depper.hxx
	soldep/inc/soldep/depwin.hxx
	soldep/inc/soldep/hashtbl.hxx
	soldep/inc/soldep/objwin.hxx
	soldep/inc/soldep/prj.hxx
	soldep/inc/soldep/sdtresid.hxx
	soldep/inc/soldep/soldep.hxx
	soldep/inc/soldep/soldlg.hxx
	soldep/inc/soldep/tbox.hxx
	soldep/prj/d.lst
	soldep/source/connctr.cxx
	soldep/source/depapp.hxx
	soldep/source/depper.cxx
	soldep/source/depwin.cxx
	soldep/source/makefile.mk
	soldep/source/objwin.cxx
	soldep/source/soldep.cxx
	soldep/source/soldlg.cxx
	soldep/source/soldlg.src
	soldep/source/tbox.cxx
	solenv/bin/build.pl
	solenv/bin/cws.pl
	solenv/bin/make_installer.pl
	solenv/bin/mhids.pl
	solenv/bin/modules/CwsConfig.pm
	solenv/bin/modules/RepositoryHelper.pm
	solenv/bin/modules/installer/regmerge.pm
	solenv/bin/modules/installer/scriptitems.pm
	solenv/bin/modules/installer/servicesfile.pm
	solenv/bin/modules/installer/simplepackage.pm
	solenv/bin/modules/installer/substfilenamefiles.pm
	solenv/config/ssolar.cmn
	solenv/inc/_tg_rslb.mk
	solenv/inc/extension_post.mk
	solenv/inc/libs.mk
	solenv/inc/minor.mk
	solenv/inc/postset.mk
	solenv/inc/settings.mk
	solenv/inc/tg_rslb.mk
	solenv/inc/unxlng.mk
	solenv/inc/wntmsc.mk
	soltools/HIDCompiler/hidclex.l
	stlport/prj/d.lst
	stlport/systemstlguards/postextstl.h
2011-03-08 19:43:29 -06:00
Matthias Huetsch [mhu]
cc25d9d86f #i115784# configure: fix valgrind header check, use VALGRIND_CFLAGS. 2011-03-01 15:43:07 +01:00
Matthias Klose
265cfde593 lp#727118: ppc and openjdk fix
Signed-off-by: Bjoern Michaelsen <bjoern.michaelsen@canonical.com>
2011-03-01 15:10:51 +01:00
Frank Schoenheit [fs]
be3930dc28 debuglevels: pulled and merged remaining changesets from m101 2011-02-23 21:12:58 +01:00
Matthias Huetsch [mhu]
82b10c6aab Update from master repository (DEV300_m100). 2011-02-23 21:03:15 +01:00
Ivo Hinkelmann
6eaafc1caf masterfix DEV300: #i10000# fixed BUILD_TYPE 2011-02-23 17:23:06 +01:00
Frank Schoenheit [fs]
e5572e55b7 debuglevels: pulled and merged latest changes from DEV300_next 2011-02-23 12:42:39 +01:00
Frank Schoenheit [fs]
e82fd0260b debuglevels: merged to-be-m101 2011-02-23 09:58:44 +01:00
Matthias Huetsch [mhu]
17d70631f3 #i115784# configure: Add check for valgrind/memcheck.h, defining HAVE_VALGRIND_MEMCHECK_H. 2011-02-22 19:26:59 +01:00
Ivo Hinkelmann
f5c661e67e masterfix DEV300: #i10000# usage of L10N build_type 2011-02-22 19:11:18 +01:00
Francois Tigeot
60fe1a1958 Remove OSF/1 support. 2011-02-21 14:37:59 +01:00
Frank Schoenheit [fs]
dd23e0428f debuglevels: let smoketestoo_native use a dedicated version of dbgsvrc/DBGSV_INIT, instead of using the default which the build env points to - it might direct assertion output to whereever ... 2011-02-21 10:32:07 +01:00
David Tardon
657710a76d configure inclusion/exclusion of scripting providers 2011-02-18 09:47:50 +01:00
Ivo Hinkelmann
94f7fa3c81 CWS-TOOLING: integrate CWS l10nmove 2011-02-17 17:08:18 +01:00
Ivo Hinkelmann
42d31088dd CWS-TOOLING: integrate CWS locales34 2011-02-17 16:39:56 +01:00
Francois Tigeot
2b6daefaea dragonfly stuff 2011-02-15 12:08:10 +00:00
Ivo Hinkelmann
a3a148c0be l10nmove: add l10n repo to gb_REPOS 2011-02-14 18:48:22 +01:00
Thomas Arnhold
7387cd7edb Easy hack: remove obsolete gjc aot compilation 2011-02-12 11:58:27 +01:00
Andras Timar
509adda149 remove unused --with-dict option 2011-02-10 21:45:02 +01:00
Francois Tigeot
3dd75542a2 Porting LO to Dragonfly 2011-02-10 10:38:31 +01:00
Fridrich Štrba
c296fe08de Build STLport only as a compatibility library 2011-02-09 20:18:10 +01:00
Eike Rathke
0003a55a90 locales34: merge m99 2011-02-08 19:44:39 +01:00
Jan Holesovsky
d856c71a7d Merge remote branch 'origin/libreoffice-3-3'
Conflicts:
	configure.in
	solenv/bin/build.pl
2011-02-08 00:31:41 +01:00
Ivo Hinkelmann
6bb97c8b31 l10nmove: #i116586# Move l10n module into own repository 2011-02-03 16:29:56 +01:00
Caolán McNamara
9d0e903392 odf1->osf1 2011-02-03 13:18:02 +00:00
Ivo Hinkelmann
a0d42cf895 l10nmove: #i116586# Move l10n module into own repository 2011-02-02 16:23:08 +01:00
Ivo Hinkelmann
a17d76c92f l10nmove: #i116586# Move l10n module into own repository 2011-02-01 16:24:30 +01:00
Ivo Hinkelmann
3da3939805 l10nmove: #i116586# Move l10n module into own repository 2011-02-01 15:43:35 +01:00
Michael Stahl
36db278681 gnumake3: configure: set $GNUCOPY on all platforms 2011-01-31 18:35:25 +01:00
Fridrich Štrba
f486b35f98 Fix a copy&paste error 2011-01-29 23:16:19 +01:00
Caolán McNamara
631eaf3312 Resolves: fdo#31271 wrong line break with (
(cherry picked from commit de475b03b02e4cac162b517f7d9f302b6134d546)
2011-01-29 12:57:23 +00:00
Caolán McNamara
0c73802c54 Resolves: fdo#31271 wrong line break with ( 2011-01-29 12:53:25 +00:00
Mathias Bauer
166738d8ac CWS gnumake3: kill ENABLE_VBA 2011-01-28 13:59:35 +01:00
Tor Lillqvist
289917e183 Minor cleanup
When JAVA_HOME is empty or "NO_JAVA_HOME" don't use such paths in ILIB
or SOLARINC. Use $INCLUDE consistently everywhere instead of
$ds."include". Avoid duplicating the DirectX include in SOLARINC.
2011-01-28 01:07:25 +02:00
Eike Rathke
a11f234834 locales34: #i112240# for system icu >=4.4 add Close_Parenthesis to $CL Close_Punctuation; patch from <cmc> 2011-01-27 23:56:24 +01:00
Matthias Huetsch [mhu]
0b298702e4 set_soenv.in: fixed FRAMEWORKSHOME path prefix for MacOSX JavaVM.framework. 2011-01-27 14:38:02 +01:00
Tor Lillqvist
e7def2bfc6 Check also $JAVA_HOME being set to "NO_JAVA_HOME" by the configure script 2011-01-26 21:15:55 +02:00
Thomas Klausner
5e4955a4f6 Pass thru PYTHON, found by configure.
Will be used by filter/source/config/fragments/makefile.mk.
2011-01-26 11:43:50 +01:00
Ivo Hinkelmann
8af0fe6102 CWS-TOOLING: integrate CWS mingwport33 2011-01-19 12:20:03 +01:00
Tor Lillqvist
9cf5f41bed Cleanups and hacks on the start of support for 64-bit Windows build
* configure.in: Look for the x64 assembler ml64.exe when building 64-bit
  binaries, not ml.exe. Use the 64-bit tools in VC/bin/amd64, not
  the 32-bit cross-compiling tools in VC/bin/x86_amd64. We can
  currently build 64-bit only on a 64-bit OS anyway, for instance
  because of the unit tests.

* set_soenv.in: Set CPUNAME, CPU and OUTPATH appropriately for
  64-bit build. We end up with "wntsmcx12" for 64-bit MSVC 2008
  build. Drop sections for no longer supported MSVC versions. Don't
  talk about ".NET 2005" etc, ".NET" was part of the MS suite product
  name only in the 2003 version. Add Emacs and vim mode lines.
2011-01-16 20:57:08 +02:00
Tor Lillqvist
8910ee630e Add Emacs and vim mode lines 2011-01-12 18:49:14 +02:00
Petr Mladek
961abfc6f2 Fix distro specific about intro hadling
I guess that nobody uses more alternative branding pictures. It was implemented
for SLED10-GM and it is not longer needed there. So I renamed:

    --with-intro-bitmaps to --with-intro-bitmap
    --with-about-bitmaps to --with-about-bitmap
and
    INTRO_BITMAPS to INTRO_BITMAPS
    ABOUT_BITMAPS to ABOUT_BITMAP

Also .png file format is requred instead of .bmp now.

Signed off by KAMI.
2011-01-07 18:38:45 +01:00
tono
756ad0fa5c mingwport33: i#116329: MinGW port enhancement: configurable libstdc++ name 2011-01-06 21:56:21 +09:00
Hans-Joachim Lankenau
d384a2a1f2 ause129: #i116289# set MACOSX_DEPLOYMENT_TARGET in environment for use in dmake and gnumake build 2011-01-06 12:31:18 +01:00
Jan Holesovsky
d7d7b15e94 Set TMP on Windows if not set.
Otherwise we have problems with paths containing spaces - they don't get
quoted in some cases.
2011-01-04 15:47:57 +01:00
Rene Engelhard
bb0e0f0743 missing @ 2010-12-22 16:04:34 +01:00
Rene Engelhard
9038e9a595 export MDDS_CPPFLAGS into the env 2010-12-22 16:01:05 +01:00
Tor Lillqvist
6eebbe5bba It's called MinGW, not mingwin, mingw32, etc 2010-12-20 15:37:58 +02:00
Jan Holesovsky
70896c190c Merge commit 'libreoffice-3.3.0.2'
Conflicts:
	configure.in
	scp2/source/extensions/directory_extensions.scp
	scp2/source/extensions/module_extensions.scp
	scp2/source/ooo/file_ooo.scp
	set_soenv.in
	solenv/bin/modules/installer/download.pm
	solenv/bin/modules/installer/helppack.pm
	solenv/bin/modules/installer/windows/createfolder.pm
	solenv/bin/modules/installer/worker.pm
	solenv/bin/ooinstall
2010-12-20 01:11:02 +01:00
Rene Engelhard
a528189281 actually add WITH_HELPPACK_INTEGRATION to set_soenv.in 2010-12-17 20:04:07 +01:00
Rene Engelhard
0cf7331043 AC_SUBST gperf (fdo#32195) 2010-12-14 11:05:52 +01:00
Rene Engelhard
803f02e6a3 AC_SUBST gperf (fdo#32195) 2010-12-13 22:17:31 +01:00
Fridrich Štrba
73e4a11ef0 Propagate the WITH_EXTENSION_INTEGRATION variable to build environment 2010-12-13 20:41:32 +01:00
Fridrich Štrba
f86d86532a Propagate the WITH_EXTENSION_INTEGRATION variable to build environment 2010-12-13 20:38:28 +01:00
Sebastian Spaeth
3b59c47a49 Remove obsolete gcc tests for gcc < 3.4 2010-12-10 15:15:41 +01:00
Sebastian Spaeth
875ee6358b Don't "sed" bash away in configure just to add it back in set_soenv
Keep the full bash path. Made sure it is not used anywhere else.
No functional change at all.

Signed-off-by: Sebastian Spaeth <Sebastian@SSpaeth.de>
2010-12-10 13:52:28 +01:00
Michael Meeks
0820769fc1 rename to with_themes, and test scp2 a little
Conflicts:

	scp2/source/ooo/module_hidden_ooo.scp
2010-12-09 15:57:22 +00:00
Sebastian Spaeth
51f3f391a4 v3 of the configure.in/scp2 patch to allow selecting themes
DOH, here comes v3, I left a debug output in configure.in in v2, otherwise no change. Sorry

Sebastian

>From 6c379488250f5a3349dfc2d805f70a0f084fe07d Mon Sep 17 00:00:00 2001
From: Sebastian Spaeth <Sebastian@SSpaeth.de>
Date: Thu, 9 Dec 2010 12:23:55 +0100
Subject: [PATCHv3] Introduce an --enable-theme="theme1 theme2..." option

By default, we include all defaults as before, but if given, we can
limit the number of included themes with e.g. --enable-theme="oxygen
tango". This is passed through set_soenv and sets the environment
variable ENABLE_THEMES="...." which can be used by the packimages
makefile in the postprocess repository. It also adds defines in the
form of THEME_OXYGEN that are being used in the scp2 module to decide
if we should install the theme file or not.

Signed-off-by: Sebastian Spaeth <Sebastian@SSpaeth.de>
2010-12-09 15:55:47 +00:00
Michael Meeks
d1839b973b rename to with_themes, and test scp2 a little 2010-12-09 12:57:19 +00:00
Sebastian Spaeth
357d10916a v3 of the configure.in/scp2 patch to allow selecting themes
DOH, here comes v3, I left a debug output in configure.in in v2, otherwise no change. Sorry

Sebastian

>From 6c379488250f5a3349dfc2d805f70a0f084fe07d Mon Sep 17 00:00:00 2001
From: Sebastian Spaeth <Sebastian@SSpaeth.de>
Date: Thu, 9 Dec 2010 12:23:55 +0100
Subject: [PATCHv3] Introduce an --enable-theme="theme1 theme2..." option

By default, we include all defaults as before, but if given, we can
limit the number of included themes with e.g. --enable-theme="oxygen
tango". This is passed through set_soenv and sets the environment
variable ENABLE_THEMES="...." which can be used by the packimages
makefile in the postprocess repository. It also adds defines in the
form of THEME_OXYGEN that are being used in the scp2 module to decide
if we should install the theme file or not.

Signed-off-by: Sebastian Spaeth <Sebastian@SSpaeth.de>
2010-12-09 12:57:19 +00:00
Caolán McNamara
ea24634c60 configure check for C++0x without Language Defect 757 2010-12-08 09:24:49 +00:00
Thomas Klausner
d35a430199 Add NetBSD support for amd64 and for current compiler.
Should be merged with the generic gcc file, I'll do that as
a separate step.
2010-12-07 10:54:30 +01:00
Caolán McNamara
d3f104d48f make smoketest use ooinstal to build its install set 2010-12-02 14:06:21 +00:00
Thorsten Behrens
fe6ed1e8bf Add with-linked-git and make repo list configurable
* adds --with-linked-git config option, that internally uses
  git-new-workdir
* consolidates various repo lists into bin/repo-list, and use
  that to dynamically add l10n repo
2010-12-02 00:13:48 +01:00
Robert Nagy
0ba6499e6d merge a modified version of patches/dev300/system-db-check.diff
try to find all the supported db headers and libs in all
the "standard" directories
2010-12-01 23:31:07 +01:00
Robert Nagy
bd515e768b merge a modified version of patches/dev300/system-db-check.diff
try to find all the supported db headers and libs in all
the "standard" directories
2010-12-01 23:26:31 +01:00
Jan Holesovsky
9c0035f024 Makefile.in: Introduce the 'install' target.
You can use it like 'make install', or 'make install prefix=/path', to override
what has been set by ./configure.
2010-12-01 11:14:57 +01:00
Norbert Thiebaud
22ce993077 correct the instructions:./download and ./g clone are implicit with make 2010-11-30 20:25:21 -06:00
Jan Holesovsky
bc663e966a build: Update the download location for the external tarballs. 2010-11-30 20:25:20 -06:00
Kalman Szalai - KAMI
517a8bc2fa Adds OxygenOffice extras as configurable optional
Introduces:
 --enable-extra-gallery  - for additional galleries
 --enable-extra-template - for additional templates
 --enable-extra-sample   - for additional samples
 --enable-extra-font     - for additional fonts
 configure options.
2010-11-30 14:35:52 +01:00
Kalman Szalai - KAMI
95cc1b81f1 Adds OxygenOffice extras as configurable optional
Introduces:
 --enable-extra-gallery  - for additional galleries
 --enable-extra-template - for additional templates
 --enable-extra-sample   - for additional samples
 --enable-extra-font     - for additional fonts
 configure options.
2010-11-30 13:52:46 +01:00
Mathias Bauer
2e377ca28d CWS gnumake2: resync to m94 2010-11-26 15:27:38 +01:00
Fridrich Štrba
18b79d5243 buildfix-x86-64-visibility-workaround.diff: migrate to git 2010-11-25 13:44:28 +01:00
Hans-Joachim Lankenau
e591852a04 gnumake2: introduce WORKDIR and OUTDIR in environment 2010-11-18 17:11:41 +01:00
Sebastian Spaeth
5bec664553 Don't set RSC_ONCE, it is unused
RSC_ONCE was invariably set to true but was not used afterwards. So
remove it.
2010-11-16 14:37:26 +01:00
Sebastian Spaeth
813eb5d9a9 set_soenv: remove leftovers from tcsh and .bat file support
This silences the new "Unknown type!" error messages at the end of a
./configure run.

This should not make any functional difference, as the support for
those in ToFile was already missing.
2010-11-10 14:18:12 +01:00
Sebastian Spaeth
ae7612d1d2 Make the configure run less verbose (without losing information) 2010-11-10 14:16:08 +01:00
Robert Nagy
eed18c4e62 set correct $outfile for OpenBSD 2010-11-08 12:40:20 +01:00
Robert Nagy
d89d854d9d pick up system jpeg on openbsd 2010-11-08 12:17:46 +01:00
Robert Nagy
75ccd5a34f OpenBSD needs /usr/local/lib in SOLARLIB 2010-11-08 12:17:43 +01:00
Robert Nagy
0cf424b0c4 make LibreOffice boostrap on OpenBSD 2010-11-08 12:17:27 +01:00
Thomas Klausner
29e7e9c4dc Pass thru PYTHON, found by configure.
Will be used by filter/source/config/fragments/makefile.mk.
2010-11-06 00:30:03 +01:00