mirror of
https://github.com/Gnucash/gnucash.git
synced 2026-09-03 20:53:02 -05:00
Check for guile-2.0 as well as guile-1.8.
git-svn-id: svn+ssh://svn.gnucash.org/repo/gnucash/trunk@21534 57a11ea4-9604-0410-9ed3-97b8803252fd
This commit is contained in:
+7
-6
@@ -370,12 +370,13 @@ fi
|
||||
GUILE_LIBS=""
|
||||
|
||||
# Look up GUILE_CFLAGS and GUILE_LIBS, and version check
|
||||
PKG_CHECK_MODULES(GUILE, [guile-1.8 >= 1.8.5], , [AC_MSG_ERROR([
|
||||
|
||||
guile does not appear to be installed correctly, or is not in the
|
||||
correct version range. Perhaps you have not installed the guile
|
||||
development packages? Gnucash requires at least version 1.8.5 to build.
|
||||
])])
|
||||
PKG_CHECK_MODULES(GUILE, [guile-1.8 >= 1.8.5], , [
|
||||
PKG_CHECK_MODULES(GUILE, [guile-2.0 >= 2.0.0], , [AC_MSG_ERROR([
|
||||
guile does not appear to be installed correctly, or is not in the
|
||||
correct version range. Perhaps you have not installed the guile
|
||||
development packages? Gnucash requires at least version 1.8.5 to build.
|
||||
])])
|
||||
])
|
||||
# Look up GUILE executable
|
||||
AC_PATH_PROG(GUILE, guile)
|
||||
|
||||
|
||||
Reference in New Issue
Block a user