diff options
author | Max Kellermann <max@duempel.org> | 2008-12-25 03:01:50 +0100 |
---|---|---|
committer | Max Kellermann <max@duempel.org> | 2008-12-25 03:01:50 +0100 |
commit | e14efd6ce9ae3d49a349f2a8575d68131eed2304 (patch) | |
tree | ed250cd56b6d9678f9d60fe6c4457d6ecae2b8f4 | |
parent | 37f8c5e5429aec257987fcdcaa9e7aff3843e9e7 (diff) | |
download | mpd-e14efd6ce9ae3d49a349f2a8575d68131eed2304.tar.gz mpd-e14efd6ce9ae3d49a349f2a8575d68131eed2304.tar.xz mpd-e14efd6ce9ae3d49a349f2a8575d68131eed2304.zip |
configure.ac: removed duplicate NLS option
There was --enable-nls in configure.ac, and --disable-nls in
m4/nls.m4. Remove the first one, it wasn't working anyway.
-rw-r--r-- | configure.ac | 11 |
1 files changed, 0 insertions, 11 deletions
diff --git a/configure.ac b/configure.ac index c987fa252..68eb65264 100644 --- a/configure.ac +++ b/configure.ac @@ -139,17 +139,6 @@ PKG_CHECK_MODULES([GLIB], [glib-2.0 >= 2.4],, dnl i18n -AC_MSG_CHECKING([national language support]) -AC_ARG_ENABLE([nls], - AS_HELP_STRING([--enable-nls], [Enable national language support]), - [enable_nls=$enableval], - [enable_nls=$disable_mini]) -AC_MSG_RESULT([$enable_nls]) - -if test "x$enable_nls" = xno; then - nls=no -fi - AM_NLS nls=$USE_NLS |