Hello

I am trying to find out why my SQLite does not accept non ascii characters.
So, I compiled readline 6.0 and tried to compile sqlite with it.
As you might imagine at first SQLite detects the system (MAC OS) readline
library.

To use a custom readline I noticed in the configure script:
  --with-readline-lib     specify readline library
  --with-readline-inc     specify readline include paths

But I found out these flags not working as one usually expect on a configure
script.
I was expecting something like:

  --with-readline-lib=/opt/local/lib
--with-readline-inc=/opt/local/include/readline

but what the configure script was expecting was something like

  --with-readline-lib="-L/opt/local/lib -lreadline"
--with-readline-inc="-I/opt/local/include/readline"

(well, at least it compiled this way)

Therefore, this mail is a suggestion of making that two documentation line
clearer, probably with an example of what is expected.

Oh, by the way, the non-ascii characters are now recognized :)

Cheers
Alberto
-- 
Alberto Simões
_______________________________________________
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to