diff options
author | wiz <wiz@pkgsrc.org> | 2015-01-08 17:00:11 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2015-01-08 17:00:11 +0000 |
commit | 6450f1dcc534af806ca880c6184d195c8c667f87 (patch) | |
tree | 2b16aec747c5f01ecdbfac9dfb3b4fb28d81aa0f /net | |
parent | b1b8b5ba77036a01e749595d9990554c95f83586 (diff) | |
download | pkgsrc-6450f1dcc534af806ca880c6184d195c8c667f87.tar.gz |
Remove patch after 2.48 update.
Diffstat (limited to 'net')
-rw-r--r-- | net/unison/patches/patch-ubase_util.ml | 16 |
1 files changed, 0 insertions, 16 deletions
diff --git a/net/unison/patches/patch-ubase_util.ml b/net/unison/patches/patch-ubase_util.ml deleted file mode 100644 index 1570102745f..00000000000 --- a/net/unison/patches/patch-ubase_util.ml +++ /dev/null @@ -1,16 +0,0 @@ -$NetBSD: patch-ubase_util.ml,v 1.1 2014/10/22 09:43:01 wiz Exp $ - -Fix incompatibility with ocaml-4.02.x, based on -http://caml.inria.fr/mantis/view.php?id=6621 - ---- ubase/util.ml.orig 2010-04-15 17:29:31.000000000 +0000 -+++ ubase/util.ml -@@ -62,7 +62,7 @@ let set_infos s = - if s <> !infos then begin clear_infos (); infos := s; show_infos () end - - let msg f = -- clear_infos (); Uprintf.eprintf (fun () -> flush stderr; show_infos ()) f -+ clear_infos (); Printf.kfprintf (fun c -> flush c; show_infos ()) stderr f - - let msg : ('a, out_channel, unit) format -> 'a = msg - |