guile-commits
[Top][All Lists]
Advanced

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

[Guile-commits] GNU Guile branch, master, updated. release_1-9-7-82-g691


From: Ludovic Courtès
Subject: [Guile-commits] GNU Guile branch, master, updated. release_1-9-7-82-g691b9ec
Date: Wed, 17 Feb 2010 00:14:35 +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=691b9ec196203fa5d6da3530d5355b2f73e707d1

The branch, master has been updated
       via  691b9ec196203fa5d6da3530d5355b2f73e707d1 (commit)
      from  dbd9532e89d8aaed76fbaaa3a11388f6a4e9aefe (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 691b9ec196203fa5d6da3530d5355b2f73e707d1
Author: Ludovic Courtès <address@hidden>
Date:   Wed Feb 17 01:14:26 2010 +0100

    getaddrinfo: Define macros lacking in NetBSD 5.0.
    
    * libguile/net_db.c (AI_ALL, AI_V4MAPPED, AI_ADDRCONFIG): New
      macros, when not already defined.

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

Summary of changes:
 libguile/net_db.c |   11 +++++++++++
 1 files changed, 11 insertions(+), 0 deletions(-)

diff --git a/libguile/net_db.c b/libguile/net_db.c
index bcba18e..eb0c4c3 100644
--- a/libguile/net_db.c
+++ b/libguile/net_db.c
@@ -73,6 +73,17 @@ extern int h_errno;
 extern const char *hstrerror (int);
 #endif
 
+/* NetBSD 5.0 lacks the following flags.  */
+#ifndef AI_ALL
+# define AI_ALL 0
+#endif
+#ifndef AI_V4MAPPED
+# define AI_V4MAPPED 0
+#endif
+#ifndef AI_ADDRCONFIG
+# define AI_ADDRCONFIG 0
+#endif
+
 
 
 SCM_SYMBOL (scm_host_not_found_key, "host-not-found");


hooks/post-receive
-- 
GNU Guile




reply via email to

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