mirror of
https://github.com/ocaml-multicore/eio.git
synced 2025-07-22 00:01:23 -04:00
Compare commits
2 Commits
00bcf7c79c
...
bc1e231b64
Author | SHA1 | Date | |
---|---|---|---|
|
bc1e231b64 | ||
|
d618731781 |
@ -39,6 +39,8 @@ Build and test changes:
|
||||
|
||||
- Generate prototypes for C stubs from ml files (@talex5 #615).
|
||||
|
||||
- Don't try to compile uring support on centos 7 (@talex5 #638, reported by @zenfey).
|
||||
|
||||
## v0.12
|
||||
|
||||
New features / API changes:
|
||||
|
@ -66,7 +66,10 @@
|
||||
(mdx (and (>= 2.2.0) :with-test))
|
||||
(kcas (and (>= 0.3.0) :with-test))
|
||||
(yojson (and (>= 2.0.2) :with-test))
|
||||
(eio_linux (and (= :version) (= :os "linux")))
|
||||
(eio_linux (and
|
||||
(= :version)
|
||||
(= :os "linux")
|
||||
(or (<> :os-distribution "centos") (> :os-version 7))))
|
||||
(eio_posix (and (= :version) (<> :os "win32")))
|
||||
(eio_windows (and (= :version) (= :os "win32")))))
|
||||
(using mdx 0.2)
|
||||
|
@ -13,7 +13,9 @@ depends: [
|
||||
"mdx" {>= "2.2.0" & with-test}
|
||||
"kcas" {>= "0.3.0" & with-test}
|
||||
"yojson" {>= "2.0.2" & with-test}
|
||||
"eio_linux" {= version & os = "linux"}
|
||||
"eio_linux"
|
||||
{= version & os = "linux" &
|
||||
(os-distribution != "centos" | os-version > "7")}
|
||||
"eio_posix" {= version & os != "win32"}
|
||||
"eio_windows" {= version & os = "win32"}
|
||||
"odoc" {with-doc}
|
||||
|
Loading…
x
Reference in New Issue
Block a user