Packages moved to Fedora.
[fedora-mingw.git] / ocaml-csv / csv-extlib.patch
1 --- csv.ml.orig 2007-05-29 13:07:33.000000000 +0100
2 +++ csv.ml      2007-05-29 13:07:44.000000000 +0100
3 @@ -45,7 +45,7 @@
4  (* Uncomment the next line to enable Extlib's List function.  These
5   * avoid stack overflows on really huge CSV files.
6   *)
7 -(*open ExtList*)
8 +open ExtList
9  
10  type t = string list list
11  
12 --- Makefile.orig       2007-05-29 13:11:36.000000000 +0100
13 +++ Makefile    2007-05-29 13:11:53.000000000 +0100
14 @@ -6,15 +6,15 @@
15  # of file csv.ml.
16  
17  OCAMLCINCS     :=
18 -#OCAMLCINCS    := -package extlib
19 +OCAMLCINCS     := -package extlib
20  OCAMLCFLAGS    := -g
21  OCAMLCLIBS     :=
22 -#OCAMLCLIBS    := -linkpkg
23 +OCAMLCLIBS     := -linkpkg
24  
25  OCAMLOPTINCS   := $(OCAMLCINCS)
26  OCAMLOPTFLAGS  :=
27  OCAMLOPTLIBS   :=
28 -#OCAMLOPTLIBS  := -linkpkg
29 +OCAMLOPTLIBS   := -linkpkg
30  
31  OBJS           := csv.cmo
32  XOBJS          := $(OBJS:.cmo=.cmx)