Hi, I have tried building sqlite. SQLite is failing to build. Please help me in this regard.
1) I checked out the code to directory called sqlite 2) I modified the Makefile.in <http://makefile.in/> to allow loading extensions. We have to comment the following line #TCC += -DSQLITE_OMIT_LOAD_EXTENSION=1 3) Created a directory called build. Ran configure and make from there. 4) I get "undefined refernce to dlsym, dlopen, dlclose" error. Apparently the problem is with SQLite failing to find dynamic linker library. I added LDFLAGS to command line before running make Like this: LDFLAGS=-ldl make. Still it fails. Please tell me what is the error. Thanks! Kunal