From: Kalle Wallin Date: Tue, 6 Jul 2004 15:01:19 +0000 (+0000) Subject: display a warning when NLS is disabled by AM_GLIB_GNU_GETTEXT X-Git-Tag: v0.12_alpha1~474 X-Git-Url: https://git.tokkee.org/?a=commitdiff_plain;h=dd758f1f6fcd66335d0940a8c7e7ad9ea93be93d;p=ncmpc.git 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 --- diff --git a/ChangeLog b/ChangeLog index c190378..0d8c0fc 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,12 @@ +2004-07-06 Kalle Wallin + * configure.ac: display a warning when NLS is disabled + +2004-07-03 Kalle Wallin + * wreadln.c, screen_utils.c: ignore mouse events (wgetch) + * Changed the debug macro D() into a function (--debug now works) + * Added german translations from Ingmar Gebert (Ogig) + * support.h, screen.h: using GTime instead of time_t + 2004-07-02 Kalle Wallin * options.c: improved error handling in the argv parser * screen_play.c: scroll up when moving a item uppwards diff --git a/NEWS b/NEWS index 959339d..d749605 100644 --- a/NEWS +++ b/NEWS @@ -29,6 +29,7 @@ ncmpc-0.11.0 + ncmpc now offers to overwrite when saving playlists + ncmpc now have an optional clock screen + ncmpc now updates the local playlists via MPD's plchanges command... + + ncmpc now support ncurses mouse events (xterm) diff --git a/configure.ac b/configure.ac index 68540e5..fa921de 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