diff options
author | Jose Antonio Ortega Ruiz <jao@gnu.org> | 2019-01-07 22:02:34 +0000 |
---|---|---|
committer | Jose Antonio Ortega Ruiz <jao@gnu.org> | 2019-01-07 22:02:34 +0000 |
commit | d891afbffe03f97431d95505a10768ae9a87a500 (patch) | |
tree | 3d6d5ade690c61faecd03a72854b41662569b43f | |
parent | 9949be12b742a999b72b5cd11334a4313864269d (diff) | |
download | mdk-d891afbffe03f97431d95505a10768ae9a87a500.tar.gz mdk-d891afbffe03f97431d95505a10768ae9a87a500.tar.bz2 |
Looking for guile 2.2 during configuration
-rw-r--r-- | configure.ac | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac index c1f7cd6..387ae11 100644 --- a/configure.ac +++ b/configure.ac @@ -1,5 +1,5 @@ # Copyright (C) 2000, 2001, 2002, 2003, 2004, 2005, 2006, 2008, 2009, -# 2010, 2013, 2014, 2015 Free Software Foundation, Inc. +# 2010, 2013, 2014, 2015, 2019 Free Software Foundation, Inc. # # This file is free software; as a special exception the author gives # unlimited permission to copy and/or distribute it, with or without @@ -94,6 +94,9 @@ esac], [wguile=true]) if test x$wguile = xtrue; then PKG_CHECK_MODULES(GUILE,guile-2.0 >= 2.0,[wguile=true],[wguile=false]) + if test x$wguile = xfalse; then + PKG_CHECK_MODULES(GUILE,guile-2.2 >= 2.0,[wguile=true],[wguile=false]) + fi fi if test x$wguile = xtrue; then |