mirror of
https://git.freebsd.org/ports.git
synced 2025-07-08 04:49:17 -04:00
- add patch to fix build with ocaml-4 - modernize Makefile (USES, staging) - bump PORTREVISION after ocaml update - assign maintainership to kde@
11 lines
238 B
Text
11 lines
238 B
Text
--- ./src/fcl_data.ml
|
|
+++ ./src/fcl_data.ml
|
|
@@ -16,7 +16,7 @@ end
|
|
|
|
module Hashtbl = struct
|
|
type ('a, 'b) t = ('a, 'b) Hashtbl.t
|
|
- let create = Hashtbl.create
|
|
+ let create n = Hashtbl.create n
|
|
let get h = h
|
|
|
|
let add h k d =
|