I have found that the precompiled binaries for Linux sqlite-2.8.15 work with my application but since I need the sqlite library that is thread safe the performance is lousy.
I have compiled sqlite-2.8.15 with the original Makefile and modified versions that contained
THREADSAFE = -DTHREADSAFE=1
and
THREADSAFE = -DTHREADSAFE=1 THREADLIB = -lpthread
without any noticeable errors.
All three of these compiled versions cause my application to crash. I desperately need a thread safe Linux SQLite library and would appreciate your help.
Corwin