aboutsummaryrefslogtreecommitdiffstats
path: root/community/unison/marshalling.patch
diff options
context:
space:
mode:
authorJakub Jirutka <jakub@jirutka.cz>2018-03-09 22:42:40 +0100
committerJakub Jirutka <jakub@jirutka.cz>2018-03-10 02:17:25 +0100
commit74ff07c2c66e578127fefde3120bc8ae8268f151 (patch)
tree4992fd1e1c81ffc2c0b130d21a70009393dbdf29 /community/unison/marshalling.patch
parentd7643405faad0171da012b68b6c89702f5f6acb7 (diff)
downloadaports-74ff07c2c66e578127fefde3120bc8ae8268f151.tar.bz2
aports-74ff07c2c66e578127fefde3120bc8ae8268f151.tar.xz
community/unison: upgrade to 2.48.15v4, remove -doc
HTML page for this version is not available.
Diffstat (limited to 'community/unison/marshalling.patch')
-rw-r--r--community/unison/marshalling.patch16
1 files changed, 0 insertions, 16 deletions
diff --git a/community/unison/marshalling.patch b/community/unison/marshalling.patch
deleted file mode 100644
index 997b90b513..0000000000
--- a/community/unison/marshalling.patch
+++ /dev/null
@@ -1,16 +0,0 @@
---- a/remote.ml 2016-05-23 18:40:05.000000000 +0200
-+++ b/remote.ml 2017-03-23 11:33:24.784228112 +0100
-@@ -450,12 +450,7 @@
- let s = Bytearray.marshal data [Marshal.No_sharing] in
- let l = Bytearray.length s in
- ((s, 0, l) :: rem, l)),
-- (fun buf pos ->
-- try Bytearray.unmarshal buf pos
-- with Failure s -> raise (Util.Fatal (Printf.sprintf
--"Fatal error during unmarshaling (%s),
--possibly because client and server have been compiled with different\
--versions of the OCaml compiler." s)))
-+ (fun buf pos -> Bytearray.unmarshal buf pos)
-
- let makeMarshalingFunctions payloadMarshalingFunctions string =
- let (marshalPayload, unmarshalPayload) = payloadMarshalingFunctions in