summaryrefslogtreecommitdiffstats
path: root/src
diff options
context:
space:
mode:
authorThierry Vignaud <thierry.vignaud@gmail.com>2018-02-06 11:13:05 +0100
committerThierry Vignaud <thierry.vignaud@gmail.com>2018-02-06 11:13:58 +0100
commit8b7649620e1d84afd033f0e598f6a4c7c798835b (patch)
tree61bd3862f2d05d7319745e600d7a2d10712d4a48 /src
parent69559331d2848a1a6d4d67624f35f9bfa1c2ce58 (diff)
downloadperl_checker-8b7649620e1d84afd033f0e598f6a4c7c798835b.tar
perl_checker-8b7649620e1d84afd033f0e598f6a4c7c798835b.tar.gz
perl_checker-8b7649620e1d84afd033f0e598f6a4c7c798835b.tar.bz2
perl_checker-8b7649620e1d84afd033f0e598f6a4c7c798835b.tar.xz
perl_checker-8b7649620e1d84afd033f0e598f6a4c7c798835b.zip
fix compiling with ocaml-4.06
it'll need more work later
Diffstat (limited to 'src')
-rw-r--r--src/OCamlMakefile4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/OCamlMakefile b/src/OCamlMakefile
index cc71121..ac2cd9c 100644
--- a/src/OCamlMakefile
+++ b/src/OCamlMakefile
@@ -142,13 +142,13 @@ NCRESULT := $(addsuffix $(NCSUFFIX), $(RESULT))
TOPRESULT := $(addsuffix $(TOPSUFFIX), $(RESULT))
ifndef OCAMLC
- OCAMLC := ocamlc -g
+ OCAMLC := ocamlc -g -unsafe-string
endif
export OCAMLC
ifndef OCAMLOPT
- OCAMLOPT := ocamlopt -g
+ OCAMLOPT := ocamlopt -g -unsafe-string
endif
export OCAMLOPT