diff options
author | yallop <yallop@gmail.com> | 2017-08-03 14:19:13 +0100 |
---|---|---|
committer | Mark Shinwell <mshinwell@gmail.com> | 2017-08-03 14:19:13 +0100 |
commit | 65c932253b96651a6d13550a48dd386a89244ed0 (patch) | |
tree | e06098840d29e15d888c28e7c40238743cb65f7a /configure | |
parent | 3d1a0fba2f64ad82bc3961311d85d8b7f6c48f06 (diff) | |
download | ocaml-65c932253b96651a6d13550a48dd386a89244ed0.tar.gz |
String_val: return 'const char *' when -safe-string is globally enabled (#1274)
Diffstat (limited to 'configure')
-rwxr-xr-x | configure | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -2018,6 +2018,10 @@ if $with_fpic; then echo "#define CAML_WITH_FPIC" >> m.h fi +if $safe_string; then + echo "#define CAML_SAFE_STRING" >> m.h +fi + # Finish generated files cclibs="$cclibs $mathlib" |