diff options
author | mattn <mattn.jp@gmail.com> | 2016-05-03 09:00:58 +0900 |
---|---|---|
committer | mattn <mattn.jp@gmail.com> | 2016-05-03 09:00:58 +0900 |
commit | 7204887cf3a42df1cfaa5505dc3a3427f6dded8b (patch) | |
tree | a7c01d7ce96650b0b297c60b7a141c4527e74f22 /sqlite3.go | |
parent | Merge pull request #299 from shaxbee/master (diff) | |
parent | Bump Travis to Ubuntu 14.04 (diff) | |
download | golite-7204887cf3a42df1cfaa5505dc3a3427f6dded8b.tar.gz golite-7204887cf3a42df1cfaa5505dc3a3427f6dded8b.tar.xz |
Merge pull request #302 from shaxbee/master
Build with libsqlite3 on Ubuntu 14.04 LTS
Diffstat (limited to 'sqlite3.go')
-rw-r--r-- | sqlite3.go | 4 |
1 files changed, 4 insertions, 0 deletions
@@ -29,6 +29,10 @@ package sqlite3 # define SQLITE_OPEN_FULLMUTEX 0 #endif +#ifndef SQLITE_DETERMINISTIC +# define SQLITE_DETERMINISTIC 0 +#endif + static int _sqlite3_open_v2(const char *filename, sqlite3 **ppDb, int flags, const char *zVfs) { #ifdef SQLITE_OPEN_URI |