Yuri wrote:
> Makefile.am has:
> AM_CFLAGS = @THREADSAFE_FLAGS@ @DYNAMIC_EXTENSION_FLAGS@ @FTS5_FLAGS@ 
> @JSON1_FLAGS@ @ZLIB_FLAGS@ @SESSION_FLAGS@ -DSQLITE_ENABLE_FTS3 
> -DSQLITE_ENABLE_RTREE
> sqlite3_CFLAGS = $(AM_CFLAGS) -DSQLITE_ENABLE_EXPLAIN_COMMENTS 
> -DSQLITE_ENABLE_DBPAGE_VTAB -DSQLITE_ENABLE_STMTVTAB 
> -DSQLITE_ENABLE_DBSTAT_VTAB
>
> But all of these options (with -D) are documented here 
> http://www.sqlite.org/compile.html as user-settable.

These options are used to compile the command-line shell (where you want
to have as many (debugging) features as possible), and to assemble the
amalgamation.

You might need to edit this makefile to set some SQLITE_OMIT_ options,
but in the general case, you can simply use your own options when you
compile sqlite3.c yourself.


Regards,
Clemens
_______________________________________________
sqlite-users mailing list
sqlite-users@mailinglists.sqlite.org
http://mailinglists.sqlite.org/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to