paul breen wrote: > I want to build sqlite3.dll with fts3 support. > > I found "#ifdef SQLITE_ENABLE_FTS3" by searching the code but I do not know > how to "def" SQLITE_ENABLE_FTS3. I can guess by setting it to some value > somewhere. > Please tell me how to do this and I will go back to powerbasic and leave > you guys alone. >
Paul, You can use brute force and add the following line to the beginning of your copy of the amalgamation source file. #define SQLITE_ENABLE_FTS3 Or you can add the definition to your compiler command line by adding this option to the command -DSQLITE_ENABLE_FTS3 Or you can add the definition to your IDE's project options file. I'm not sure how to do this with VS 2005, but you can probably find it in the help for additional compiler definitions. HTH Dennis Cote _______________________________________________ sqlite-users mailing list sqlite-users@sqlite.org http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users