guile-commits
[Top][All Lists]
Advanced

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

[Guile-commits] GNU Guile branch, branch_release-1-8, updated. release_1


From: Neil Jerram
Subject: [Guile-commits] GNU Guile branch, branch_release-1-8, updated. release_1-8-7-16-g5be63ee
Date: Fri, 26 Mar 2010 00:48:36 +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=5be63eea82be9ca8e5df650f27857c1a90bfd937

The branch, branch_release-1-8 has been updated
       via  5be63eea82be9ca8e5df650f27857c1a90bfd937 (commit)
      from  a0aa1e5b69d6ef0311aeea8e4b9a94eae18a1aaf (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 5be63eea82be9ca8e5df650f27857c1a90bfd937
Author: Neil Jerram <address@hidden>
Date:   Fri Mar 26 00:48:08 2010 +0000

    Interix build warning fix
    
    /bin/sh ../libtool --tag=CC --mode=compile gcc -DHAVE_CONFIG_H -I.. -I/src/g
    uile-1.8.6 -I.. -g -O2 -Wall -Wmissing-prototypes -Werror -MT filesys.lo 
-MD -
    MP -MF .deps/filesys.Tpo -c -o filesys.lo 
/src/guile-1.8.6/libguile/filesys.c
    libtool: compile: gcc -DHAVE_CONFIG_H -I.. -I/src/guile-1.8.6 -I.. -g -O2 
-Wall
    -Wmissing-prototypes -Werror -MT filesys.lo -MD -MP -MF .deps/filesys.Tpo 
-c /s
    rc/guile-1.8.6/libguile/filesys.c -DPIC -o .libs/filesys.o
    /src/guile-1.8.6/libguile/filesys.c: In function `scm_readdir':
    /src/guile-1.8.6/libguile/filesys.c:918: warning: implicit declaration of
    function `readdir_r'
    
    Report and fix provided by Jay Krell.
    
    * libguile/filesys.c: On Interix, define _REENTRANT in order to pick
      up readdir_r prototype.

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

Summary of changes:
 NEWS               |    1 +
 THANKS             |    1 +
 libguile/filesys.c |    3 +++
 3 files changed, 5 insertions(+), 0 deletions(-)

diff --git a/NEWS b/NEWS
index 7082960..564484f 100644
--- a/NEWS
+++ b/NEWS
@@ -15,6 +15,7 @@ Changes in 1.8.8 (since 1.8.7)
 ** Fix `wrong type arg' exceptions with IPv6 addresses
 ** Fix typos in `(srfi srfi-19)'
 ** Have `(srfi srfi-35)' provide named struct vtables
+** Fix some Interix build problems
 
 
 Changes in 1.8.7 (since 1.8.6)
diff --git a/THANKS b/THANKS
index 5cc88b3..48a105a 100644
--- a/THANKS
+++ b/THANKS
@@ -65,6 +65,7 @@ For fixes or providing information which led to a fix:
        Matthias Köppe
            Matt Kraai
          Daniel Kraft
+            Jay Krell
            Jeff Long
          Marco Maggi
         Gregory Marton
diff --git a/libguile/filesys.c b/libguile/filesys.c
index 70dfe15..c8acb13 100644
--- a/libguile/filesys.c
+++ b/libguile/filesys.c
@@ -23,6 +23,9 @@
 #ifdef __hpux
 #define _POSIX_C_SOURCE 199506L  /* for readdir_r */
 #endif
+#if defined(__INTERIX) && !defined(_REENTRANT)
+# define _REENTRANT   /* ask Interix for readdir_r prototype */
+#endif
 
 #ifdef HAVE_CONFIG_H
 #  include <config.h>


hooks/post-receive
-- 
GNU Guile




reply via email to

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