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 NEWS con...


From: Pavel Kharitonov
Subject: trans-coord/gnun/server/gnun ChangeLog NEWS con...
Date: Wed, 29 Jun 2016 16:22:22 +0000 (UTC)

CVSROOT:        /sources/trans-coord
Module name:    trans-coord
Changes by:     Pavel Kharitonov <ineiev>       16/06/29 16:22:22

Modified files:
        gnun/server/gnun: ChangeLog NEWS configure.ac 

Log message:
        Allow some error in date.

CVSWeb URLs:
http://cvs.savannah.gnu.org/viewcvs/trans-coord/gnun/server/gnun/ChangeLog?cvsroot=trans-coord&r1=1.443&r2=1.444
http://cvs.savannah.gnu.org/viewcvs/trans-coord/gnun/server/gnun/NEWS?cvsroot=trans-coord&r1=1.119&r2=1.120
http://cvs.savannah.gnu.org/viewcvs/trans-coord/gnun/server/gnun/configure.ac?cvsroot=trans-coord&r1=1.49&r2=1.50

Patches:
Index: ChangeLog
===================================================================
RCS file: /sources/trans-coord/trans-coord/gnun/server/gnun/ChangeLog,v
retrieving revision 1.443
retrieving revision 1.444
diff -u -b -r1.443 -r1.444
--- ChangeLog   29 Jun 2016 16:15:39 -0000      1.443
+++ ChangeLog   29 Jun 2016 16:22:22 -0000      1.444
@@ -1,5 +1,10 @@
 2016-06-29  Pavel Kharitonov  <address@hidden>
 
+       * configure.ac: Allow some error in `date'.
+       * NEWS: Update.
+
+2016-06-29  Pavel Kharitonov  <address@hidden>
+
        * config.mk.in: Add datarootdir and pkgdatadir
         to fix configure warning.
 

Index: NEWS
===================================================================
RCS file: /sources/trans-coord/trans-coord/gnun/server/gnun/NEWS,v
retrieving revision 1.119
retrieving revision 1.120
diff -u -b -r1.119 -r1.120
--- NEWS        29 Jun 2016 16:13:26 -0000      1.119
+++ NEWS        29 Jun 2016 16:22:22 -0000      1.120
@@ -4,6 +4,9 @@
 
 ** www.gnu.org URLs in many places are replaced with the HTTPS version.
 
+** In `configure', a workaround for less precise versions
+   of `date' is added.
+
 ** Bugs fixed in 0.11.
 
 *** `gnun-validate-html' didn't work with bash versions that don't

Index: configure.ac
===================================================================
RCS file: /sources/trans-coord/trans-coord/gnun/server/gnun/configure.ac,v
retrieving revision 1.49
retrieving revision 1.50
diff -u -b -r1.49 -r1.50
--- configure.ac        29 Jun 2016 16:13:26 -0000      1.49
+++ configure.ac        29 Jun 2016 16:22:22 -0000      1.50
@@ -53,7 +53,9 @@
 AC_MSG_CHECKING([whether `date' supports the `-d' option])
 timestamp=`date -d "2001-09-09 01:47+0000" +%s 2> /dev/null || echo FAIL`
 decent_date=no
-AS_CASE(["x$timestamp"], [x1000000020],
+# Some versions of date return a result that varies
+# from 1000000020 to 1000000079.
+AS_CASE(["x$timestamp"], [x10000000??],
 [decent_date=yes
 ])
 AC_MSG_RESULT([$decent_date])



reply via email to

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