[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[gawk-diffs] [SCM] gawk branch, gawk-4.2-stable, updated. gawk-4.1.0-300
From: |
John Malmberg |
Subject: |
[gawk-diffs] [SCM] gawk branch, gawk-4.2-stable, updated. gawk-4.1.0-3003-g4ad924c |
Date: |
Wed, 1 Aug 2018 09:16:22 -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, gawk-4.2-stable has been updated
via 4ad924c4988cfbe68b3a81c3647b0cced9fd2af3 (commit)
from c1f670b26671cc8d60d967bbcb42cb8deb3baf2b (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=4ad924c4988cfbe68b3a81c3647b0cced9fd2af3
commit 4ad924c4988cfbe68b3a81c3647b0cced9fd2af3
Author: John Malmberg <address@hidden>
Date: Wed Aug 1 08:11:00 2018 -0500
OpenVMS broken math.h fixes.
diff --git a/ChangeLog b/ChangeLog
old mode 100644
new mode 100755
index 6821005..2b9be8a
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,8 @@
+2018-08-01 John E. Malmberg <address@hidden>
+
+ * custom.h: Include fp.h on OpenVMS.
+ Workaround for bug in math.h missing some declarations.
+
2018-07-31 Arnold D. Robbins <address@hidden>
* interpret.h (unfield): Add a call to force_string() on
diff --git a/custom.h b/custom.h
index 90fd1f6..0ec8d1f 100644
--- a/custom.h
+++ b/custom.h
@@ -38,6 +38,14 @@
#include "vms/redirect.h"
#endif
+/* OpenVMS has some definitions in fp.h that should be in math.h */
+/* From John Malmberg, address@hidden */
+#ifdef __VMS
+#include <fp.h>
+/* isnan () macro is broken */
+#undef isnan
+#endif
+
/* For QNX, based on submission from Michael Hunter, address@hidden */
#ifdef __QNX__
#define GETPGRP_VOID 1
-----------------------------------------------------------------------
Summary of changes:
ChangeLog | 5 +++++
custom.h | 8 ++++++++
2 files changed, 13 insertions(+)
mode change 100644 => 100755 ChangeLog
hooks/post-receive
--
gawk
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [gawk-diffs] [SCM] gawk branch, gawk-4.2-stable, updated. gawk-4.1.0-3003-g4ad924c,
John Malmberg <=