guix-commits
[Top][All Lists]
Advanced

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

03/03: build: Allow builds with Guile 2.2.


From: Ludovic Courtès
Subject: 03/03: build: Allow builds with Guile 2.2.
Date: Tue, 20 Sep 2016 14:59:38 +0000 (UTC)

civodul pushed a commit to branch master
in repository guix.

commit 9d126aa2b504bb9fad536eac186805ff623e96be
Author: Ludovic Courtès <address@hidden>
Date:   Tue Sep 20 23:36:53 2016 +0900

    build: Allow builds with Guile 2.2.
    
    Reported by Mu Lei.
    
    * configure.ac: Use 'GUILE_PKG', allowing 2.2.
    Use 'GUILE_PROGS' instead of 'AC_PATH_PROG'.
---
 configure.ac |   14 +++++++++++---
 1 file changed, 11 insertions(+), 3 deletions(-)

diff --git a/configure.ac b/configure.ac
index 84287e4..3b33f85 100644
--- a/configure.ac
+++ b/configure.ac
@@ -74,14 +74,22 @@ dnl We require pkg.m4 (from pkg-config) and guile.m4 (from 
Guile.)
 dnl Make sure they are available.
 m4_pattern_forbid([PKG_CHECK_MODULES])
 m4_pattern_forbid([GUILE_MODULE_AVAILABLE])
+m4_pattern_forbid([^GUILE_P$])
 
-PKG_CHECK_MODULES([GUILE], [guile-2.0 >= 2.0.7])
-AC_PATH_PROG([GUILE], [guile])
-AC_PATH_PROG([GUILD], [guild])
+dnl Search for 'guile' and 'guild'.  Prefer 2.0 until the 2.2 upgrade is
+dnl complete.
+GUILE_PKG([2.0 2.2])
+GUILE_PROGS
 if test "x$GUILD" = "x"; then
    AC_MSG_ERROR(['guild' binary not found; please check your guile-2.x 
installation.])
 fi
 
+if test "x$GUILE_EFFECTIVE_VERSION" = "x2.0"; then
+  PKG_CHECK_MODULES([GUILE], [guile-2.0 >= 2.0.7])
+else
+  AC_MSG_WARN([Guile $GUILE_EFFECTIVE_VERSION is not fully supported!])
+fi
+
 dnl guile-json is used for the PyPI package importer
 GUILE_MODULE_AVAILABLE([have_guile_json], [(json)])
 AM_CONDITIONAL([HAVE_GUILE_JSON], [test "x$have_guile_json" = "xyes"])



reply via email to

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