From 1269feacab35f8b9d9d7f2ea40d9237234c923f2 Mon Sep 17 00:00:00 2001 From: Jakub Bogusz Date: Thu, 25 Nov 2021 20:31:20 +0100 Subject: [PATCH] - fix deprecation --- ocaml-uutf-deprecated.patch | 11 +++++++++++ 1 file changed, 11 insertions(+) create mode 100644 ocaml-uutf-deprecated.patch diff --git a/ocaml-uutf-deprecated.patch b/ocaml-uutf-deprecated.patch new file mode 100644 index 0000000..da78d12 --- /dev/null +++ b/ocaml-uutf-deprecated.patch @@ -0,0 +1,11 @@ +--- uutf-1.0.2/src/uutf.ml.orig 2019-02-05 21:29:14.000000000 +0100 ++++ uutf-1.0.2/src/uutf.ml 2021-11-23 22:05:04.743311549 +0100 +@@ -31,7 +31,7 @@ let u_rep = Uchar.unsafe_of_int 0xFFFD + type encoding = [ `UTF_8 | `UTF_16 | `UTF_16BE | `UTF_16LE ] + type decoder_encoding = [ encoding | `US_ASCII | `ISO_8859_1 ] + +-let encoding_of_string s = match String.uppercase s with (* IANA names. *) ++let encoding_of_string s = match String.uppercase_ascii s with (* IANA names. *) + | "UTF-8" -> Some `UTF_8 + | "UTF-16" -> Some `UTF_16 + | "UTF-16LE" -> Some `UTF_16LE -- 2.43.0