1 |
diff -up gnucash-2.4.5/configure.ac.foo gnucash-2.4.5/configure.ac |
2 |
--- gnucash-2.4.5/configure.ac.foo 2011-05-13 15:44:58.656686463 -0400 |
3 |
+++ gnucash-2.4.5/configure.ac 2011-05-13 15:46:31.353686496 -0400 |
4 |
@@ -393,12 +393,13 @@ fi |
5 |
GUILE_LIBS="" |
6 |
|
7 |
# Look up GUILE_CFLAGS and GUILE_LIBS, and version check |
8 |
-PKG_CHECK_MODULES(GUILE, [guile-1.8 >= 1.8.5], , [AC_MSG_ERROR([ |
9 |
- |
10 |
- guile does not appear to be installed correctly, or is not in the |
11 |
- correct version range. Perhaps you have not installed the guile |
12 |
- development packages? Gnucash requires at least version 1.8.5 to build. |
13 |
-])]) |
14 |
+PKG_CHECK_MODULES(GUILE, [guile-1.8 >= 1.8.5], , [ |
15 |
+ PKG_CHECK_MODULES(GUILE, [guile-2.0 >= 2.0.0], , [AC_MSG_ERROR([ |
16 |
+ guile does not appear to be installed correctly, or is not in the |
17 |
+ correct version range. Perhaps you have not installed the guile |
18 |
+ development packages? Gnucash requires at least version 1.8.5 to build. |
19 |
+ ])]) |
20 |
+]) |
21 |
# Look up GUILE executable |
22 |
AC_PATH_PROG(GUILE, guile) |
23 |
|