summaryrefslogtreecommitdiff
path: root/databases/ocaml-pgocaml/files
diff options
context:
space:
mode:
Diffstat (limited to 'databases/ocaml-pgocaml/files')
-rw-r--r--databases/ocaml-pgocaml/files/patch-Makefile22
-rw-r--r--databases/ocaml-pgocaml/files/patch-pGOCaml.ml10
-rw-r--r--databases/ocaml-pgocaml/files/patch-pGOCaml.mli11
3 files changed, 0 insertions, 43 deletions
diff --git a/databases/ocaml-pgocaml/files/patch-Makefile b/databases/ocaml-pgocaml/files/patch-Makefile
deleted file mode 100644
index 208039919c76..000000000000
--- a/databases/ocaml-pgocaml/files/patch-Makefile
+++ /dev/null
@@ -1,22 +0,0 @@
---- Makefile.orig 2007-12-17 18:15:17.332386495 -0500
-+++ Makefile 2007-12-17 18:19:21.926038900 -0500
-@@ -36,7 +36,7 @@
- OBJS := pGOCaml_config.cmo pGOCaml.cmo
- XOBJS := $(OBJS:.cmo=.cmx)
-
--all: pGOCaml_config.ml pgocaml.cma pgocaml.cmxa pa_pgsql.cmo test_pgocaml_lowlevel$(EXECUTABLE_SUFFIX) test_pgocaml$(EXECUTABLE_SUFFIX) pgocaml_prof$(EXECUTABLE_SUFFIX) META
-+all: pGOCaml_config.ml pgocaml.cma pgocaml.cmxa pa_pgsql.cmo pgocaml_prof$(EXECUTABLE_SUFFIX) META
-
- test_pgocaml_lowlevel$(EXECUTABLE_SUFFIX): test_pgocaml_lowlevel.cmo pgocaml.cma
- ocamlfind ocamlc $(OCAMLCFLAGS) $(OCAMLCPACKAGES) $(OCAMLCLIBS) \
-@@ -99,8 +99,8 @@
-
- .depend: pGOCaml_config.ml
- rm -f .depend
-- ocamldep pGOCaml.mli pGOCaml.ml test_pgocaml_lowlevel.ml > $@
-- -ocamldep -pp "camlp4o $(FOR_P4) ./pa_pgsql.cmo" test_pgocaml.ml >> $@
-+ ocamldep pGOCaml.mli pGOCaml.ml > $@
-+ -ocamldep -pp "camlp4o $(FOR_P4) ./pa_pgsql.cmo" >> $@
-
- ifeq ($(wildcard .depend),.depend)
- include .depend
diff --git a/databases/ocaml-pgocaml/files/patch-pGOCaml.ml b/databases/ocaml-pgocaml/files/patch-pGOCaml.ml
deleted file mode 100644
index a8063e954a4e..000000000000
--- a/databases/ocaml-pgocaml/files/patch-pGOCaml.ml
+++ /dev/null
@@ -1,10 +0,0 @@
---- pGOCaml.ml.orig 2009-03-01 09:59:13.864728737 -0500
-+++ pGOCaml.ml 2009-03-01 09:59:53.353002107 -0500
-@@ -22,6 +22,7 @@
-
- open Printf
- open ExtString
-+open CalendarLib
-
- type 'a t = {
- ichan : in_channel; (* In_channel wrapping socket. *)
diff --git a/databases/ocaml-pgocaml/files/patch-pGOCaml.mli b/databases/ocaml-pgocaml/files/patch-pGOCaml.mli
deleted file mode 100644
index 169e264c41bd..000000000000
--- a/databases/ocaml-pgocaml/files/patch-pGOCaml.mli
+++ /dev/null
@@ -1,11 +0,0 @@
---- pGOCaml.mli.orig 2009-03-01 09:59:09.188523102 -0500
-+++ pGOCaml.mli 2009-03-01 09:59:43.562605632 -0500
-@@ -20,6 +20,8 @@
- * Boston, MA 02111-1307, USA.
- *)
-
-+open CalendarLib
-+
- type 'a t (** Database handle. *)
-
- exception Error of string