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-8-99-gdb5


From: Ludovic Courtès
Subject: [Guile-commits] GNU Guile branch, master, updated. release_1-9-8-99-gdb5034a
Date: Mon, 15 Mar 2010 16:54:54 +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=db5034ab89426edacf5229e7e6b37cb0495cd287

The branch, master has been updated
       via  db5034ab89426edacf5229e7e6b37cb0495cd287 (commit)
      from  9823fd399c4addd852409c20e3112e62dca0a937 (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 db5034ab89426edacf5229e7e6b37cb0495cd287
Author: Ludovic Courtès <address@hidden>
Date:   Mon Mar 15 17:54:45 2010 +0100

    configure: Abort when GMP is not found.
    
    * configure.ac: Fix erroneous `AC_LIB_HAVE_LINKFLAGS' invocation.  Above
      when $HAVE_LIBGMP is not "yes".

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

Summary of changes:
 configure.ac |    9 ++++++---
 1 files changed, 6 insertions(+), 3 deletions(-)

diff --git a/configure.ac b/configure.ac
index 909d6d3..9203cb4 100644
--- a/configure.ac
+++ b/configure.ac
@@ -868,11 +868,14 @@ fi
 
 
 dnl GMP tests
-AC_LIB_HAVE_LINKFLAGS(gmp,
+AC_LIB_HAVE_LINKFLAGS([gmp],
   [],
   [#include <gmp.h>],
-  [mpz_import (0, 0, 0, 0, 0, 0, 0);],
-  AC_MSG_ERROR([GNU MP 4.1 or greater not found, see README]))
+  [mpz_import (0, 0, 0, 0, 0, 0, 0);])
+
+if test "x$HAVE_LIBGMP" != "xyes"; then
+  AC_MSG_ERROR([GNU MP 4.1 or greater not found, see README])
+fi
 
 dnl GNU libunistring is checked for by Gnulib's `libunistring' module.
 if test "x$LTLIBUNISTRING" != "x"; then


hooks/post-receive
-- 
GNU Guile




reply via email to

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