blob: 50967e5305e9915e7a4da19efd998bf37fd29d78 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
|
Index: wyrd-1.4.5/configure.ac
===================================================================
--- wyrd-1.4.5.orig/configure.ac
+++ wyrd-1.4.5/configure.ac
@@ -61,6 +61,7 @@ echo "ocaml library path is $OCAMLLIB"
# check for sufficient OCAMLVERSION
OCAMLMAJORVERSION=`echo $OCAMLVERSION | cut -d '.' -f 1`
OCAMLMINORVERSION=`echo $OCAMLVERSION | cut -d '.' -f 2`
+if test $OCAMLMAJORVERSION -lt 4 ; then
if test $OCAMLMAJORVERSION -lt 3 ; then
AC_MSG_ERROR(Wyrd requires OCaml version 3.08 or greater.)
else
@@ -68,6 +69,7 @@ else
AC_MSG_ERROR(Wyrd requires OCaml version 3.08 or greater.)
fi
fi
+fi
# then we look for ocamlopt; if not present, we issue a warning
|