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.7-342-gfff92


From: Ludovic Courtès
Subject: [Guile-commits] GNU Guile branch, stable-2.0, updated. v2.0.7-342-gfff92ff
Date: Tue, 09 Apr 2013 22:25:52 +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=fff92ff309075ed599a07a2e9378a0ed587ce073

The branch, stable-2.0 has been updated
       via  fff92ff309075ed599a07a2e9378a0ed587ce073 (commit)
       via  486a456d4d456f712ca9bb7b63cd58aadbaef536 (commit)
      from  47ad34fad6d79c93e1d1a213641c747ba05a3ef6 (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 fff92ff309075ed599a07a2e9378a0ed587ce073
Author: Ludovic Courtès <address@hidden>
Date:   Wed Apr 10 00:13:54 2013 +0200

    stime: Remove #ifdef HAVE_*_H for headers provided by Gnulib.
    
    * libguile/stime.c: Remove #ifdef HAVE_SYS_TIMES_H, HAVE_SYS_TYPES_H,
      and HAVE_STRING_H since those headers are always provided by Gnulib
      when the corresponding macro is undefined.  Fixes a regression on
      MinGW introduced by commit 40e2a31.

commit 486a456d4d456f712ca9bb7b63cd58aadbaef536
Author: Ludovic Courtès <address@hidden>
Date:   Wed Apr 10 00:10:23 2013 +0200

    Make `build-aux/gendocs.sh' executable.

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

Summary of changes:
 libguile/stime.c     |   12 ++----------
 1 files changed, 2 insertions(+), 10 deletions(-)
 mode change 100644 => 100755 build-aux/gendocs.sh

diff --git a/build-aux/gendocs.sh b/build-aux/gendocs.sh
old mode 100644
new mode 100755
diff --git a/libguile/stime.c b/libguile/stime.c
index 7c0ed24..78539d9 100644
--- a/libguile/stime.c
+++ b/libguile/stime.c
@@ -68,17 +68,9 @@
 # include <time.h>
 #endif
 
-#ifdef HAVE_SYS_TYPES_H
-# include <sys/types.h>
-#endif
-
-#ifdef HAVE_STRING_H
+#include <sys/types.h>
 #include <string.h>
-#endif
-
-#ifdef HAVE_SYS_TIMES_H
-# include <sys/times.h>
-#endif
+#include <sys/times.h>
 
 #ifdef HAVE_SYS_TIMEB_H
 # include <sys/timeb.h>


hooks/post-receive
-- 
GNU Guile



reply via email to

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