summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorOlly Betts <olly@survex.com>2015-03-18 12:33:20 +1300
committerOlly Betts <olly@survex.com>2015-03-18 12:33:20 +1300
commite6ed961711d623630f1a24ca7e12d85be843294b (patch)
tree0b2b140ea375efc739b1ce450192f88b7c1d75c3
parentbaf1fe036a56e6a9637406763b75a280330d1061 (diff)
downloadswig-e6ed961711d623630f1a24ca7e12d85be843294b.tar.gz
Fix configure message about ocaml version check
The test is actually > 3.08.2, not >= 3.08.2 as the message previously implied. The change in question happened after 3.08.2, so ">" is the correct test: http://caml.inria.fr/pub/ml-archives/caml-list/2005/07/ad882d2c46496ad44e6ea6c31a989860.en.html
-rw-r--r--configure.ac2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index f6c21de98..6a1c8129e 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1803,7 +1803,7 @@ else
AC_MSG_RESULT(not found)
fi
- AC_MSG_CHECKING(for Ocaml version 3.08.2 or higher)
+ AC_MSG_CHECKING(if Ocaml version is greater than 3.08.2)
OCAMLVER=`$OCAMLC -version | sed -e 's/.*version //g'`
AC_COMPARE_VERSION([$OCAMLVER],[3.08.2],[:],[:],[OCAMLLOC=_loc])
AC_MSG_RESULT($OCAMLVER)