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-0-40-g537


From: Ludovic Courtès
Subject: [Guile-commits] GNU Guile branch, master, updated. release_1-9-0-40-g5374ec9
Date: Sun, 05 Jul 2009 21:46:55 +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=5374ec9c281c2e77c283f60afd55e47d86e3b898

The branch, master has been updated
       via  5374ec9c281c2e77c283f60afd55e47d86e3b898 (commit)
       via  9120012f74a798064dd296d99afdc02608e305e5 (commit)
       via  345b17e911a136775a901c234b8cee95d490845c (commit)
      from  7c957b8657a510395fc451ae4a8e7e3fe5a643ad (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 5374ec9c281c2e77c283f60afd55e47d86e3b898
Author: Ludovic Courtès <address@hidden>
Date:   Sun Jul 5 22:19:30 2009 +0200

    Update `NEWS'.
    
    * NEWS: Update.

commit 9120012f74a798064dd296d99afdc02608e305e5
Author: Ludovic Courtès <address@hidden>
Date:   Sun Jul 5 21:13:51 2009 +0200

    Enclose `bit-operations.test' in its own module.
    
    * test-suite/tests/bit-operations.test: Use the `define-module' clause.

commit 345b17e911a136775a901c234b8cee95d490845c
Author: Ludovic Courtès <address@hidden>
Date:   Sun Jul 5 21:10:35 2009 +0200

    Fix the `BUILD_PTHREAD_SUPPORT' Automake conditional when not using pthread.
    
    * configure.in: Set $build_pthread_support to "no" when thread support
      isn't built.  This fixes the `BUILD_PTHREAD_SUPPORT' Automake
      conditional.

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

Summary of changes:
 NEWS                                 |    1 +
 configure.in                         |   11 ++++++-----
 test-suite/tests/bit-operations.test |    7 ++++---
 3 files changed, 11 insertions(+), 8 deletions(-)

diff --git a/NEWS b/NEWS
index a33c490..36d36cb 100644
--- a/NEWS
+++ b/NEWS
@@ -557,6 +557,7 @@ Changes in 1.8.7 (since 1.8.6)
 ** Fix build problem when scm_t_timespec is different from struct timespec
 ** Fix build when compiled with -Wundef -Werror
 ** More build fixes for `alphaev56-dec-osf5.1b' (Tru64)
+** Build fixes for `powerpc-ibm-aix5.3.0.0' (AIX 5.3)
 ** With GCC, always compile with `-mieee' on `alpha*' and `sh*'
 ** Better diagnose broken `(strftime "%z" ...)' in `time.test' (bug #24130)
 ** Fix parsing of SRFI-88/postfix keywords longer than 128 characters
diff --git a/configure.in b/configure.in
index 73fc153..53049eb 100644
--- a/configure.in
+++ b/configure.in
@@ -1246,11 +1246,12 @@ case "$with_threads" in
 
     build_pthread_support="yes"
 
-    ACX_PTHREAD(CC="$PTHREAD_CC"
-      LIBS="$PTHREAD_LIBS $LIBS"
-      SCM_I_GSC_USE_PTHREAD_THREADS=1
-      with_threads="pthreads",
-      with_threads="null")
+    ACX_PTHREAD([CC="$PTHREAD_CC"
+       LIBS="$PTHREAD_LIBS $LIBS"
+       SCM_I_GSC_USE_PTHREAD_THREADS=1
+       with_threads="pthreads"],
+      [with_threads="null"
+       build_pthread_support="no"])
 
     old_CFLAGS="$CFLAGS"
     CFLAGS="$PTHREAD_CFLAGS $CFLAGS"
diff --git a/test-suite/tests/bit-operations.test 
b/test-suite/tests/bit-operations.test
index 8815dc6..0e9df7d 100644
--- a/test-suite/tests/bit-operations.test
+++ b/test-suite/tests/bit-operations.test
@@ -1,5 +1,5 @@
 ;;;; bit-operations.test --- bitwise operations on numbers -*- scheme -*-
-;;;; Copyright (C) 2000, 2001, 2003, 2006 Free Software Foundation, Inc.
+;;;; Copyright (C) 2000, 2001, 2003, 2006, 2009 Free Software Foundation, Inc.
 ;;;;
 ;;;; This library is free software; you can redistribute it and/or
 ;;;; modify it under the terms of the GNU Lesser General Public
@@ -15,8 +15,9 @@
 ;;;; License along with this library; if not, write to the Free Software
 ;;;; Foundation, Inc., 51 Franklin Street, Fifth Floor, Boston, MA 02110-1301 
USA
 
-(use-modules (test-suite lib)
-            (ice-9 documentation))
+(define-module (test-bit-operations)
+  :use-module (test-suite lib)
+  :use-module (ice-9 documentation))
 
 
 ;;;


hooks/post-receive
-- 
GNU Guile




reply via email to

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