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-67-gac28db


From: Ludovic Courtès
Subject: [Guile-commits] GNU Guile branch, stable-2.0, updated. v2.0.7-67-gac28db6
Date: Mon, 28 Jan 2013 21:28:48 +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=ac28db6db12dbb7c43e3e2207d9607989d65bc6b

The branch, stable-2.0 has been updated
       via  ac28db6db12dbb7c43e3e2207d9607989d65bc6b (commit)
       via  aac01de63dfb44a442df8ae6920ee431ba81780e (commit)
      from  90baf8cdfe8ce356ee4720a012e0deb5a2cb5818 (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 ac28db6db12dbb7c43e3e2207d9607989d65bc6b
Author: Ludovic Courtès <address@hidden>
Date:   Mon Jan 28 22:28:00 2013 +0100

    build: Allow use of Automake 1.13.
    
    Fixes <http://bugs.gnu.org/13558>.
    Reported by DNS <address@hidden>.
    
    * configure.ac: Use the `serial-tests' Automake option to cope with
      Automake 1.13, which uses `parallel-tests' by default.

commit aac01de63dfb44a442df8ae6920ee431ba81780e
Author: Ludovic Courtès <address@hidden>
Date:   Mon Jan 28 21:54:21 2013 +0100

    Remove unneeded SMOB mark procedure in `memoize.c'.
    
    * libguile/memoize.c (scm_init_memoize): Remove unnecessary call to
      `scm_set_smob_mark'.

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

Summary of changes:
 .gitignore         |    2 ++
 configure.ac       |    7 +++++--
 libguile/memoize.c |    3 +--
 3 files changed, 8 insertions(+), 4 deletions(-)

diff --git a/.gitignore b/.gitignore
index 4ff958e..98ca125 100644
--- a/.gitignore
+++ b/.gitignore
@@ -150,3 +150,5 @@ INSTALL
 /lib/dirent.h
 /lib/langinfo.h
 /lib/wctype.h
+/build-aux/ar-lib
+/build-aux/test-driver
diff --git a/configure.ac b/configure.ac
index 783af3e..04c505e 100644
--- a/configure.ac
+++ b/configure.ac
@@ -5,7 +5,7 @@ dnl
 define(GUILE_CONFIGURE_COPYRIGHT,[[
 
 Copyright (C) 1998, 1999, 2000, 2001, 2002, 2003, 2004, 2005, 2006,
-  2007, 2008, 2009, 2010, 2011, 2012 Free Software Foundation, Inc.
+  2007, 2008, 2009, 2010, 2011, 2012, 2013 Free Software Foundation, Inc.
 
 This file is part of GUILE
 
@@ -36,7 +36,10 @@ AC_CONFIG_MACRO_DIR([m4])
 AC_CONFIG_SRCDIR(GUILE-VERSION)
 
 dnl `AM_PROG_AR' was introduced in Automake 1.11.2.
-AM_INIT_AUTOMAKE([1.11.2 gnu no-define -Wall -Wno-override color-tests 
dist-xz])
+dnl Use `serial-tests' so the output `check-guile' is not hidden
+dnl (`parallel-tests' is the default in Automake 1.13.)
+AM_INIT_AUTOMAKE([1.11.2 gnu no-define -Wall -Wno-override \
+  serial-tests color-tests dist-xz])
 m4_ifdef([AM_SILENT_RULES], [AM_SILENT_RULES([yes])], 
[AC_SUBST([AM_DEFAULT_VERBOSITY],1)])
 
 AC_COPYRIGHT(GUILE_CONFIGURE_COPYRIGHT)
diff --git a/libguile/memoize.c b/libguile/memoize.c
index 0f4837a..584096f 100644
--- a/libguile/memoize.c
+++ b/libguile/memoize.c
@@ -1,5 +1,5 @@
 /* Copyright (C) 1995, 1996, 1997, 1998, 1999, 2000, 2001, 2002, 2003,
- *   2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012
+ *   2004, 2005, 2006, 2007, 2008, 2009, 2010, 2011, 2012, 2013
  *   Free Software Foundation, Inc.
  *
  * This library is free software; you can redistribute it and/or
@@ -883,7 +883,6 @@ void
 scm_init_memoize ()
 {
   scm_tc16_memoized = scm_make_smob_type ("%memoized", 0);
-  scm_set_smob_mark (scm_tc16_memoized, scm_markcdr);
   scm_set_smob_print (scm_tc16_memoized, scm_print_memoized);
 
   scm_tc16_memoizer = scm_make_smob_type ("memoizer", 0);


hooks/post-receive
-- 
GNU Guile



reply via email to

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