Commit 75565d48 authored by gwenn's avatar gwenn

Try to fix Travis build.

parent b166e40d
......@@ -12,7 +12,11 @@ package sqlite
#include <stdlib.h>
static int goSqlite3ConfigMMapSize(sqlite3_int64 defaultSize, sqlite3_int64 maxSize) {
#if SQLITE_VERSION_NUMBER < 3007017
return -1;
#else
return sqlite3_config(SQLITE_CONFIG_MMAP_SIZE, defaultSize, maxSize);
#endif
}
*/
import "C"
......
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment