aboutsummaryrefslogtreecommitdiff
path: root/lib/configuration
diff options
context:
space:
mode:
authorSébastien Dailly <sebastien@dailly.me>2025-01-22 13:43:50 +0100
committerSébastien Dailly <sebastien@dailly.me>2025-01-23 12:24:10 +0100
commit37556ab070abcbf87a1a822c95aeccf19dade687 (patch)
treef7d7b4a3ae4e689224de177c01f4f0ecc2fd1a7c /lib/configuration
parent8e012f4804ecf1665819e761283120a3c0e73643 (diff)
Force the locale before printing a result
Diffstat (limited to 'lib/configuration')
-rwxr-xr-xlib/configuration/dune1
-rw-r--r--lib/configuration/importConf.ml11
-rw-r--r--lib/configuration/locale.c12
3 files changed, 1 insertions, 23 deletions
diff --git a/lib/configuration/dune b/lib/configuration/dune
index 74ace87..6a0bc61 100755
--- a/lib/configuration/dune
+++ b/lib/configuration/dune
@@ -16,7 +16,6 @@
ppx_deriving.show
ppx_deriving.eq
))
- (foreign_stubs (language c) (names locale))
)
(rule
diff --git a/lib/configuration/importConf.ml b/lib/configuration/importConf.ml
index 2f56bd6..ebbcb7c 100644
--- a/lib/configuration/importConf.ml
+++ b/lib/configuration/importConf.ml
@@ -5,8 +5,6 @@ module Path = ImportDataTypes.Path
module T = Read_conf
module Expression = ImportExpression.T
-external set_locale : string -> unit = "set_locale"
-
let latest_version = 1
module TomlReader = Read_conf.Make (Helpers.Toml.Decode)
@@ -19,14 +17,7 @@ let t_of_toml : Otoml.t -> (Syntax.t, string) result =
[ "version" ]
in
match version with
- | n when n = latest_version ->
- let conf = TomlReader.read toml in
- let () =
- Result.iter
- (fun conf -> set_locale (Option.value ~default:"" conf.Syntax.locale))
- conf
- in
- conf
+ | n when n = latest_version -> TomlReader.read toml
| _ ->
Printf.eprintf "Unsuported version : %d\n" version;
exit 1
diff --git a/lib/configuration/locale.c b/lib/configuration/locale.c
deleted file mode 100644
index eeafd26..0000000
--- a/lib/configuration/locale.c
+++ /dev/null
@@ -1,12 +0,0 @@
-#include <stdio.h>
-#include <locale.h>
-#include <caml/memory.h>
-#include <caml/alloc.h>
-
-CAMLprim value set_locale( value param )
-{
- const char *s;
- s = String_val(param);
- setlocale(LC_NUMERIC, s);
- return Val_unit;
-}