aboutsummaryrefslogtreecommitdiff
path: root/sqlite3-binding.c (follow)
Commit message (Collapse)AuthorAgeFilesLines
* use amalgamation 3.14.0Yasuhiro Matsumoto2016-08-111-353/+268
|
* update amalgamation codeYasuhiro Matsumoto2016-08-111-3647/+12263
|
* upgrade sqlite amalgamation to 3.12.2Steffen2016-05-141-7135/+10411
|
* Move sqlite3 amalgation files a directory up.David Bariod2016-04-021-2/+186041
| | | | | | The purpose is to ease the use of vendoring files like godep. The C sqlite3 files have been added a go compilation conditional flag Fix #293
* hack to use libsqlite3Yasuhiro Matsumoto2015-06-121-147780/+2
| | | | $ go build -tags "libsqlite3 windows"
* Rename sqlite3.{c,h} to sqlite3-binding.{c,h}Stéphane Graber2015-03-111-0/+147782
This fixes the problem where when building with gccgo, sqlite3.c is overwritten, leading to a build failure. An alternative would have been to move sqlite3*.{c,h} to a subdirectory, but that seems to confuse the linker a fair bit and would just swap one implementation-dependent issue for another. Closes #20 Signed-off-by: Stéphane Graber <stgraber@ubuntu.com>