diff options
| author | Marc-André Lureau <marcandre.lureau@gmail.com> | 2012-01-27 14:51:35 +0100 |
|---|---|---|
| committer | Daniel P. Berrange <berrange@redhat.com> | 2012-01-30 17:32:40 +0000 |
| commit | 67284efecff827e5efaa012a528d0f532164b6df (patch) | |
| tree | bb0b82132d38a1e678f43bf393e462027925a693 | |
| parent | 83897072b208782768c3125684f53831dec7e157 (diff) | |
build: use AM_GLIB_GNU_GETTEXT
Using intltool macro only causes build issues on exotic platforms,
such as MinGW.
As long as this bug isn't fixed, we should use AM_GLIB_GNU_GETTEXT
https://bugs.launchpad.net/intltool/+bug/398571
NB this partially reverts
3473c4bb49adc0caca58dc1a8b6ce81c6870558a
The difference is the ordering of the rules. With AM_GLIB_GNU_GETTEXT
appearing after IT_PROG_INTLTOOL, the --disable-nls arg to configure
is broken. Thus AM_GLIB_GNU_GETTEXT is called first in this change.
| -rw-r--r-- | configure.ac | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/configure.ac b/configure.ac index e47d60a..905ec66 100644 --- a/configure.ac +++ b/configure.ac @@ -32,6 +32,7 @@ GETTEXT_PACKAGE=virt-viewer AC_SUBST(GETTEXT_PACKAGE) AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE,"$GETTEXT_PACKAGE", [GETTEXT package name]) +AM_GLIB_GNU_GETTEXT IT_PROG_INTLTOOL([0.35.0]) |
