this repo has no description
6
fork

Configure Feed

Select the types of activity you want to include in your feed.

constraint fixes

Minor constraint fixes to reflect vendored package errors

authored by

anil.recoil.org and committed by
Anil Madhavapeddy
b3336167 fea5d328

+7 -4
+2 -2
dune-project
··· 19 19 (synopsis "Shelter from the Storm") 20 20 (description "A shell session shim to help you explore!") 21 21 (depends 22 - ocaml 22 + (ocaml (< "5.3.0~~")) ; for the irmin pin only 23 + (ctypes (< "0.23.0")) ; for a const ptr mismatch with zfs from https://github.com/yallop/ocaml-ctypes/pull/782 23 24 eio_posix 24 - void 25 25 zfs 26 26 cid 27 27 ppx_repr
+2 -2
shelter.opam
··· 10 10 bug-reports: "https://github.com/username/reponame/issues" 11 11 depends: [ 12 12 "dune" {>= "3.17"} 13 - "ocaml" 13 + "ocaml" {< "5.3.0~~"} 14 + "ctypes" {< "0.23.0"} 14 15 "eio_posix" 15 - "void" 16 16 "zfs" 17 17 "cid" 18 18 "ppx_repr"
+3
vendor/void/src/void_action.c
··· 20 20 #include <string.h> 21 21 22 22 23 + #define CAML_INTERNALS 23 24 #include <caml/mlvalues.h> 24 25 #include <caml/unixsupport.h> 25 26 #include <caml/memory.h> 26 27 #include <caml/custom.h> 28 + #include <caml/signals.h> 27 29 #include <caml/fail.h> 30 + #undef CAML_INTERNALS 28 31 29 32 // From Eio 30 33 #include <include/fork_action.h>