diff options
-rw-r--r-- | ChangeLog | 9 | ||||
-rw-r--r-- | NEWS | 1 | ||||
-rw-r--r-- | configure.ac | 5 |
3 files changed, 14 insertions, 1 deletions
@@ -1,3 +1,12 @@ +2004-07-06 Kalle Wallin <kaw@linux.se> + * configure.ac: display a warning when NLS is disabled + +2004-07-03 Kalle Wallin <kaw@linux.se> + * 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 <kaw@linux.se> * options.c: improved error handling in the argv parser * screen_play.c: scroll up when moving a item uppwards @@ -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 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 |