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-3687-g3b670


From: Arnold Robbins
Subject: [gawk-diffs] [SCM] gawk branch, porting, updated. gawk-4.1.0-3687-g3b6704e
Date: Sun, 17 Mar 2019 14:14:57 -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  3b6704e4cb13631186e5bd999e842dff34874a02 (commit)
      from  f961cdf2b5f7392cc1ced4ea0c13510792151e64 (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=3b6704e4cb13631186e5bd999e842dff34874a02

commit 3b6704e4cb13631186e5bd999e842dff34874a02
Author: Arnold D. Robbins <address@hidden>
Date:   Sun Mar 17 20:14:36 2019 +0200

    Fix inplace.c compile on recent Solaris.

diff --git a/extension/ChangeLog b/extension/ChangeLog
index 3f19c4a..0efb9b9 100644
--- a/extension/ChangeLog
+++ b/extension/ChangeLog
@@ -1,5 +1,10 @@
 2019-03-17         Arnold D. Robbins     <address@hidden>
 
+       * inplace.c (_XOPEN_SOURCE): Define to 500 so will build
+       on Solaris.
+
+2019-03-17         Arnold D. Robbins     <address@hidden>
+
        * readdir.c: Change to use stat when dir info is 'u'. Bump version.
        * readdir_test.c: Ditto.
        * readdir.3am: Document same.
diff --git a/extension/inplace.c b/extension/inplace.c
index dea65f6..22d942f 100644
--- a/extension/inplace.c
+++ b/extension/inplace.c
@@ -3,7 +3,7 @@
  */
 
 /*
- * Copyright (C) 2013-2015, 2017, 2018, the Free Software Foundation, Inc.
+ * Copyright (C) 2013-2015, 2017, 2018, 2019 the Free Software Foundation, Inc.
  *
  * This file is part of GAWK, the GNU implementation of the
  * AWK Programming Language.
@@ -28,7 +28,7 @@
 #endif
 
 #ifndef _XOPEN_SOURCE
-# define _XOPEN_SOURCE 1
+# define _XOPEN_SOURCE 500     /* minimum level, esp. for Solaris */
 #endif
 #ifndef _XOPEN_SOURCE_EXTENDED
 # define _XOPEN_SOURCE_EXTENDED 1

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

Summary of changes:
 extension/ChangeLog | 5 +++++
 extension/inplace.c | 4 ++--
 2 files changed, 7 insertions(+), 2 deletions(-)


hooks/post-receive
-- 
gawk



reply via email to

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