Gentoo Archives: gentoo-commits

From: "Alexis Ballier (aballier)" <aballier@g.o>
To: gentoo-commits@l.g.o
Subject: [gentoo-commits] gentoo-x86 commit in dev-ml/extlib/files: extlib-1.5.2-ocaml4.patch
Date: Sat, 30 Jun 2012 20:25:48
Message-Id: 20120630202534.AF3EE2004C@flycatcher.gentoo.org
1 aballier 12/06/30 20:25:34
2
3 Added: extlib-1.5.2-ocaml4.patch
4 Log:
5 add patch from upstream for compatibility with ocaml 4.00
6
7 (Portage version: 2.2.0_alpha114/cvs/Linux x86_64)
8
9 Revision Changes Path
10 1.1 dev-ml/extlib/files/extlib-1.5.2-ocaml4.patch
11
12 file : http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/extlib/files/extlib-1.5.2-ocaml4.patch?rev=1.1&view=markup
13 plain: http://sources.gentoo.org/viewvc.cgi/gentoo-x86/dev-ml/extlib/files/extlib-1.5.2-ocaml4.patch?rev=1.1&content-type=text/plain
14
15 Index: extlib-1.5.2-ocaml4.patch
16 ===================================================================
17 Fixes ocaml 4 compatibility.
18
19 From upstream:
20 svn diff http://ocaml-extlib.googlecode.com/svn/trunk/ -c 396
21
22 Index: extlib/extHashtbl.ml
23 ===================================================================
24 --- extlib/extHashtbl.ml (revision 395)
25 +++ extlib/extHashtbl.ml (revision 396)
26 @@ -32,6 +32,7 @@
27 }
28
29 include Hashtbl
30 + let create n = Hashtbl.create (* no seed *) n
31
32 external h_conv : ('a, 'b) t -> ('a, 'b) h_t = "%identity"
33 external h_make : ('a, 'b) h_t -> ('a, 'b) t = "%identity"