On 21 Feb 2010, at 6:37am, James Campbell wrote: > After a successful run of “configure” with ”--disable-shared” added, > the “make” command resulted in this: > > shell.c:42:32: readline/readline.h: No such file or directory > > shell.c:43:31: readline/history.h: No such file or directory
Have you found these files on your disk somewhere and included them in your project ? Because they are different for each platform they're not included in the distribution, you have to include your own. On my 10.6.2 computer I have /Developer/SDKs/MacOSX10.5.sdk/usr/include/readline/readline.h /Developer/SDKs/MacOSX10.6.sdk/usr/include/readline/readline.h /usr/include/editline/readline.h /usr/include/readline/readline.h /Developer/SDKs/MacOSX10.5.sdk/usr/include/readline/history.h /Developer/SDKs/MacOSX10.6.sdk/usr/include/readline/history.h /usr/include/readline/history.h So you can either make sure it's finding them in your SDK, or include the ones specifically in /usr/include/readline . Simon. _______________________________________________ sqlite-users mailing list [email protected] http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

