diff --git a/ChangeLog b/ChangeLog index 6c1cb4c63..9b9b8cfce 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,8 @@ +2004-08-27 Kevin Ryde + + * configure.in (AC_CHECK_MEMBERS): Add struct sockaddr.sin_len and + struct sockaddr_in6.sin6_len. Reported by Michael Tuexen. + 2004-08-10 Kevin Ryde * configure.in (AC_CHECK_FUNCS): Add unsetenv and _NSGetEnviron. diff --git a/libguile/ChangeLog b/libguile/ChangeLog index 472c271c8..e87e795a3 100644 --- a/libguile/ChangeLog +++ b/libguile/ChangeLog @@ -1,3 +1,9 @@ +2004-08-27 Kevin Ryde + + * socket.c (scm_fill_sockaddr): Use HAVE_STRUCT_SOCKADDR_SIN_LEN and + HAVE_STRUCT_SOCKADDR_IN6_SIN6_LEN for sockaddr fields, SIN_LEN and + SIN_LEN6 are not defined on all systems. Reported by Michael Tuexen. + 2004-08-18 Kevin Ryde * socket.c (scm_init_socket): Add SOCK_SEQPACKET and SOCK_RDM. diff --git a/test-suite/ChangeLog b/test-suite/ChangeLog index b39f5aba5..a57a61c67 100644 --- a/test-suite/ChangeLog +++ b/test-suite/ChangeLog @@ -1,3 +1,7 @@ +2004-08-27 Kevin Ryde + + * tests/regexp.test (regexp-quote): New tests. + 2004-08-25 Kevin Ryde * and-let-star.scm (and-let*): Give #t for an empty body, per srfi-2