summarylogtreecommitdiffstats
path: root/scilab-0004-Fix-build-with-ocaml-4.0.4.patch
diff options
context:
space:
mode:
authorCarlos Aznarán2024-04-02 18:25:40 -0500
committerCarlos Aznarán2024-04-02 18:25:40 -0500
commit8a9c2ba5082862439ae0428f015b992f05daceb8 (patch)
tree0fdf8b5838f36b3ab0e06fb0c22465323517447c /scilab-0004-Fix-build-with-ocaml-4.0.4.patch
parenta8d942cb7bff7522d3e48684ac3fd3d0b0e3a269 (diff)
downloadaur-scilab.tar.gz
Bump version to 2024.0.0
Diffstat (limited to 'scilab-0004-Fix-build-with-ocaml-4.0.4.patch')
-rw-r--r--scilab-0004-Fix-build-with-ocaml-4.0.4.patch12
1 files changed, 0 insertions, 12 deletions
diff --git a/scilab-0004-Fix-build-with-ocaml-4.0.4.patch b/scilab-0004-Fix-build-with-ocaml-4.0.4.patch
deleted file mode 100644
index 8ee5196a1bbf..000000000000
--- a/scilab-0004-Fix-build-with-ocaml-4.0.4.patch
+++ /dev/null
@@ -1,12 +0,0 @@
---- modules/scicos/src/modelica_compiler/optimization.ml.orig 2018-05-16 19:42:49.168681800 +0200
-+++ modules/scicos/src/modelica_compiler/optimization.ml 2018-05-16 19:44:53.999181477 +0200
-@@ -163,7 +163,8 @@
- let m, e = frexp f in
- let sm = string_of_float m in
- let s = String.make 16 '0' in
-- String.blit sm 2 s 0 (String.length sm - 2);
-+ let sss = Bytes.make 16 '0' in
-+ String.blit sm 2 sss 0 (String.length sm - 2);
- let e' = Num.power_num (Num.Int 2) (Num.num_of_int e) in
- Num.div_num (Num.mult_num (Num.num_of_string s) e') scaling_factor
- in