diff options
author | Ludovic Courtès <ludo@gnu.org> | 2020-02-23 18:49:51 +0100 |
---|---|---|
committer | Dale Mellor <black-hole@rdmp.org> | 2020-02-27 21:03:47 +0000 |
commit | bedec44b397179c0eb1d11e52d0a6105015f6e38 (patch) | |
tree | 162ac9addd3bdb460f1623e22c61ca1a9e303eb0 | |
parent | 2427317b108f928979fd3ea799174ceac80e18fc (diff) | |
download | mcron-bedec44b397179c0eb1d11e52d0a6105015f6e38.tar.gz mcron-bedec44b397179c0eb1d11e52d0a6105015f6e38.tar.bz2 mcron-bedec44b397179c0eb1d11e52d0a6105015f6e38.zip |
build: Support Guile 3.0.
* configure.ac: Add "3.0" to 'GUILE_PKG'.
-rwxr-xr-x | configure.ac | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac index 438358e..4324a42 100755 --- a/configure.ac +++ b/configure.ac @@ -34,8 +34,8 @@ AM_PROG_CC_C_O AC_PROG_RANLIB AM_PROG_AR -# Check for Guile 2.x. development files -GUILE_PKG([2.2 2.0]) +# Check for Guile development files. +GUILE_PKG([3.0 2.2 2.0]) # Set Guile flags without using GUILE_FLAGS which is requiring the unused # 'config.rpath' script. |