mirror of https://github.com/perkeep/perkeep.git
sqlite: add place to put windows stuff
Change-Id: I53dd835401f824af8f2129a66016f0d23fcde793
This commit is contained in:
parent
4429eb8bbb
commit
d1f82c3464
|
@ -1,4 +1,10 @@
|
|||
#define SQLITE_OS_OTHER 1
|
||||
#if defined(_WIN32) || defined(WIN32) || defined(__CYGWIN__) || defined(__MINGW32__)
|
||||
# error Not working on Windows yet
|
||||
#elif defined(__unix__)
|
||||
# define SQLITE_OS_OTHER 1
|
||||
#else
|
||||
# error Unsupported OS
|
||||
#endif
|
||||
|
||||
#ifndef INCLUDE_SQLITE_VERSION_SYMBOL
|
||||
#define SKIP_SQLITE_VERSION
|
||||
|
|
Loading…
Reference in New Issue