[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-284
From: |
Arnold Robbins |
Subject: |
[gawk-diffs] [SCM] gawk branch, gawk-4.2-stable, updated. gawk-4.1.0-2844-ge93e34a |
Date: |
Tue, 5 Dec 2017 14:21:02 -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, gawk-4.2-stable has been updated
via e93e34a5aabc3a4fcca4b4d6e59aaca91c33d326 (commit)
from fb44529bfa05b9c05cc2edd49566db1b3a37ca54 (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=e93e34a5aabc3a4fcca4b4d6e59aaca91c33d326
commit e93e34a5aabc3a4fcca4b4d6e59aaca91c33d326
Author: Arnold D. Robbins <address@hidden>
Date: Tue Dec 5 21:20:19 2017 +0200
Define __USE_GNU in support/regex.h.
diff --git a/support/ChangeLog b/support/ChangeLog
index a4520ec..d580505 100644
--- a/support/ChangeLog
+++ b/support/ChangeLog
@@ -1,3 +1,7 @@
+2017-12-05 Arnold D. Robbins <address@hidden>
+
+ * regex.h: Yes define __USE_GNU. Needed for non-GLIBC systems.
+
2017-12-01 Arnold D. Robbins <address@hidden>
* intprops.h: Sync with GNULIB.
diff --git a/support/regex.h b/support/regex.h
index 1bbbb26..adddd9e 100644
--- a/support/regex.h
+++ b/support/regex.h
@@ -28,6 +28,10 @@
#include <sys/types.h>
#endif
+#ifndef _LIBC
+#define __USE_GNU 1
+#endif
+
/* Allow the use in C++ code. */
#ifdef __cplusplus
extern "C" {
-----------------------------------------------------------------------
Summary of changes:
support/ChangeLog | 4 ++++
support/regex.h | 4 ++++
2 files changed, 8 insertions(+)
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-2844-ge93e34a,
Arnold Robbins <=