From 844bc26c63e8a0b448a7da6ee89acdcc4585924a Mon Sep 17 00:00:00 2001 From: Max Kellermann Date: Thu, 25 Dec 2008 04:29:56 +0100 Subject: [PATCH] configure.ac: disable NLS in mini mode --- configure.ac | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) 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 -- 2.30.2