summaryrefslogtreecommitdiff
path: root/autogen.sh
AgeCommit message (Collapse)AuthorFilesLines
2012-05-17autogen.sh: append aclocal arguments to ACLOCAL_FLAGS unconditionallyRuslan Kabatsayev1-5/+2
Change-Id: I2254628edfe213c3424dce2bc5d9f164752e913c
2012-03-29deal with symlinks in your PWD breaking gnumake dependenciesMichael Meeks1-0/+11
2012-03-13Fix authgen.sh to not clobber autogen.lastrun when using --helpJosh Heidenreich1-0/+8
Fix also works for -h and -?
2012-03-05Improvement to fdo#46565Thomas Collerton1-2/+8
2012-02-29fdo#46565: perl / autogen.sh should backup autogen.lastrunThomas Collerton1-0/+4
2012-02-17add macro for extracting mingw dll names from libtool filesDavid Tardon1-1/+5
Hardcoding dll names from SuSE Linux in configure.in is not good, because they might be slightly different on other systems (notably Fedora :-), or the libraries might be compiled with different dependencies.
2012-01-09autogen: sync vim modeline with emacs oneMiklos Vajna1-1/+1
2011-08-30Fix to create autogen.lastrun for a single argument case.Stephan Bergmann1-1/+1
2011-08-29autogen.sh: don't touch autogen.lastrun if it already existsMiklos Vajna1-1/+1
2011-08-28touch autogen.lastrun to make sure that such file exist before makeNorbert Thiebaud1-0/+4
2011-08-24Allow comments in the autogen.lastrun fileTor Lillqvist1-0/+2
2011-08-18have autogen.sh return an erro if configure failedNorbert Thiebaud1-1/+1
2011-07-03I doubt we need a ChangeLog fileTor Lillqvist1-2/+0
2011-07-03Include environment variables already in autogen.sh's environmentTor Lillqvist1-2/+9
2011-07-03Allow use of $ACLOCAL to override the name aclocalTor Lillqvist1-2/+5
Useful for instance when only aclocal-1.10 exists. But, systems that are broken like that will have lots of more problems, too. It is just a (sad?) fact that building LO on anything except those platforms that people work on constantly will require lots of tweaks. Many of the assumptions in various solenv .mk files for rare platforms are rather outdated and/or arbitrary, assuming a certain mix of more or less "official" additional tools.
2011-05-31We should not look for .exe extensions for Cygwin programsTor Lillqvist1-4/+2
2011-05-31Stylize consistently, add more Emacs mode goodnessTor Lillqvist1-43/+42
2011-05-30one doesn't need pkg-config on macChristian Lohmaier1-1/+1
2011-05-30initial attempt to avoid ugly errors with missing pkgconfig etc.Michael Meeks1-0/+34
2011-05-29Add Emacs and vim mode settingTor Lillqvist1-0/+7
2011-05-29Don't overwrite autogen.lastrun with identical (perhaps re-ordered) contentsTor Lillqvist1-8/+11
2011-05-27Merge remote-tracking branch 'origin/integration/dev300_m106'Jan Holesovsky1-9/+9
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-04-15Don't mention that we are updating autogen.lastrun.Jan Holesovsky1-1/+1
2011-04-08Don't worry if there is no distro-configs/Foo.confTor Lillqvist1-5/+5
The --with-distro options might come from bin/build-ooo in a "build" style build, and in that case, the relevant configure options are already on the command line, too.
2011-04-08Make the list of valid distros show up also in slightly older Perl versionsTor Lillqvist1-1/+1
See http://perldoc.perl.org/functions/readdir.html .
2011-04-07fix the autogen perl wrapper: mishandling of the Darwins-pecific aclocalNorbert Thiebaud1-3/+4
Signed-off-by: Fridrich Štrba <fridrich.strba@bluewin.ch>
2011-04-07Migrate the old autogen.lastrun format to the new one automatically.Jan Holesovsky1-3/+17
Signed-off-by: Fridrich Štrba <fridrich.strba@bluewin.ch>
2011-04-07re-write into perl, to reduce ninja-coding, and fix distro-config bugMichael Meeks1-68/+82
Signed-off-by: Fridrich Štrba <fridrich.strba@bluewin.ch>
2011-04-07check more carefully for configure generation, and fix quoting of vendorsMichael Meeks1-2/+4
2011-04-06Migrate the old autogen.lastrun format to the new one automatically.Jan Holesovsky1-3/+17
2011-04-05fix the autogen perl wrapper: mishandling of the Darwins-pecific aclocalNorbert Thiebaud1-3/+4
2011-04-05re-write into perl, to reduce ninja-coding, and fix distro-config bugMichael Meeks1-68/+82
2010-12-01fix the IFS trick. the bashims removal broke that partNorbert Thiebaud1-1/+2
2010-12-02autogen.sh: Even more portable.Jan Holesovsky1-10/+14
2010-12-01autogen.sh: Remove bashism / non-portable stuff.Jan Holesovsky1-4/+16
2010-12-01add support for --with-distroNorbert Thiebaud1-2/+16
2010-11-30ban bashismTakeshi Abe1-1/+1
2010-11-30make autogen ability to remember the last command line work on MacOSNorbert Thiebaud1-4/+10
futhermore: the conf.log extraction method is no reliable. autoconf has changed and newer version don't put it there. furthermore, because of the post_download generation, the conf.log get crowded by a second autoconf...
2010-11-30building rawbuild on mac should not depend on pkg-config being installedNorbert Thiebaud1-0/+7
2010-10-05Use more portable sed construct for quoting expressions.Thomas Klausner1-1/+1
Remove unused variable.
2010-10-04Solve the problem with eval & $@.Jan Holesovsky1-2/+6
2010-10-04Don't quote stuff that does not need to be quotedFridrich Štrba1-3/+1
2010-08-24Remove 'configure' from the SCM, generate it using ./autogen.sh instead.Jan Holesovsky1-0/+35
2010-08-18Split build: Revert it for now.Jan Holesovsky1-11/+0
2009-06-26Split build: Remove files that should not be revision controlled.Jan Holesovsky1-0/+11
They are generated; so actually also add autogen.sh and Makefile.am to help to generate them :-) * Makefile.in: Bin. * aclocal.m4: Bin. * configure: Bin. * autogen.sh: New file. * Makefile.am: New file.