File tree 5 files changed +25
-10
lines changed
5 files changed +25
-10
lines changed Original file line number Diff line number Diff line change
1
+ 2016-06-14: Changed default configuration setting for loadable extensions
2
+ on Mac OS X. Due to frequent installation issues the default
3
+ setting is now to turn off loadable extensions on that platform.
4
+ You will have to explicitly turn them on if you need them.
5
+
1
6
2016-05-24: Fixed a bug finalizing user-defined functions for a database.
2
7
3
8
Thanks to Mark Bradley <
[email protected] > for this patch!
Original file line number Diff line number Diff line change @@ -59,6 +59,10 @@ Undefined symbols for architecture ...:
59
59
the environment variable ` SQLITE3_DISABLE_LOADABLE_EXTENSIONS ` if linking
60
60
problems persist.
61
61
62
+ * Due to frequent installation issues with loadable extensions on Mac OS X,
63
+ the default there is to disable them. You will have to explicitly enable
64
+ them on that platform.
65
+
62
66
Credits
63
67
-------
64
68
@@ -85,4 +89,4 @@ page](https://github.com/mmottl/sqlite3-ocaml).
85
89
86
90
Enjoy!
87
91
88
- Markus Mottl on January 5, 2015
92
+ Markus Mottl on June 14, 2016
Original file line number Diff line number Diff line change 1
1
OASISFormat: 0.4
2
2
Name: sqlite3
3
- Version: 4.0.4
3
+ Version: 4.0.5
4
4
Synopsis: sqlite3-ocaml - SQLite3 bindings
5
5
Description: sqlite3-ocaml is an OCaml library with bindings to the
6
6
SQLite3 client API. Sqlite3 is a self-contained, serverless,
@@ -39,7 +39,7 @@ Flag brewcheck
39
39
40
40
Flag loadable_extensions
41
41
Description: Enable loadable extensions
42
- Default: true
42
+ Default$ : !system(macosx)
43
43
44
44
Library sqlite3
45
45
Path: lib
Original file line number Diff line number Diff line change 1
1
# OASIS_START
2
- # DO NOT EDIT (digest: 56d9dac34e0e883dec973a08d6bbc316 )
3
- version = "4.0.4 "
2
+ # DO NOT EDIT (digest: 27e63caeb52312bb42f7f0429c2aa1c1 )
3
+ version = "4.0.5 "
4
4
description = "sqlite3-ocaml - SQLite3 bindings"
5
5
archive(byte) = "sqlite3.cma"
6
6
archive(byte, plugin) = "sqlite3.cma"
Original file line number Diff line number Diff line change 1
1
(* setup.ml generated for the first time by OASIS v0.3.0 *)
2
2
3
3
(* OASIS_START *)
4
- (* DO NOT EDIT (digest: adb1168acc22486a161b56bf620f5f4c ) *)
4
+ (* DO NOT EDIT (digest: 82597847a62e7f7a1d2c41f18cb7e689 ) *)
5
5
(*
6
6
Regenerated by OASIS v0.4.6
7
7
Visit http://oasis.forge.ocamlcore.org for more information and
@@ -7004,7 +7004,7 @@ let setup_t =
7004
7004
alpha_features = [] ;
7005
7005
beta_features = [] ;
7006
7006
name = " sqlite3" ;
7007
- version = " 4.0.4 " ;
7007
+ version = " 4.0.5 " ;
7008
7008
license =
7009
7009
OASISLicense. DEP5License
7010
7010
(OASISLicense. DEP5Unit
@@ -7104,7 +7104,13 @@ let setup_t =
7104
7104
},
7105
7105
{
7106
7106
flag_description = Some " Enable loadable extensions" ;
7107
- flag_default = [(OASISExpr. EBool true , true )]
7107
+ flag_default =
7108
+ [
7109
+ (OASISExpr. EBool true , false );
7110
+ (OASISExpr. ENot
7111
+ (OASISExpr. ETest (" system" , " macosx" )),
7112
+ true )
7113
+ ]
7108
7114
});
7109
7115
Library
7110
7116
({
@@ -7585,14 +7591,14 @@ let setup_t =
7585
7591
};
7586
7592
oasis_fn = Some " _oasis" ;
7587
7593
oasis_version = " 0.4.6" ;
7588
- oasis_digest = Some " \005\003 ÝËæôX \142 R. \156 urµÝý " ;
7594
+ oasis_digest = Some " 4 \003\004\002 R \199\b\205\137\004 0 \173\141\003\202 " ;
7589
7595
oasis_exec = None ;
7590
7596
oasis_setup_args = [] ;
7591
7597
setup_update = false
7592
7598
};;
7593
7599
7594
7600
let setup () = BaseSetup. setup setup_t;;
7595
7601
7596
- # 7597 " setup.ml"
7602
+ # 7603 " setup.ml"
7597
7603
(* OASIS_STOP *)
7598
7604
let () = setup () ;;
You can’t perform that action at this time.
0 commit comments