All, I want to build libsqlite3.so without SQLITE_OMIT_LOAD_EXTENSION, i.e., with sqlite3_enable_load_extension in the resulting shared library. I want to do so in order to add a virtual table type that wraps a storage manager of my own.
I can do that by commenting out this line in the Makefile generated by configure: TCC += -DSQLITE_OMIT_LOAD_EXTENSION=1 and everything works. But I'm surprised I can't find a configure option (--enable-load-extensions or the like) to do it automatically. Am I confused, or is there some reason why there isn't such an option? Is there another, preferred method of loading virtual table extensions? Thanks in advance, Sean -- "Humanity has advanced, when it has advanced, not because it has been sober, responsible, and cautious, but because it has been playful, rebellious, and immature." -- Tom Robbins _______________________________________________ sqlite-users mailing list [email protected] http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

