guile-commits
[Top][All Lists]
Advanced

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

[Guile-commits] GNU Guile branch, stable-2.0, updated. v2.0.7-112-gf5ea5


From: Andy Wingo
Subject: [Guile-commits] GNU Guile branch, stable-2.0, updated. v2.0.7-112-gf5ea559
Date: Wed, 20 Feb 2013 21:57:19 +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 "GNU Guile".

http://git.savannah.gnu.org/cgit/guile.git/commit/?id=f5ea559aa04186534ea6771e3c15d5201fe85c67

The branch, stable-2.0 has been updated
       via  f5ea559aa04186534ea6771e3c15d5201fe85c67 (commit)
       via  0e4288608896eeda4ad6f18cfe91d45be7c87c35 (commit)
      from  90f51aba0d2b28ac4819f8800f2dcf8d67edbd28 (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 -----------------------------------------------------------------
commit f5ea559aa04186534ea6771e3c15d5201fe85c67
Author: Andy Wingo <address@hidden>
Date:   Wed Feb 20 22:57:02 2013 +0100

    net_db.c doesn't import winsock2.h
    
    * libguile/net_db.c: Don't include winsock2.h; gnulib handles this for
      us as necessary.

commit 0e4288608896eeda4ad6f18cfe91d45be7c87c35
Author: Andy Wingo <address@hidden>
Date:   Wed Feb 20 21:20:55 2013 +0100

    mkstemp uses O_BINARY
    
    * libguile/mkstemp.c (mkstemp): Add O_BINARY.  Since temp files are
      empty at the beginning, we're not changing the behavior for reading
      files.  For writing files `newline' and ~% can add \r elements as
      needed.  So this is a reasonable thing to do, and it prevents mangling
      of temp files for the compiler.

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

Summary of changes:
 libguile/mkstemp.c |    4 ++--
 libguile/net_db.c  |    6 +-----
 2 files changed, 3 insertions(+), 7 deletions(-)

diff --git a/libguile/mkstemp.c b/libguile/mkstemp.c
index 6a573c6..a7eaf10 100644
--- a/libguile/mkstemp.c
+++ b/libguile/mkstemp.c
@@ -1,4 +1,4 @@
-/* Copyright (C) 1991, 1992, 1996, 1998, 2001, 2006 Free Software Foundation, 
Inc.
+/* Copyright (C) 1991, 1992, 1996, 1998, 2001, 2006, 2013 Free Software 
Foundation, Inc.
    This file is derived from mkstemps.c from the GNU Libiberty Library
    which in turn is derived from the GNU C Library.
 
@@ -112,7 +112,7 @@ mkstemp (template)
       v /= 62;
       XXXXXX[5] = letters[v % 62];
 
-      fd = open (template, O_RDWR|O_CREAT|O_EXCL, 0600);
+      fd = open (template, O_RDWR|O_CREAT|O_EXCL|O_BINARY, 0600);
       if (fd >= 0)
        /* The file does not exist.  */
        return fd;
diff --git a/libguile/net_db.c b/libguile/net_db.c
index 4d63aab..8dccb72 100644
--- a/libguile/net_db.c
+++ b/libguile/net_db.c
@@ -1,6 +1,6 @@
 /* "net_db.c" network database support
  * Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2006, 2009,
- *   2010, 2011, 2012 Free Software Foundation, Inc.
+ *   2010, 2011, 2012, 2013 Free Software Foundation, Inc.
  *
  * This library is free software; you can redistribute it and/or
  * modify it under the terms of the GNU Lesser General Public License
@@ -50,14 +50,10 @@
 
 #include <sys/types.h>
 
-#ifdef HAVE_WINSOCK2_H
-#include <winsock2.h>
-#else
 #include <sys/socket.h>
 #include <netdb.h>
 #include <netinet/in.h>
 #include <arpa/inet.h>
-#endif
 
 #ifdef __MINGW32__
 #include "win32-socket.h"


hooks/post-receive
-- 
GNU Guile



reply via email to

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