gawk-diffs
[Top][All Lists]
Advanced

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

[gawk-diffs] [SCM] gawk branch, porting, updated. gawk-4.1.0-3690-g0e65b


From: Arnold Robbins
Subject: [gawk-diffs] [SCM] gawk branch, porting, updated. gawk-4.1.0-3690-g0e65b67
Date: Fri, 22 Mar 2019 02:30:17 -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, porting has been updated
       via  0e65b67b0dc50b9f33b3d685fc82d06114d1540b (commit)
       via  3510ab932e96a7db33c090b2083bb9ca637e2480 (commit)
       via  8836b79a2c357c5a655cae2537cc184ae6fe6bbb (commit)
      from  3b6704e4cb13631186e5bd999e842dff34874a02 (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=0e65b67b0dc50b9f33b3d685fc82d06114d1540b

commit 0e65b67b0dc50b9f33b3d685fc82d06114d1540b
Author: Arnold D. Robbins <address@hidden>
Date:   Fri Mar 22 08:30:05 2019 +0200

    More solaris fixes we hope.

diff --git a/extension/ChangeLog b/extension/ChangeLog
index 0efb9b9..b860cd4 100644
--- a/extension/ChangeLog
+++ b/extension/ChangeLog
@@ -1,3 +1,7 @@
+2019-03-22         Arnold D. Robbins     <address@hidden>
+
+       * inplace.c (_XOPEN_SOURCE): Define to 700 only on Solaris.
+
 2019-03-17         Arnold D. Robbins     <address@hidden>
 
        * inplace.c (_XOPEN_SOURCE): Define to 500 so will build
diff --git a/extension/inplace.c b/extension/inplace.c
index 22d942f..b2d0b57 100644
--- a/extension/inplace.c
+++ b/extension/inplace.c
@@ -27,9 +27,15 @@
 #include <config.h>
 #endif
 
+#if defined(__sun)
+# undef _XOPEN_SOURCE
+# define _XOPEN_SOURCE 700
+#else
 #ifndef _XOPEN_SOURCE
-# define _XOPEN_SOURCE 500     /* minimum level, esp. for Solaris */
+# define _XOPEN_SOURCE 1
 #endif
+#endif
+
 #ifndef _XOPEN_SOURCE_EXTENDED
 # define _XOPEN_SOURCE_EXTENDED 1
 #endif

http://git.sv.gnu.org/cgit/gawk.git/commit/?id=3510ab932e96a7db33c090b2083bb9ca637e2480

commit 3510ab932e96a7db33c090b2083bb9ca637e2480
Merge: 3b6704e 8836b79
Author: Arnold D. Robbins <address@hidden>
Date:   Fri Mar 22 08:26:45 2019 +0200

    Merge branch 'master' into porting


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

Summary of changes:
 extension/ChangeLog |   4 ++++
 extension/inplace.c |   8 +++++++-
 po/ko.gmo           | Bin 0 -> 95090 bytes
 3 files changed, 11 insertions(+), 1 deletion(-)
 create mode 100644 po/ko.gmo


hooks/post-receive
-- 
gawk



reply via email to

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