forked from mirror/go-sqlite3
change angle bracket import to quotes (#868)
This commit is contained in:
parent
5671e01493
commit
2b131e01c1
|
@ -7,7 +7,7 @@ package sqlite3
|
||||||
|
|
||||||
/*
|
/*
|
||||||
#ifndef USE_LIBSQLITE3
|
#ifndef USE_LIBSQLITE3
|
||||||
#include <sqlite3-binding.h>
|
#include "sqlite3-binding.h"
|
||||||
#else
|
#else
|
||||||
#include <sqlite3.h>
|
#include <sqlite3.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -12,7 +12,7 @@ package sqlite3
|
||||||
|
|
||||||
/*
|
/*
|
||||||
#ifndef USE_LIBSQLITE3
|
#ifndef USE_LIBSQLITE3
|
||||||
#include <sqlite3-binding.h>
|
#include "sqlite3-binding.h"
|
||||||
#else
|
#else
|
||||||
#include <sqlite3.h>
|
#include <sqlite3.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
2
error.go
2
error.go
|
@ -7,7 +7,7 @@ package sqlite3
|
||||||
|
|
||||||
/*
|
/*
|
||||||
#ifndef USE_LIBSQLITE3
|
#ifndef USE_LIBSQLITE3
|
||||||
#include <sqlite3-binding.h>
|
#include "sqlite3-binding.h"
|
||||||
#else
|
#else
|
||||||
#include <sqlite3.h>
|
#include <sqlite3.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -24,7 +24,7 @@ package sqlite3
|
||||||
#cgo openbsd CFLAGS: -I/usr/local/include
|
#cgo openbsd CFLAGS: -I/usr/local/include
|
||||||
#cgo openbsd LDFLAGS: -L/usr/local/lib
|
#cgo openbsd LDFLAGS: -L/usr/local/lib
|
||||||
#ifndef USE_LIBSQLITE3
|
#ifndef USE_LIBSQLITE3
|
||||||
#include <sqlite3-binding.h>
|
#include "sqlite3-binding.h"
|
||||||
#else
|
#else
|
||||||
#include <sqlite3.h>
|
#include <sqlite3.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -8,7 +8,7 @@ package sqlite3
|
||||||
/*
|
/*
|
||||||
|
|
||||||
#ifndef USE_LIBSQLITE3
|
#ifndef USE_LIBSQLITE3
|
||||||
#include <sqlite3-binding.h>
|
#include "sqlite3-binding.h"
|
||||||
#else
|
#else
|
||||||
#include <sqlite3.h>
|
#include <sqlite3.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -9,7 +9,7 @@ package sqlite3
|
||||||
|
|
||||||
/*
|
/*
|
||||||
#ifndef USE_LIBSQLITE3
|
#ifndef USE_LIBSQLITE3
|
||||||
#include <sqlite3-binding.h>
|
#include "sqlite3-binding.h"
|
||||||
#else
|
#else
|
||||||
#include <sqlite3.h>
|
#include <sqlite3.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -13,7 +13,7 @@ package sqlite3
|
||||||
#cgo LDFLAGS: -lm
|
#cgo LDFLAGS: -lm
|
||||||
|
|
||||||
#ifndef USE_LIBSQLITE3
|
#ifndef USE_LIBSQLITE3
|
||||||
#include <sqlite3-binding.h>
|
#include "sqlite3-binding.h"
|
||||||
#else
|
#else
|
||||||
#include <sqlite3.h>
|
#include <sqlite3.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -5,7 +5,7 @@
|
||||||
|
|
||||||
#ifdef SQLITE_ENABLE_UNLOCK_NOTIFY
|
#ifdef SQLITE_ENABLE_UNLOCK_NOTIFY
|
||||||
#include <stdio.h>
|
#include <stdio.h>
|
||||||
#include <sqlite3-binding.h>
|
#include "sqlite3-binding.h"
|
||||||
|
|
||||||
extern int unlock_notify_wait(sqlite3 *db);
|
extern int unlock_notify_wait(sqlite3 *db);
|
||||||
|
|
||||||
|
|
|
@ -12,7 +12,7 @@ package sqlite3
|
||||||
#cgo CFLAGS: -DSQLITE_ENABLE_UNLOCK_NOTIFY
|
#cgo CFLAGS: -DSQLITE_ENABLE_UNLOCK_NOTIFY
|
||||||
|
|
||||||
#include <stdlib.h>
|
#include <stdlib.h>
|
||||||
#include <sqlite3-binding.h>
|
#include "sqlite3-binding.h"
|
||||||
|
|
||||||
extern void unlock_notify_callback(void *arg, int argc);
|
extern void unlock_notify_callback(void *arg, int argc);
|
||||||
*/
|
*/
|
||||||
|
|
|
@ -11,7 +11,7 @@ package sqlite3
|
||||||
#cgo CFLAGS: -DSQLITE_USER_AUTHENTICATION
|
#cgo CFLAGS: -DSQLITE_USER_AUTHENTICATION
|
||||||
#cgo LDFLAGS: -lm
|
#cgo LDFLAGS: -lm
|
||||||
#ifndef USE_LIBSQLITE3
|
#ifndef USE_LIBSQLITE3
|
||||||
#include <sqlite3-binding.h>
|
#include "sqlite3-binding.h"
|
||||||
#else
|
#else
|
||||||
#include <sqlite3.h>
|
#include <sqlite3.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -19,7 +19,7 @@ package sqlite3
|
||||||
#cgo CFLAGS: -Wno-deprecated-declarations
|
#cgo CFLAGS: -Wno-deprecated-declarations
|
||||||
|
|
||||||
#ifndef USE_LIBSQLITE3
|
#ifndef USE_LIBSQLITE3
|
||||||
#include <sqlite3-binding.h>
|
#include "sqlite3-binding.h"
|
||||||
#else
|
#else
|
||||||
#include <sqlite3.h>
|
#include <sqlite3.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -9,7 +9,7 @@ package sqlite3
|
||||||
|
|
||||||
/*
|
/*
|
||||||
#ifndef USE_LIBSQLITE3
|
#ifndef USE_LIBSQLITE3
|
||||||
#include <sqlite3-binding.h>
|
#include "sqlite3-binding.h"
|
||||||
#else
|
#else
|
||||||
#include <sqlite3.h>
|
#include <sqlite3.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
|
@ -6,7 +6,7 @@ package sqlite3
|
||||||
|
|
||||||
/*
|
/*
|
||||||
#ifndef USE_LIBSQLITE3
|
#ifndef USE_LIBSQLITE3
|
||||||
#include <sqlite3-binding.h>
|
#include "sqlite3-binding.h"
|
||||||
#else
|
#else
|
||||||
#include <sqlite3.h>
|
#include <sqlite3.h>
|
||||||
#endif
|
#endif
|
||||||
|
|
Loading…
Reference in New Issue