Hello,

In version 3.3.6 of sqlite, the functions sqlite3StrICmp and 
sqlite3StrNICmp were extern:

/usr/local/lib>nm -C libsqlite3.so | grep ICmp
0005c63c T sqlite3StrICmp
0005c744 T sqlite3StrNICmp
 
In more recent versions like the current one (3.6.16), those functions are 
intern:

/usr/local/lib>nm -C libsqlite3.so | grep ICmp
0005c63c t sqlite3StrICmp
0005c744 t sqlite3StrNICmp

This causes, for example, the current version of CVSTrac (v2.0.1 
28/01/2007)  to fail from compiling.

Why are those functions not extern anymore? What is recommended to use 
instead in the client application?

Thanks,
Pierre
_______________________________________________
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to