I was able to duplicate the issue, and I've updated the configure
scripts to correct the problem.
If you are generating your makefile using configure, you can pass it
options like this:

   configure CFLAGS=-DSQLITE_ENABLE_UPDATE_DELETE_LIMIT=1

This will generate a makefile which passes the
SQLITE_ENABLE_UPDATE_DELETE_LIMIT option to the build components.
If you already have a makefile generated by configure, you should be
able to add custom compile options like this:

   make OPTS=-DSQLITE_ENABLE_UPDATE_DELETE_LIMIT=1

or for multiple options:

   make "OPTS=-DSQLITE_ENABLE_UPDATE_DELETE_LIMIT=1 -DSQLITE_OMIT_TRIGGER=1"

HTH.
-Shane
_______________________________________________
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to