aboutsummaryrefslogtreecommitdiffhomepage
diff options
context:
space:
mode:
-rw-r--r--config/Makefile.template3
-rwxr-xr-xconfigure5
2 files changed, 7 insertions, 1 deletions
diff --git a/config/Makefile.template b/config/Makefile.template
index 3970fd738..cd49db893 100644
--- a/config/Makefile.template
+++ b/config/Makefile.template
@@ -37,6 +37,9 @@ VERSION=COQVERSION
# Directory containing Camlp4 binaries. Can be empty if camlp4 is in the PATH
CAMLP4BIN=CAMLP4BINDIRECTORY
+# Ocaml version number
+CAMLVERSION=CAMLTAG
+
# Camlp4 library directory (avoid CAMLP4LIB used on Windows)
CAMLP4O=CAMLP4TOOL
MYCAMLP4LIB=CAMLP4LIBDIRECTORY
diff --git a/configure b/configure
index e3bd37bc2..1a47f1b50 100755
--- a/configure
+++ b/configure
@@ -6,7 +6,7 @@
#
##################################
-VERSION=8.0
+VERSION=8.0cvs
DATE="Apr 2004"
# a local which command for sh
@@ -305,6 +305,8 @@ case $CAMLVERSION in
exit 1;;
esac
+CAMLTAG=OCAML`echo $CAMLVERSION | sed -e "s/\([1-9]\)\.\([0-9]*\).*/\1\2/g"`
+
# do we have a native compiler: test of ocamlopt and its version
if [ "$best_compiler" = "opt" ] ; then
@@ -496,6 +498,7 @@ sed -e "s|LOCALINSTALLATION|$local|" \
-e "s|OSDEPENDENTLIBS|$OSDEPLIBS|" \
-e "s|OSDEPENDENTP4OPTFLAGS|$OSDEPP4OPTFLAGS|" \
-e "s|CAMLLIBDIRECTORY|$CAMLLIB|" \
+ -e "s|CAMLTAG|$CAMLTAG|" \
-e "s|CAMLP4BINDIRECTORY|$CAMLP4BIN|" \
-e "s|CAMLP4LIBDIRECTORY|$CAMLP4LIB|" \
-e "s|CAMLP4TOOL|$camlp4o|" \