guile-cvs
[Top][All Lists]
Advanced

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

guile/guile-core/libguile ChangeLog net_db.c


From: Gary Houston
Subject: guile/guile-core/libguile ChangeLog net_db.c
Date: Sun, 18 Mar 2001 03:54:26 -0800

CVSROOT:        /cvs
Module name:    guile
Changes by:     Gary Houston <address@hidden>   01/03/18 03:54:25

Modified files:
        guile-core/libguile: ChangeLog net_db.c 

Log message:
        * net_db.c: define h_errno if configure didn't define HAVE_H_ERRNO.
        normally it would be found in netdb.h.

CVSWeb URLs:
http://subversions.gnu.org/cgi-bin/cvsweb/guile/guile-core/libguile/ChangeLog.diff?r1=1.1330&r2=1.1331
http://subversions.gnu.org/cgi-bin/cvsweb/guile/guile-core/libguile/net_db.c.diff?r1=1.54&r2=1.55

Patches:
Index: guile/guile-core/libguile/ChangeLog
diff -u guile/guile-core/libguile/ChangeLog:1.1330 
guile/guile-core/libguile/ChangeLog:1.1331
--- guile/guile-core/libguile/ChangeLog:1.1330  Sat Mar 17 13:20:19 2001
+++ guile/guile-core/libguile/ChangeLog Sun Mar 18 03:54:25 2001
@@ -1,3 +1,8 @@
+2001-03-18  Gary Houston  <address@hidden>
+
+       * net_db.c: declare h_errno if configure didn't define HAVE_H_ERRNO.
+       normally it would be found in netdb.h.
+
 2001-03-17  Gary Houston  <address@hidden>
 
        * sort.c (scm_sort): move sortvec variable to avoid a compiler
Index: guile/guile-core/libguile/net_db.c
diff -u guile/guile-core/libguile/net_db.c:1.54 
guile/guile-core/libguile/net_db.c:1.55
--- guile/guile-core/libguile/net_db.c:1.54     Sun Mar 11 01:44:08 2001
+++ guile/guile-core/libguile/net_db.c  Sun Mar 18 03:54:25 2001
@@ -78,7 +78,13 @@
 #endif /* STDC_HEADERS */
 
 #ifndef HAVE_INET_ATON
+/* for our definition in inet_aton.c, not usually needed.  */
 extern int inet_aton ();
+#endif
+
+#ifndef HAVE_H_ERRNO
+/* h_errno not found in netdb.h, maybe this will help.  */
+extern int h_errno;
 #endif
 
 SCM_DEFINE (scm_inet_aton, "inet-aton", 1, 0, 0, 



reply via email to

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