gawk-diffs
[Top][All Lists]
Advanced

[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-303


From: Eli Zaretskii
Subject: [gawk-diffs] [SCM] gawk branch, gawk-4.2-stable, updated. gawk-4.1.0-3037-g81f53c0
Date: Sat, 8 Sep 2018 13:06:11 -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  81f53c08b12ba4150e02a2dcb647d8176570fca1 (commit)
      from  48c8fc07cc35539aa171116d0b77a6a47336b6fe (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=81f53c08b12ba4150e02a2dcb647d8176570fca1

commit 81f53c08b12ba4150e02a2dcb647d8176570fca1
Author: Eli Zaretskii <address@hidden>
Date:   Sat Sep 8 20:05:37 2018 +0300

    Fix the MinGW build.

diff --git a/pc/ChangeLog b/pc/ChangeLog
index 834aede..f28257e 100644
--- a/pc/ChangeLog
+++ b/pc/ChangeLog
@@ -1,3 +1,8 @@
+2018-09-08  Eli Zaretskii  <address@hidden>
+
+       * config.sed (_GNU_SOURCE) [__MINGW32__]: Define to 1.
+       * config.h: Regenerate.
+
 2018-08-04  Eli Zaretskii  <address@hidden>
 
        * gawkmisc.pc (nl_langinfo) [__MINGW32__]: New function
diff --git a/pc/config.h b/pc/config.h
index 64ad9f9..7797251 100644
--- a/pc/config.h
+++ b/pc/config.h
@@ -510,6 +510,10 @@
 /* force use of our version of strftime */
 #undef USE_INCLUDED_STRFTIME
 
+/* This is required to compile Gnulib regex code.  */
+#ifdef __MINGW32__
+#define _GNU_SOURCE 1
+#endif
 /* Enable extensions on AIX 3, Interix.  */
 #ifndef _ALL_SOURCE
 # undef _ALL_SOURCE
diff --git a/pc/config.sed b/pc/config.sed
index 75ad089..840feab 100644
--- a/pc/config.sed
+++ b/pc/config.sed
@@ -299,6 +299,12 @@ s/^#undef TIME_WITH_SYS_TIME *$/#define TIME_WITH_SYS_TIME 
1/
 #define inline __inline__\
 #endif
 
+/^\/\* Enable extensions on AIX 3, Interix.  \*\//i\
+/* This is required to compile Gnulib regex code.  */\
+#ifdef __MINGW32__\
+#define _GNU_SOURCE 1\
+#endif
+
 s|^#undef PACKAGE_URL *$|#define PACKAGE_URL 
"http://www.gnu.org/software/gawk/";|
 
 $a\

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

Summary of changes:
 pc/ChangeLog  | 5 +++++
 pc/config.h   | 4 ++++
 pc/config.sed | 6 ++++++
 3 files changed, 15 insertions(+)


hooks/post-receive
-- 
gawk



reply via email to

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