trans-coord-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

trans-coord/gnun/server/gnun ChangeLog GNUmakef...


From: Pavel Kharitonov
Subject: trans-coord/gnun/server/gnun ChangeLog GNUmakef...
Date: Fri, 13 Dec 2013 13:56:44 +0000

CVSROOT:        /sources/trans-coord
Module name:    trans-coord
Changes by:     Pavel Kharitonov <ineiev>       13/12/13 13:56:44

Modified files:
        gnun/server/gnun: ChangeLog GNUmakefile NEWS config.mk.in 
                          configure.ac 

Log message:
        * GNUmakefile (compendia/fuzzified-compendium.$(1).po):
        Use `msgattrib --previous' when available.
        * configure.ac: Check whether `msgattrib' supports `--previous'.
        * config.mk.in (MSGATTRIB_PREV): New variable.
        * NEWS: Update.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/trans-coord/gnun/server/gnun/ChangeLog?cvsroot=trans-coord&r1=1.391&r2=1.392
http://cvs.savannah.gnu.org/viewcvs/trans-coord/gnun/server/gnun/GNUmakefile?cvsroot=trans-coord&r1=1.172&r2=1.173
http://cvs.savannah.gnu.org/viewcvs/trans-coord/gnun/server/gnun/NEWS?cvsroot=trans-coord&r1=1.96&r2=1.97
http://cvs.savannah.gnu.org/viewcvs/trans-coord/gnun/server/gnun/config.mk.in?cvsroot=trans-coord&r1=1.12&r2=1.13
http://cvs.savannah.gnu.org/viewcvs/trans-coord/gnun/server/gnun/configure.ac?cvsroot=trans-coord&r1=1.41&r2=1.42

Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/trans-coord/trans-coord/gnun/server/gnun/ChangeLog,v
retrieving revision 1.391
retrieving revision 1.392
diff -u -b -r1.391 -r1.392
--- ChangeLog   10 Dec 2013 15:20:31 -0000      1.391
+++ ChangeLog   13 Dec 2013 13:56:42 -0000      1.392
@@ -1,3 +1,12 @@
+2013-12-13  Pavel Kharitonov  <address@hidden>
+
+       * GNUmakefile (compendia/fuzzified-compendium.$(1).po):
+       Use `msgattrib --previous' when available.
+       * configure.ac: Check whether `msgattrib' supports
+       `--previous'.
+       * config.mk.in (MSGATTRIB_PREV): New variable.
+       * NEWS: Update.
+
 2013-12-10  Pavel Kharitonov  <address@hidden>
 
        * GNUmakefile: Drop whatsnew support.

Index: GNUmakefile
===================================================================
RCS file: /sources/trans-coord/trans-coord/gnun/server/gnun/GNUmakefile,v
retrieving revision 1.172
retrieving revision 1.173
diff -u -b -r1.172 -r1.173
--- GNUmakefile 10 Dec 2013 15:20:31 -0000      1.172
+++ GNUmakefile 13 Dec 2013 13:56:43 -0000      1.173
@@ -376,8 +376,13 @@
   fi
 
 compendia/fuzzified-compendium.$(1).po: compendia/compendium.$(1).po
+ifeq ($(MSGATTRIB_PREV),yes)
+       $(MSGATTRIB) --translated --clear-obsolete --set-fuzzy --previous \
+  $$< > $$@
+else
        $(MSGATTRIB) --translated --clear-obsolete --set-fuzzy $$< \
   | $(COPY-MSGID) > $$@
+endif
 
 COMPENDIUM-$(1)-OPTION := \
   $$(shell test -s compendia/fuzzified-compendium.$(1).po \

Index: NEWS
===================================================================
RCS file: /sources/trans-coord/trans-coord/gnun/server/gnun/NEWS,v
retrieving revision 1.96
retrieving revision 1.97
diff -u -b -r1.96 -r1.97
--- NEWS        10 Dec 2013 15:20:32 -0000      1.96
+++ NEWS        13 Dec 2013 13:56:43 -0000      1.97
@@ -2,6 +2,8 @@
 
 * Changes in GNUnited Nations 0.8 (????-??-??)
 
+*** `msgattrib --previous' is used when available.
+
 *** The maximum number of reports against invalid articles
     in `validate-all' is limited.
 

Index: config.mk.in
===================================================================
RCS file: /sources/trans-coord/trans-coord/gnun/server/gnun/config.mk.in,v
retrieving revision 1.12
retrieving revision 1.13
diff -u -b -r1.12 -r1.13
--- config.mk.in        8 Oct 2013 04:38:24 -0000       1.12
+++ config.mk.in        13 Dec 2013 13:56:43 -0000      1.13
@@ -28,6 +28,7 @@
 EGREP          := @EGREP@
 MAIL           := @MAIL@
 MSGATTRIB      := @MSGATTRIB@
+MSGATTRIB_PREV := @MSGATTRIB_PREV@
 MSGCAT         := @MSGCAT@
 MSGFMT         := @MSGFMT@
 MSGMERGE       := @MSGMERGE@

Index: configure.ac
===================================================================
RCS file: /sources/trans-coord/trans-coord/gnun/server/gnun/configure.ac,v
retrieving revision 1.41
retrieving revision 1.42
diff -u -b -r1.41 -r1.42
--- configure.ac        8 Oct 2013 04:38:24 -0000       1.41
+++ configure.ac        13 Dec 2013 13:56:43 -0000      1.42
@@ -194,6 +194,14 @@
 AS_IF([test -n "$MSGATTRIB"], [decent_msgattrib=yes], [decent_msgattrib=no])
 AM_CONDITIONAL([NEW_MSGATTRIB], [test "$decent_msgattrib" = yes])
 
+AC_MSG_CHECKING([whether msgattrib supports --previous])
+msgattrib_previous=no
+AS_IF(
+[test "x$MSGATTRIB" != x && echo | "$MSGATTRIB" --previous > /dev/null 2>&1],
+[msgattrib_previous=yes])
+AC_SUBST([MSGATTRIB_PREV], [$msgattrib_previous])
+AC_MSG_RESULT([$msgattrib_previous])
+
 AC_ARG_VAR([WDIFF], [the `wdiff' program])
 AC_PATH_PROG([WDIFF], [wdiff])
 AS_IF([test -n "$WDIFF"], [have_wdiff=yes], [have_wdiff=no])



reply via email to

[Prev in Thread] Current Thread [Next in Thread]