[Top][All Lists]
[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[gawk-diffs] [SCM] gawk branch, gawk-4.0-stable, updated. 408223d694d6d8
From: |
Arnold Robbins |
Subject: |
[gawk-diffs] [SCM] gawk branch, gawk-4.0-stable, updated. 408223d694d6d838ca11d9617f23b0aa2d21f2e5 |
Date: |
Fri, 04 May 2012 11:50:21 +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.0-stable has been updated
via 408223d694d6d838ca11d9617f23b0aa2d21f2e5 (commit)
from 762b3a4c2246ac817da7bac7ccb78889f117ca93 (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=408223d694d6d838ca11d9617f23b0aa2d21f2e5
commit 408223d694d6d838ca11d9617f23b0aa2d21f2e5
Author: Arnold D. Robbins <address@hidden>
Date: Fri May 4 14:50:03 2012 +0300
Work around Tandem define.
diff --git a/ChangeLog b/ChangeLog
index 41196c0..7ce24b5 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -3,6 +3,10 @@
* getopt.c [DJGPP]: Change to __DJGPP__.
* mbsupport.h [DJGPP]: Change to __DJGPP__.
+ Unrelated:
+
+ * awk.h: Workarounds for _TANDEM_SOURCE.
+
2012-05-01 Arnold D. Robbins <address@hidden>
* dfa.c: Sync with GNU grep. RRI code now there, needed additional
diff --git a/awk.h b/awk.h
index 3574e58..8907261 100644
--- a/awk.h
+++ b/awk.h
@@ -30,6 +30,15 @@
* any system headers. Otherwise, extreme death, destruction
* and loss of life results.
*/
+#if defined(_TANDEM_SOURCE)
+/*
+ * config.h forces this even on non-tandem systems but it
+ * causes problems elsewhere if used in the check below.
+ * so workaround it. bleah.
+ */
+#define tandem_for_real 1
+#endif
+
#ifdef HAVE_CONFIG_H
#include <config.h>
#endif
@@ -38,7 +47,7 @@
#define _GNU_SOURCE 1 /* enable GNU extensions */
#endif /* _GNU_SOURCE */
-#if defined(_TANDEM_SOURCE) && ! defined(_SCO_DS)
+#if defined(tandem_for_real) && ! defined(_SCO_DS)
#define _XOPEN_SOURCE_EXTENDED 1
#endif
-----------------------------------------------------------------------
Summary of changes:
ChangeLog | 4 ++++
awk.h | 11 ++++++++++-
2 files changed, 14 insertions(+), 1 deletions(-)
hooks/post-receive
--
gawk
[Prev in Thread] |
Current Thread |
[Next in Thread] |
- [gawk-diffs] [SCM] gawk branch, gawk-4.0-stable, updated. 408223d694d6d838ca11d9617f23b0aa2d21f2e5,
Arnold Robbins <=