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-41-


From: Eli Zaretskii
Subject: [gawk-diffs] [SCM] gawk branch, gawk-4.1-stable, updated. gawk-4.1.0-41-gab24096
Date: Mon, 24 Jun 2013 16:35:14 +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  ab2409635268791a2696d864251590672f4954b4 (commit)
      from  51e2a881f78f6bddf749594e64c84fff9b23b5e0 (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=ab2409635268791a2696d864251590672f4954b4

commit ab2409635268791a2696d864251590672f4954b4
Author: Eli Zaretskii <address@hidden>
Date:   Mon Jun 24 19:34:04 2013 +0300

    Fix inconsistency in system vs pipes in non-socket Windows builds.
    
     io.c: Move #include "popen.h" out of the HAVE_SOCKETS condition,
     as this is needed for non-sockets builds as well.  See
     http://lists.gnu.org/archive/html/bug-gawk/2013-06/msg00014.html
     for the details of the problem this caused.

diff --git a/ChangeLog b/ChangeLog
index 21c5963..ea96384 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,10 @@
+2013-06-24  Eli Zaretskii  <address@hidden>
+
+       * io.c: Move #include "popen.h" out of the HAVE_SOCKETS condition,
+       as this is needed for non-sockets builds as well.  See
+       http://lists.gnu.org/archive/html/bug-gawk/2013-06/msg00014.html
+       for the details of the problem this caused.
+
 2013-06-15         Arnold D. Robbins     <address@hidden>
 
        * io.c: Add ifdefs for VMS so that it will compile again.
diff --git a/io.c b/io.c
index dad7c7b..dc41aea 100644
--- a/io.c
+++ b/io.c
@@ -76,10 +76,6 @@
 #include <netdb.h>
 #endif /* HAVE_NETDB_H */
 
-#if defined(HAVE_POPEN_H)
-#include "popen.h"
-#endif
-
 #ifndef HAVE_GETADDRINFO
 #include "missing_d/getaddrinfo.h"
 #endif
@@ -108,6 +104,10 @@
 #include <limits.h>
 #endif
 
+#if defined(HAVE_POPEN_H)
+#include "popen.h"
+#endif
+
 #ifdef __EMX__
 #include <process.h>
 #endif

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

Summary of changes:
 ChangeLog |    7 +++++++
 io.c      |    8 ++++----
 2 files changed, 11 insertions(+), 4 deletions(-)


hooks/post-receive
-- 
gawk



reply via email to

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