From: Max Kellermann Date: Thu, 25 Dec 2008 03:29:56 +0000 (+0100) Subject: configure.ac: disable NLS in mini mode X-Git-Tag: release-0.13~45 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=844bc26c63e8a0b448a7da6ee89acdcc4585924a;p=ncmpc.git configure.ac: disable NLS in mini mode --- diff --git a/configure.ac b/configure.ac index a688445..6211f0e 100644 --- a/configure.ac +++ b/configure.ac @@ -154,19 +154,21 @@ if test x$enable_locale = xyes; then AC_DEFINE([ENABLE_LOCALE], [1], [Locale support is enabled]) fi +if test x$enable_mini != xyes; then + AM_NLS +else + USE_NLS=no +fi -AM_NLS -nls=$USE_NLS - -if test "x$nls" = "xyes"; then +if test x$USE_NLS = xyes; then AM_GLIB_GNU_GETTEXT GETTEXT_PACKAGE=$PACKAGE AC_SUBST(GETTEXT_PACKAGE) AC_DEFINE_UNQUOTED([GETTEXT_PACKAGE], ["${GETTEXT_PACKAGE}"], [gettext domain]) - nls=$gt_cv_have_gettext - if test "x$nls" != "xyes"; then + USE_NLS=$gt_cv_have_gettext + if test x$USE_NLS != xyes; then AC_MSG_WARN([NLS support disabled!]) fi else