Skip to content

Commit 93ea66f

Browse files
committed
Fixed a version discovery problem with beta versions of PostgreSQL
1 parent 9c73709 commit 93ea66f

File tree

5 files changed

+64
-59
lines changed

5 files changed

+64
-59
lines changed

CHANGES.txt

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,8 @@
1+
2013-07-08: Fixed a version discovery problem with beta versions of
2+
PostgreSQL.
3+
4+
Thanks to Stephane Legrand <[email protected]> for the patch!
5+
16
2012-07-20: Downgraded findlib version requirement to support the Debian
27
testing branch.
38

_oasis

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
OASISFormat: 0.3
22
Name: postgresql-ocaml
3-
Version: 2.0.3
3+
Version: 2.0.4
44
Synopsis: postgresql-ocaml - bindings to the PostgreSQL library
55
Description: postgresql-ocaml offers library functions for accessing PostgreSQL databases
66
Authors: Alain Frisch <[email protected]>,

lib/META

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# OASIS_START
2-
# DO NOT EDIT (digest: 819ee0f28b772e1a0ee4694d97f0ce26)
3-
version = "2.0.3"
2+
# DO NOT EDIT (digest: ac3a9ed2ffccd5dac2907536b9ec9c12)
3+
version = "2.0.4"
44
description = "postgresql-ocaml - bindings to the PostgreSQL library"
55
requires = "threads bigarray"
66
archive(byte) = "postgresql.cma"

myocamlbuild.ml

Lines changed: 7 additions & 7 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,7 @@
11
(* OASIS_START *)
2-
(* DO NOT EDIT (digest: 3850dfb9538acec6c8d6373282a747be) *)
2+
(* DO NOT EDIT (digest: c415f64fb402f4be093b032cd45ada65) *)
33
module OASISGettext = struct
4-
(* # 21 "/Users/mmottl/.opam/4.00.1/build/oasis.0.3.0/src/oasis/OASISGettext.ml" *)
4+
(* # 21 "src/oasis/OASISGettext.ml" *)
55

66
let ns_ str =
77
str
@@ -24,7 +24,7 @@ module OASISGettext = struct
2424
end
2525

2626
module OASISExpr = struct
27-
(* # 21 "/Users/mmottl/.opam/4.00.1/build/oasis.0.3.0/src/oasis/OASISExpr.ml" *)
27+
(* # 21 "src/oasis/OASISExpr.ml" *)
2828

2929

3030

@@ -116,7 +116,7 @@ end
116116

117117
# 117 "myocamlbuild.ml"
118118
module BaseEnvLight = struct
119-
(* # 21 "/Users/mmottl/.opam/4.00.1/build/oasis.0.3.0/src/base/BaseEnvLight.ml" *)
119+
(* # 21 "src/base/BaseEnvLight.ml" *)
120120

121121
module MapString = Map.Make(String)
122122

@@ -214,7 +214,7 @@ end
214214

215215
# 215 "myocamlbuild.ml"
216216
module MyOCamlbuildFindlib = struct
217-
(* # 21 "/Users/mmottl/.opam/4.00.1/build/oasis.0.3.0/src/plugins/ocamlbuild/MyOCamlbuildFindlib.ml" *)
217+
(* # 21 "src/plugins/ocamlbuild/MyOCamlbuildFindlib.ml" *)
218218

219219
(** OCamlbuild extension, copied from
220220
* http://brion.inria.fr/gallium/index.php/Using_ocamlfind_with_ocamlbuild
@@ -323,7 +323,7 @@ module MyOCamlbuildFindlib = struct
323323
end
324324

325325
module MyOCamlbuildBase = struct
326-
(* # 21 "/Users/mmottl/.opam/4.00.1/build/oasis.0.3.0/src/plugins/ocamlbuild/MyOCamlbuildBase.ml" *)
326+
(* # 21 "src/plugins/ocamlbuild/MyOCamlbuildBase.ml" *)
327327

328328
(** Base functions for writing myocamlbuild.ml
329329
@author Sylvain Le Gall
@@ -339,7 +339,7 @@ module MyOCamlbuildBase = struct
339339
type name = string
340340
type tag = string
341341

342-
(* # 56 "/Users/mmottl/.opam/4.00.1/build/oasis.0.3.0/src/plugins/ocamlbuild/MyOCamlbuildBase.ml" *)
342+
(* # 56 "src/plugins/ocamlbuild/MyOCamlbuildBase.ml" *)
343343

344344
type t =
345345
{

0 commit comments

Comments
 (0)