Skip to content

Commit 3a55553

Browse files
committed
Move sqlite3 amalgation files a directory up.
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
1 parent 37aa7c6 commit 3a55553

File tree

5 files changed

+195219
-5
lines changed

5 files changed

+195219
-5
lines changed

backup.go

Lines changed: 4 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,11 @@
66
package sqlite3
77

88
/*
9+
#ifndef USE_LIBSQLITE3
910
#include <sqlite3-binding.h>
11+
#else
12+
#include <sqlite3.h>
13+
#endif
1014
#include <stdlib.h>
1115
*/
1216
import "C"

0 commit comments

Comments
 (0)