pkgsrc/lang/ocaml/patches/patch-utils_clflags.ml
jaapb 7908506a76 Updated package lang/ocaml to version 4.06.
Changes are many and can be found at https://ocaml.org/releases/4.06.html

One change that breaks a lot of packages is that the safe-string compiler
option is now enabled by default, which means that all modules need to use
immutable strings (or explicitly use the bytes type).
2018-01-10 14:30:34 +00:00

16 lines
621 B
OCaml

$NetBSD: patch-utils_clflags.ml,v 1.5 2018/01/10 14:30:35 jaapb Exp $
pkgsrc_runtime flag
--- utils/clflags.ml.orig 2017-10-03 08:35:25.000000000 +0000
+++ utils/clflags.ml
@@ -154,7 +154,8 @@ let pic_code = ref (match Config.archite
| "amd64" -> true
| _ -> false)
-let runtime_variant = ref "";; (* -runtime-variant *)
+let runtime_variant = ref "" (* -runtime-variant *)
+let pkgsrc_runtime = ref false;; (* -pkgsrc-runtime *)
let keep_docs = ref false (* -keep-docs *)
let keep_locs = ref true (* -keep-locs *)