Re: [sqlite] SQLite 3.6.4 link problem on WindowsCE

2008-10-24 Thread Fin Springs
On Oct 23, 2008, at 4:34 PM, Shane Harrelson shane-at-sqlite.org | sqlite| wrote: > This was (hopefully) corrected by check-in [5837] yesterday. > Confirmation that this fix works for you would be appreciated. I pulled the tip from CVS, ran configure and make from cygwin then copied sqlite3.

Re: [sqlite] SQLite 3.6.4 link problem on WindowsCE

2008-10-23 Thread Shane Harrelson
Thanks for the report. The problem has existed in SQLite since version 3.6.1. This has already been reported in multiple tickets, see tickets #3420 and #3448. This was caused by check-ins [5450] and [5441] which removed dead code and exposed the undefined symbols. This was (hopefully) corrected by

Re: [sqlite] SQLite 3.6.4 link problem on WindowsCE

2008-10-23 Thread Fin Springs
Interestingly this is only a problem if I build our app debug. I'm guessing the release build optimizes out the else clauses because it can see that isNT() is defined as "1". ___ sqlite-users mailing list sqlite-users@sqlite.org http://sqlite.org:80

[sqlite] SQLite 3.6.4 link problem on WindowsCE

2008-10-23 Thread Fin Springs
I am getting 4 link errors when compiling for our Windows CE 5 platform with the amalgamated version of 3.6.4. They are for CreateFileA, GetFileAttributesA, DeleteFileA and LoadLibraryA. From looking at the code, isNT() is defined to 1 for CE, and the above four functions are in else cases