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.1-stable, updated. gawk-4.1.0-868


From: Eli Zaretskii
Subject: [gawk-diffs] [SCM] gawk branch, gawk-4.1-stable, updated. gawk-4.1.0-868-g22b5f08
Date: Sat, 16 Apr 2016 11:05:16 +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.1-stable has been updated
       via  22b5f089beded6b50a442259a8e9595869b61f59 (commit)
      from  693ca0a2c40ebfdc73f29a5696a4b0d3de0c71dc (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=22b5f089beded6b50a442259a8e9595869b61f59

commit 22b5f089beded6b50a442259a8e9595869b61f59
Author: Eli Zaretskii <address@hidden>
Date:   Sat Apr 16 14:04:27 2016 +0300

    Fix the DJGPP build.

diff --git a/pc/ChangeLog b/pc/ChangeLog
index b8490aa..ead8cf7 100644
--- a/pc/ChangeLog
+++ b/pc/ChangeLog
@@ -1,3 +1,8 @@
+2016-04-16  Eli Zaretskii  <address@hidden>
+
+       * config.sed (HAVE_BTOWC): Now unconditionally defined to 1.
+       (HAVE_SYS_WAIT_H): Define to 1 for DJGPP.
+
 2016-04-08  Eli Zaretskii  <address@hidden>
 
        * Makefile.tst (BASIC_TESTS, GAWK_EXT_TESTS): Add new tests.
diff --git a/pc/config.sed b/pc/config.sed
index 024abab..6d801e7 100644
--- a/pc/config.sed
+++ b/pc/config.sed
@@ -39,9 +39,7 @@ s/^#undef GETGROUPS_T *$/#define GETGROUPS_T gid_t/
 s/^#undef HAVE_ALARM *$/#define HAVE_ALARM 1/
 s/^#undef HAVE_ATEXIT *$/#define HAVE_ATEXIT 1/
 /^#undef HAVE_BTOWC *$/c\
-#ifdef _WIN32\
-#define HAVE_BTOWC 1\
-#endif
+#define HAVE_BTOWC 1
 /^#undef HAVE_DECL_TZNAME *$/c\
 #ifdef __MINGW32__\
 #define HAVE_DECL_TZNAME 1\
@@ -182,6 +180,10 @@ s/^#undef HAVE_SYSTEM *$/#define HAVE_SYSTEM 1/
 #define HAVE_SYS_TIME_H 1\
 #endif
 s/^#undef HAVE_SYS_TYPES_H *$/#define HAVE_SYS_TYPES_H 1/
+/^#undef HAVE_SYS_WAIT_H *$/c\
+#ifdef __DJGPP__\
+#define HAVE_SYS_WAIT_H 1\
+#endif
 /^#undef HAVE_TOWLOWER *$/c\
 #ifdef __MINGW32__\
 #define HAVE_TOWLOWER 1\

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

Summary of changes:
 pc/ChangeLog  |    5 +++++
 pc/config.sed |    8 +++++---
 2 files changed, 10 insertions(+), 3 deletions(-)


hooks/post-receive
-- 
gawk



reply via email to

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