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.5-12-gbb796c


From: Ludovic Courtès
Subject: [Guile-commits] GNU Guile branch, stable-2.0, updated. v2.0.5-12-gbb796c4
Date: Thu, 02 Feb 2012 20:58:08 +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=bb796c463022df11149549beb598efde2b671e37

The branch, stable-2.0 has been updated
       via  bb796c463022df11149549beb598efde2b671e37 (commit)
      from  8d1544f66e20f191d3082cf0b0cb34bd8eff0ee1 (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 bb796c463022df11149549beb598efde2b671e37
Author: Ludovic Courtès <address@hidden>
Date:   Thu Feb 2 21:58:04 2012 +0100

    Fix `SCM_I_ERROR' definition for MinGW without networking.
    
    * libguile/error.c (SCM_I_ERROR)[__MINGW32__]: Conditionalize on
      `HAVE_NETWORKING'.

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

Summary of changes:
 libguile/error.c |    7 ++++---
 1 files changed, 4 insertions(+), 3 deletions(-)

diff --git a/libguile/error.c b/libguile/error.c
index b4ed7d0..790ed05 100644
--- a/libguile/error.c
+++ b/libguile/error.c
@@ -1,5 +1,6 @@
-/* Copyright (C) 1995,1996,1997,1998,2000,2001, 2004, 2006, 2010 Free Software 
Foundation, Inc.
- * 
+/* Copyright (C) 1995, 1996, 1997, 1998, 2000, 2001, 2004, 2006, 2010,
+ *   2012 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
  * as published by the Free Software Foundation; either version 3 of
@@ -99,7 +100,7 @@ SCM_DEFINE (scm_error_scm, "scm-error", 5, 0, 0,
 }
 #undef FUNC_NAME
 
-#ifdef __MINGW32__
+#if defined __MINGW32__ && defined HAVE_NETWORKING
 # include "win32-socket.h"
 # define SCM_I_STRERROR(err) \
     ((err >= WSABASEERR) ? scm_i_socket_strerror (err) : strerror (err))


hooks/post-receive
-- 
GNU Guile



reply via email to

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