gawk-diffs
[Top][All Lists]
Advanced

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

[SCM] gawk branch, master, updated. gawk-4.1.0-3897-g49a3b85


From: John Malmberg
Subject: [SCM] gawk branch, master, updated. gawk-4.1.0-3897-g49a3b85
Date: Thu, 13 Feb 2020 19:34:09 -0500 (EST)

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, master has been updated
       via  49a3b8595db2c6d265f3e6635e4deb7accff8ced (commit)
      from  9ce4f70b852959e8a6c244f5cff96d7f50b5594f (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=49a3b8595db2c6d265f3e6635e4deb7accff8ced

commit 49a3b8595db2c6d265f3e6635e4deb7accff8ced
Author: John Malmberg <address@hidden>
Date:   Thu Feb 13 18:32:23 2020 -0600

    custom.h fix for OpenVMS regex handling.

diff --git a/ChangeLog b/ChangeLog
index 12bcbb9..5805c10 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2020-02-13         John E. Malmberg      <address@hidden>
+
+       * custom.h: OpenVMS needs _REGEX_INCLUDE_LIMITS_H defined.
+
 2020-02-09         Arnold D. Robbins     <address@hidden>
 
        * awkgram.y: Add lint check for assignment in condition to
diff --git a/custom.h b/custom.h
index 66e755d..b21cf38 100644
--- a/custom.h
+++ b/custom.h
@@ -44,6 +44,10 @@
 #include <fp.h>
 /* isnan () macro is broken */
 #undef isnan
+/* VMS has POSIX confirming limits.h */
+#ifndef _REGEX_INCLUDE_LIMITS_H
+#define _REGEX_INCLUDE_LIMITS_H 1
+#endif
 #ifndef _GNU_SOURCE
 #define _GNU_SOURCE 1
 #endif /* _GNU_SOURCE */

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

Summary of changes:
 ChangeLog | 4 ++++
 custom.h  | 4 ++++
 2 files changed, 8 insertions(+)


hooks/post-receive
-- 
gawk



reply via email to

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