aboutsummaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorKalle Wallin <kaw@linux.se>2004-07-06 15:01:19 +0000
committerKalle Wallin <kaw@linux.se>2004-07-06 15:01:19 +0000
commitdd758f1f6fcd66335d0940a8c7e7ad9ea93be93d (patch)
tree9ff82f2c5b14427e1f227231e17686b8a205f5e9 /configure.ac
parent2ecbd07bfcb69056184443cbcfde603a39294f03 (diff)
downloadmpd-dd758f1f6fcd66335d0940a8c7e7ad9ea93be93d.tar.gz
mpd-dd758f1f6fcd66335d0940a8c7e7ad9ea93be93d.tar.xz
mpd-dd758f1f6fcd66335d0940a8c7e7ad9ea93be93d.zip
display a warning when NLS is disabled by AM_GLIB_GNU_GETTEXT
git-svn-id: https://svn.musicpd.org/ncmpc/trunk@1798 09075e82-0dd4-0310-85a5-a0d7c8717e4f
Diffstat (limited to '')
-rw-r--r--configure.ac5
1 files changed, 4 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index 68540e5fa..fa921de15 100644
--- a/configure.ac
+++ b/configure.ac
@@ -17,7 +17,7 @@ dnl initialize variables
dnl =======================================================
dnl i18n
-ALL_LINGUAS="sv de"
+ALL_LINGUAS="de sv"
set -- $CFLAGS
@@ -93,6 +93,9 @@ if test "x$nls" = "xyes"; then
["${GETTEXT_PACKAGE}"],
[gettext domain])
nls=$gt_cv_have_gettext
+ if test "x$nls" != "xyes"; then
+ AC_MSG_WARN([NLS support disabled!])
+ fi
else
AM_PO_SUBDIRS
fi