mirror of https://github.com/perkeep/perkeep.git
Merge branch 'master' of ssh://camlistore.org:29418/camlistore
This commit is contained in:
commit
637df31ac7
|
@ -7,6 +7,7 @@ CGOFILES=\
|
|||
sqlite.go\
|
||||
|
||||
CGO_OFILES=\
|
||||
sqlite3_obj.o\
|
||||
sqlite3_os_go.o\
|
||||
|
||||
include $(GOROOT)/src/Make.pkg
|
||||
|
|
|
@ -0,0 +1,2 @@
|
|||
#define SQLITE_OS_OTHER 1
|
||||
#include "sqlite3.c"
|
|
@ -1,7 +1,10 @@
|
|||
#define _POSIX_C_SOURCE 200809L
|
||||
#include <stdlib.h>
|
||||
#include <string.h>
|
||||
|
||||
#include "_cgo_export.h"
|
||||
#define SQLITE_OS_OTHER 1
|
||||
#include "sqlite3.c"
|
||||
|
||||
#define SKIP_SQLITE_VERSION
|
||||
#include "sqlite3.h"
|
||||
|
||||
typedef struct GoFile GoFile;
|
||||
struct GoFile {
|
||||
|
|
Loading…
Reference in New Issue