Code

display a warning when NLS is disabled by AM_GLIB_GNU_GETTEXT
authorKalle Wallin <kaw@linux.se>
Tue, 6 Jul 2004 15:01:19 +0000 (15:01 +0000)
committerKalle Wallin <kaw@linux.se>
Tue, 6 Jul 2004 15:01:19 +0000 (15:01 +0000)
git-svn-id: https://svn.musicpd.org/ncmpc/trunk@1798 09075e82-0dd4-0310-85a5-a0d7c8717e4f

ChangeLog
NEWS
configure.ac

index c190378f91a40d2b5ecfceff5e94384f055dbfea..0d8c0fc2d819aead3f2880b0df13743c0c89241c 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -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
diff --git a/NEWS b/NEWS
index 959339d716f2a6bc1aba3c43f94c545246b6bfa1..d7496059f7834bff50016bc03a472970df6c4ea5 100644 (file)
--- 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)
  
 
 
index 68540e5fa272bfdbef0946072196f0dd271f9868..fa921de15b2cd26fd41150c23c5d79236ccb4265 100644 (file)
@@ -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