gawk-diffs
[Top][All Lists]
Advanced

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

[gawk-diffs] [SCM] gawk branch, master, updated. gawk-4.1.0-2729-g823646


From: Eli Zaretskii
Subject: [gawk-diffs] [SCM] gawk branch, master, updated. gawk-4.1.0-2729-g823646b
Date: Fri, 18 Aug 2017 09:01:54 -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, master has been updated
       via  823646bc0644fbb09b90ba7f7f585eec704ac758 (commit)
      from  d9ca11d809e13dfab2c41ef51eb5007c05bb3987 (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=823646bc0644fbb09b90ba7f7f585eec704ac758

commit 823646bc0644fbb09b90ba7f7f585eec704ac758
Author: Eli Zaretskii <address@hidden>
Date:   Fri Aug 18 16:01:09 2017 +0300

    Fix the MinGW build.

diff --git a/pc/ChangeLog b/pc/ChangeLog
index a01e1ef..a4920ab 100644
--- a/pc/ChangeLog
+++ b/pc/ChangeLog
@@ -1,3 +1,8 @@
+2017-08-18  Eli Zaretskii  <address@hidden>
+
+       * config.h (HAVE_SYS_IOCTL_H):
+       * config.sed (HAVE_SYS_IOCTL_H): Do not define for MinGW.
+
 2017-08-16         Arnold D. Robbins     <address@hidden>
 
        * config.h: Regenerated in preparation for release.
diff --git a/pc/config.h b/pc/config.h
index c6e4a1f..e0f2cba 100644
--- a/pc/config.h
+++ b/pc/config.h
@@ -315,7 +315,7 @@
 #define HAVE_SYSTEM 1
 
 /* Define to 1 if you have the <sys/ioctl.h> header file. */
-#if defined(__MINGW32__) || defined(__DJGPP__)
+#ifdef __DJGPP__
 #define HAVE_SYS_IOCTL_H 1
 #endif
 
diff --git a/pc/config.sed b/pc/config.sed
index 8eced74..6498c07 100644
--- a/pc/config.sed
+++ b/pc/config.sed
@@ -188,7 +188,7 @@ s/^#undef HAVE_STRTOD *$/#define HAVE_STRTOD 1/
 #define HAVE_STRUCT_STAT_ST_BLKSIZE 1\
 #endif
 /^#undef HAVE_SYS_IOCTL_H *$/c\
-#if defined(__MINGW32__) || defined(__DJGPP__)\
+#ifdef __DJGPP__\
 #define HAVE_SYS_IOCTL_H 1\
 #endif
 s/^#undef HAVE_SYSTEM *$/#define HAVE_SYSTEM 1/

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

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


hooks/post-receive
-- 
gawk



reply via email to

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