gawk-diffs
[Top][All Lists]
Advanced

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

[gawk-diffs] [SCM] gawk branch, new-vms, updated. gawk-4.1.0-156-gcbd2cf


From: Arnold Robbins
Subject: [gawk-diffs] [SCM] gawk branch, new-vms, updated. gawk-4.1.0-156-gcbd2cf7
Date: Sun, 29 Dec 2013 17:50:28 +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, new-vms has been updated
       via  cbd2cf7f926f960fab1b5004e42c35515c1c8d9f (commit)
      from  2be545982a05f13cff1300dfa7d8ff45943a4a48 (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=cbd2cf7f926f960fab1b5004e42c35515c1c8d9f

commit cbd2cf7f926f960fab1b5004e42c35515c1c8d9f
Author: Arnold D. Robbins <address@hidden>
Date:   Sun Dec 29 19:49:57 2013 +0200

    Additional VMS fix.

diff --git a/extension/ChangeLog b/extension/ChangeLog
index c0e1fbb..ad455cf 100644
--- a/extension/ChangeLog
+++ b/extension/ChangeLog
@@ -1,3 +1,8 @@
+2013-12-29         Arnold D. Robbins     <address@hidden>
+
+       * gawkfts.c: Wrap include of <sys/param.h> in HAVE_SYS_PARAM_H,
+       as I should have done to start with.  For VMS.
+
 2013-12-29         John E. Malmberg      <address@hidden>
 
        * gawkdirfd.h: Adjust include for VMS.
diff --git a/extension/gawkfts.c b/extension/gawkfts.c
index 81803b8..25a4c10 100644
--- a/extension/gawkfts.c
+++ b/extension/gawkfts.c
@@ -43,11 +43,11 @@ static char sccsid[] = "@(#)fts.c   8.6 (Berkeley) 8/14/94";
 
 #include <limits.h>
 /* #include "namespace.h" */
-#ifndef ZOS_USS
+#ifdef HAVE_SYS_PARAM_H
 #include <sys/param.h>
 #else
 #include <stdio.h>
-#endif /* ZOS_USS */
+#endif
 #include <sys/stat.h>
 
 #include <assert.h>

-----------------------------------------------------------------------

Summary of changes:
 extension/ChangeLog |    5 +++++
 extension/gawkfts.c |    4 ++--
 2 files changed, 7 insertions(+), 2 deletions(-)


hooks/post-receive
-- 
gawk



reply via email to

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