SummaryRefsLogTreeCommitDiffStats
path: root/configure.ac
diff options
context:
space:
mode:
authordale_mellor <dale_mellor>2006-04-16 22:10:43 +0000
committerdale_mellor <dale_mellor>2006-04-16 22:10:43 +0000
commit011df9b8fd152554619f76ea1e35a68ef206762d (patch)
tree2bee99d42aa1f0e984b0af546c6f92e7aaf8416f /configure.ac
parent4c3a7cc36c29ecbb8574454f0f5bdbed7ef66f8b (diff)
downloadmcron-011df9b8fd152554619f76ea1e35a68ef206762d.tar.gz
mcron-011df9b8fd152554619f76ea1e35a68ef206762d.tar.bz2
mcron-011df9b8fd152554619f76ea1e35a68ef206762d.zip
Update to 1.0.3. Lots of small changes, mainly to work with guile 1.8.0. Daylight savings time is now handled okay. Bug fix in Vixie parser. User gets option to correct bad crontab entries.1.0.3
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac8
1 files changed, 4 insertions, 4 deletions
diff --git a/configure.ac b/configure.ac
index 30f8a9f..cf11ad4 100644
--- a/configure.ac
+++ b/configure.ac
@@ -21,7 +21,7 @@
AC_PREREQ(2.59)
-AC_INIT([mcron], [1.0.2], [dale_mellor@users.sourceforge.net])
+AC_INIT([mcron], [1.0.3], [dale_mellor@users.sourceforge.net])
AM_INIT_AUTOMAKE
@@ -74,12 +74,12 @@ fi
# Check the Guile version.
-AC_MSG_CHECKING(for guile version >= 1.6.4)
+AC_MSG_CHECKING(for guile version >= 1.8.0)
if [$GUILE --version | $HEAD -1 | $AWK '{print $2}' | \
- $EGREP -q '^(1\.(6\.([4-9]|[1-3][^.])|[7-9]|[1-5][^.])|[2-9])']; then
+ $EGREP -q '^1\.8\.']; then
AC_MSG_RESULT(OK)
else
- AC_MSG_ERROR([Sorry, Guile 1.6.4 or greater is needed to run mcron])
+ AC_MSG_ERROR([Sorry, Guile 1.8.0 or greater is needed to run mcron])
fi