| Commit message (Collapse) | Author | Age | Files | Lines |
|
|
|
|
|
|
|
|
|
|
|
|
| |
A couple of things were preventing autoreconf from working properly on
our tarball releases. Fix those up:
- the m4/ directory (with intltool and gtk-doc m4) was not being disted
- our ./autogen.sh invoked automake with --foreign, suppressing
warnings about missing ChangeLog, etc. Move that flag into
configure.ac so that they are still suppressed when using autoreconf.
https://bugzilla.gnome.org/show_bug.cgi?id=663961
|
|
|
|
|
|
|
|
|
|
|
| |
dconf autogen.sh uses /bin/sh as shebang which on debian bind to dash.
Dash has no support for "&>" redirection (both stdout and stderr). Thus
it interpret the command as detach and redirect stdout.
Switch to explicitely redirect stdout and stderr :
"> /dev/null 2>&1" for which "&>" is a shorthand to fix the build
failure.
https://bugzilla.gnome.org/show_bug.cgi?id=692186
|
|
|
|
| |
This isn't really useful when we have 'git clean'.
|
|
|
|
|
|
|
|
|
| |
Add i18n support using intltool and glib-gettext (to avoid the
well-known issues with vanilla gettext).
This patch is heavily based on a patch by Gabor Kelemen.
https://bugzilla.gnome.org/show_bug.cgi?id=642217
|
| |
|
|
|
|
| |
This is a bad idea.
|
| |
|
|
|
|
|
|
|
|
|
| |
If automake-1.11 existed, we would run that but not also aclocal-1.11.
Ensure that we always run matching aclocal and automake.
Also some small fixups:
- use #!/bin/sh, not bash
- silence the error in case we can't find 'automake-1.11'.
|
|
|
|
|
|
|
|
|
|
|
| |
You need to type 'make clean' before trying to rebuild dconf after this
update (in fact, 'git clean' may be appropriate to clean out all the
extra files that libtool leaves around).
It's quite likely that this completely breaks dconf builds on non-ELF
platforms (and maybe some ELF ones). Please report any problems to
bugzilla. I'm very happy to accept patches to fix portability (via
./configure-time checks).
|
| |
|
|
|
|
| |
Check for 'automake-1.11' and prefer that to 'automake', if available
|
| |
|
| |
|
|
|
|
|
| |
Used to be enabled via autogen.sh. Now enabled by default for
./configure, too.
|
| |
|
|
|