I have a compilation problem with line 22 in fts3Int.h: #include <sqlite3.h>
According to http://gcc.gnu.org/onlinedocs/cpp/Include-Syntax.html, <file> includes are used for system header files, which sqlite3.h is not IMHO. I tried to replace with #include "sqlite3.h" but this resulted in a number of unknown identifiers further down the code. Finally I changed it to #include "sqliteInt.h" and the code compiled happily. Testing showed that it also worked OK. Am I on the right track? Ralf _______________________________________________ sqlite-users mailing list [email protected] http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

