gawk-diffs
[Top][All Lists]
Advanced

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

[gawk-diffs] [SCM] gawk branch, master, updated. gawk-4.1.0-3828-gf6c499


From: John Malmberg
Subject: [gawk-diffs] [SCM] gawk branch, master, updated. gawk-4.1.0-3828-gf6c499e
Date: Mon, 30 Sep 2019 08:33:16 -0400 (EDT)

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  f6c499e45c2856d6b0fdee24d1f761a32539fcc6 (commit)
      from  4a034ab5b224f2def385e99490cfaa69db3e1895 (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=f6c499e45c2856d6b0fdee24d1f761a32539fcc6

commit f6c499e45c2856d6b0fdee24d1f761a32539fcc6
Author: John Malmberg <address@hidden>
Date:   Mon Sep 30 07:30:28 2019 -0500

    OpenVMS does not provide ULLONG_MAX

diff --git a/ChangeLog b/ChangeLog
index a76a555..eacf3c4 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2019-09-30         John E. Malmberg     <address@hidden>
+
+       * custom.h: OpenVMS does not provide ULLONG_MAX
+
 2019-09-20  Florian Weimer  <address@hidden>
 
        * configure.ac (PRINTF_HAS_F_FORMAT): Include <string.h> for
diff --git a/custom.h b/custom.h
index 44ae50e..787e08b 100644
--- a/custom.h
+++ b/custom.h
@@ -50,6 +50,11 @@
 #ifndef SIZE_MAX
 #define SIZE_MAX __INT32_MAX
 #endif
+#ifndef __VAX
+#ifndef ULLONG_MAX
+#define ULLONG_MAX __UINT64_MAX
+#endif
+#endif
 #endif
 
 /* For QNX, based on submission from Michael Hunter, address@hidden */

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

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


hooks/post-receive
-- 
gawk



reply via email to

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