[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[gawk-diffs] [SCM] gawk branch, gawk-4.1-stable, updated. gawk-4.1.0-283
From: |
Arnold Robbins |
Subject: |
[gawk-diffs] [SCM] gawk branch, gawk-4.1-stable, updated. gawk-4.1.0-283-g9e59349 |
Date: |
Sun, 06 Apr 2014 20:20:36 +0000 |
This is an automated email from the git hooks/post-receive script. It was
generated because a ref change was pushed to the repository containing
the project "gawk".
The branch, gawk-4.1-stable has been updated
via 9e59349a27123aa29b4652fed407a4fd902f4fcb (commit)
via 396767664c93e58b106e000dd52fd973c8b5b273 (commit)
from 17fdac5a535106e32ad8c8aa9ac23b0f10573ccd (commit)
Those revisions listed above that are new to this repository have
not appeared on any other notification email; so we list those
revisions in full, below.
- Log -----------------------------------------------------------------
http://git.sv.gnu.org/cgit/gawk.git/commit/?id=9e59349a27123aa29b4652fed407a4fd902f4fcb
commit 9e59349a27123aa29b4652fed407a4fd902f4fcb
Author: Arnold D. Robbins <address@hidden>
Date: Fri Apr 4 12:31:05 2014 +0300
Update Checklist file in git repo.
diff --git a/Checklist b/Checklist
index 98faf6c..e0e1ffe 100644
--- a/Checklist
+++ b/Checklist
@@ -1,4 +1,4 @@
-Sun Apr 21 23:14:21 IDT 2013
+Fri Apr 4 11:43:29 IDT 2014
============================
A checklist for making releases
@@ -12,20 +12,18 @@ README_d/* edited
VMS/* version stuff up to date
vms/vmsbuild.com
vms/descrip.mms
- vms/vms-conf.h: update VERSION and PACKAGE_VERSION
NEWS is up to date
Any new options have been added to usage function
All paper work signed and sent in
All files checked in
Version information is correct in
- version.c
doc/gawk.1
doc/awkcard.in
- doc/gawk.texi
+ doc/gawktexi.in
doc/gawkinet.texi
extension/configure.ac
doc/texinfo.tex is up to date
-doc/gawk.texi is up to date
+doc/gawktexi.in is up to date
doc/gawkinet.texi is up to date
doc/gawk.1 is up to date
doc/awkcard.in is up to date
@@ -43,6 +41,8 @@ Testing on
compile with tcc
compile with clang
+ compile 32 bit tests - clang and gcc
+
configure --disable-lint
configure --disable-nls
configure --with-whiny-user-strftime
http://git.sv.gnu.org/cgit/gawk.git/commit/?id=396767664c93e58b106e000dd52fd973c8b5b273
commit 396767664c93e58b106e000dd52fd973c8b5b273
Author: Arnold D. Robbins <address@hidden>
Date: Fri Apr 4 11:43:07 2014 +0300
Fix a compilation warning.
diff --git a/extension/ChangeLog b/extension/ChangeLog
index 4eb9681..c372639 100644
--- a/extension/ChangeLog
+++ b/extension/ChangeLog
@@ -1,3 +1,9 @@
+2014-04-04 Arnold D. Robbins <address@hidden>
+
+ * time.c: Include <time.h> unconditionally to get declaration
+ of nanosleep on Linux. Avoids a warning. Thanks to Michal
+ Jaegermann.
+
2014-03-31 Arnold D. Robbins <address@hidden>
* configure.ac: Remove -Wextra to avoid killing compilations
diff --git a/extension/time.c b/extension/time.c
index 19466e0..e6b2b39 100644
--- a/extension/time.c
+++ b/extension/time.c
@@ -85,15 +85,13 @@ static awk_bool_t (*init_func)(void) = NULL;
int plugin_is_GPL_compatible;
+#include <time.h>
#if defined(HAVE_GETTIMEOFDAY) && defined(HAVE_SYS_TIME_H)
#include <sys/time.h>
#endif
#if defined(HAVE_SELECT) && defined(HAVE_SYS_SELECT_H)
#include <sys/select.h>
#endif
-#if defined(HAVE_NANOSLEEP) && defined(HAVE_TIME_H)
-#include <time.h>
-#endif
#if defined(HAVE_GETSYSTEMTIMEASFILETIME)
#define WIN32_LEAN_AND_MEAN
#include <windows.h>
-----------------------------------------------------------------------
Summary of changes:
Checklist | 10 +++++-----
extension/ChangeLog | 6 ++++++
extension/time.c | 4 +---
3 files changed, 12 insertions(+), 8 deletions(-)
hooks/post-receive
--
gawk
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [gawk-diffs] [SCM] gawk branch, gawk-4.1-stable, updated. gawk-4.1.0-283-g9e59349,
Arnold Robbins <=