Small. Fast. Reliable.
Choose any three.
*** 14,19 ****
--- 14,37 ----
  
  --Derek
  
+ Note that sqlite won't find readline if it's installed in an "unusual" location.  (And setting LDFLAGS, CPPFLAGS doesn't help either--see #151.)
+ 
+ If you need to link against such a readline, configure as normal (it will complain about readline not being able to be found), then edit the resultant Makefile like so:
+ 
+ <html>
+ <pre>
+ # Compiler options needed for programs that use the readline() library.
+ #
+ READLINE_FLAGS = -DHAVE_READLINE=1 -I/home/mjs/local/include
+ 
+ # The library that programs using readline() must link against.
+ #
+ LIBREADLINE = -L/home/mjs/local-linux/lib -lreadline -lncurses
+ </pre>
+ </html>
+ 
+ --Michael
+ 
  Don't download libedit from sourceforge that version is nearly four years old.  I changed the link above
  to point to ftp://ftp.astron.com/pub/libedit/ (there is no current web site and it is virtually impossible
  to find)