Small. Fast. Reliable.
Choose any three.
*** 8,13 ****
--- 8,15 ----
  
  --Derek
  
+ **readline-enabled SQLite on Mac OS X**
+ 
  To include readline support on Mac OS X, do the following --
  
  In latest version of readline source (4.3 when I did this), edit support/shobj-conf:
***************
*** 22,41 ****
  readline headers will get installed most likely under /usr/local/include
  
  Then, in the SQLite source 
! > ./configure
  
  Edit the Makefile:
- # Compiler options needed for programs that use the readline() library.
- #
- READLINE_FLAGS = -DHAVE_READLINE=1 -I/usr/local/include/readline
- 
- # The library that programs using readline() must link against.
- #
- LIBREADLINE = -lreadline
  
! > make
! > sudo make install
  
! You now have a happy, readline capable SQLite.
  
  -- pkishor
--- 24,47 ----
  readline headers will get installed most likely under /usr/local/include
  
  Then, in the SQLite source 
! 
!   > ./configure
  
  Edit the Makefile:
  
!   # Compiler options needed for programs that use the readline() library.
!   #
!   READLINE_FLAGS = -DHAVE_READLINE=1 -I/usr/local/include/readline
!   
!   # The library that programs using readline() must link against.
!   #
!   LIBREADLINE = -lreadline
!   
! Then...
! 
!   > make
!   > sudo make install
  
! You now have a happy, readline capable SQLite. (thanks to eno and instructions on the web)
  
  -- pkishor