On Wed, Aug 17, 2011 at 5:09 PM, Roger Binns <rog...@rogerbinns.com> wrote:

> They are part of the standalone shell (ie not the library).  The shell
> source code is under the same license as the rest of SQLite (ie as
> public domain as possible) so you are free to make a copy and do
> whatever you want with it.
>
>
Just to be pedantic for a moment: the shell is GPL if you #define
USE_READLINE to a true value. Such is the reality of viral licenses. From
shell.c:

#if USE_READLINE
# include <readline/readline.h>
# include <readline/history.h>
#else
# define readline(p) local_getline(p,stdin)
# define add_history(X)
# define read_history(X)
# define write_history(X)
# define stifle_history(X)
#endif


-- 
----- stephan beal
http://wanderinghorse.net/home/stephan/
_______________________________________________
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to