Hi list: Building with SQLite v. 3.16.2 and MS VC++ 2015 (v 14.0) there appeared a linker error:
Error LNK2019 external simbol _sqlite3FkReferences unresolved in function _sqlite3Insert Who belong (I suppose) to a compiler warning: line 109039: warning C4013: 'sqlite3FkReferences' undefined I use the following config.h, who compiles Ok with v. 3.9.1 and earlier. #define ZENABLE_FTS5 #define SQLITE_MAX_VARIABLE_NUMBER 25 #define SQLITE_DEFAULT_PAGE_SIZE 1024 #define SQLITE_THREADSAFE 1 #define SQLITE_OMIT_PROGRESS_CALLBACK 1 #define SQLITE_OMIT_FOREIGN_KEY 1 #define SQLITE_OMIT_AUTOVACUUM 1 #define SQLITE_OMIT_EXPLAIN 1 #define SQLITE_SECURE_DELETE 1 #define SQLITE_OMIT_BUILTIN_TEST 1 #define SQLITE_OMIT_TRACE 1 #define SQLITE_ENABLE_FTS5 1 Any clue of how surpass with a minimal distortion in the config file would be appreciated. -- Adolfo J. Millán Zator Systems _______________________________________________ sqlite-users mailing list [email protected] http://mailinglists.sqlite.org/cgi-bin/mailman/listinfo/sqlite-users

