← Back to team overview

lightdm-gtk-greeter-team team mailing list archive

[Merge] ~malvineous/lightdm-gtk-greeter:master into lightdm-gtk-greeter:master

 

Adam Nielsen has proposed merging ~malvineous/lightdm-gtk-greeter:master into lightdm-gtk-greeter:master.

Requested reviews:
  LightDM Gtk+ Greeter Development Team (lightdm-gtk-greeter-team)

For more details, see:
https://code.launchpad.net/~malvineous/lightdm-gtk-greeter/+git/lightdm-gtk-greeter/+merge/384878

If you try to compile the code with a recent version of gettext, you get this error:

    *** error: gettext infrastructure mismatch: using a Makefile.in.in from gettext version 0.19 but the autoconf macros are from gettext version 0.20

Currently only the specific version of gettext listed in configure.ac is allowed to be used.  This change makes the version number the minimum permitted version, allowing compilation with newer gettext versions as well.

-- 
Your team LightDM Gtk+ Greeter Development Team is requested to review the proposed merge of ~malvineous/lightdm-gtk-greeter:master into lightdm-gtk-greeter:master.
diff --git a/configure.ac b/configure.ac
index 4f2e366..5bb5bf3 100644
--- a/configure.ac
+++ b/configure.ac
@@ -177,6 +177,7 @@ GETTEXT_PACKAGE="lightdm-gtk-greeter"
 AC_SUBST(GETTEXT_PACKAGE)
 AC_DEFINE_UNQUOTED(GETTEXT_PACKAGE,"$GETTEXT_PACKAGE", [GETTEXT package name])
 AM_GNU_GETTEXT_VERSION([0.19.7])
+AM_GNU_GETTEXT_REQUIRE_VERSION([0.19.7])
 AM_GNU_GETTEXT([external])
 
 dnl ###########################################################################

Follow ups