Small. Fast. Reliable.
Choose any three.
*** 14,27 ****
  
  --Derek
  
! 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)
  
! Libedit and readline clash if you try to install them both on the same system, so It might take a little effort getting it compiled.
  --Mike
  
  **SQLite with readline already enabled**
  
- 
  SQLite is available from Fink for OSX with readline already installed. Presently version 2.8.5.
  
  SQLite and SQLite3 are available from Darwinports... both support a Readline variant.
--- 14,29 ----
  
  --Derek
  
! 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)
  
! Libedit and readline clash if you try to install them both on the same system, so It might take a little 
! effort getting it compiled.
  --Mike
  
  **SQLite with readline already enabled**
  
  SQLite is available from Fink for OSX with readline already installed. Presently version 2.8.5.
  
  SQLite and SQLite3 are available from Darwinports... both support a Readline variant.
***************
*** 54,59 ****
--- 56,71 ----
    # The library that programs using readline() must link against.
    #
    LIBREADLINE = -lreadline
+ 
+ _Alternatively, to use fink's readline_
+ 
+   # Compiler options needed for programs that use the readline() library.
+   #
+   READLINE_FLAGS = -DHAVE_READLINE=1 -I/sw/include
+ 
+   # The library that programs using readline() must link against.
+   #
+   LIBREADLINE = -L/sw/lib -lreadline
    
  Then...