this repo has no description

Merge pull request #23416 from thvnx/mlmpfr-4.1.1-update

mlmpfr: make 4.1.1 version compatible with 4.2.0

Changed files
+5 -1
packages
mlmpfr
mlmpfr.4.1.1
+4
packages/mlmpfr/mlmpfr.4.1.1/files/mlmpfr_compatibility_test.c
···
if(strcmp(subversion, "4.1.1") == 0)
return 0;
return 1;
}
···
if(strcmp(subversion, "4.1.1") == 0)
return 0;
+
// Version 4.1.1 is also compatible with 4.2.0
+
if(strcmp(subversion, "4.2.0") == 0)
+
return 0;
+
return 1;
}
+1 -1
packages/mlmpfr/mlmpfr.4.1.1/opam
···
You need to have MPFR-4.1.1 installed on your system. See opam info mlmpfr for
all available versions."""
extra-files: ["mlmpfr_compatibility_test.c"
-
"md5=e0072684415485936f3eb158a86fe38c"]
···
You need to have MPFR-4.1.1 installed on your system. See opam info mlmpfr for
all available versions."""
extra-files: ["mlmpfr_compatibility_test.c"
+
"md5=672af9ba23d8bea8a9d65081c3b64dc1"]