On Tue, May 13, 2008 at 12:28 AM, Samuel Neff <[EMAIL PROTECTED]> wrote:
>
>  One other issue we're having and are not sure about is we get a compiler
>  error on sqlite3_profile and sqlite3_trace.  We need to remove these two
>  lines from the def file included with the sqlite source in order to get
>  everything to compile ok on VS 2008.  are sqlite3_profile and sqlite3_trace
>  included by default in both the source and def or is there a mismatch?  Or
>  is there something else we should be doing besides editing the def file
>  manually?
>

Presumably you're either defining SQLITE_OMIT_TRACE or
SQLITE_OMIT_FLOATING_POINT, which omits both of those functions from
the build, and since sqlite3.def is static it has to be updated.  I'd
hazard a guess that updating it yourself is currently required, but I
don't build on Windows, so I'm really not sure - DRH would know more
about this.

The makefile does have a target to re-generate sqlite3.def on the fly,
but that's meant for Cygwin-based builds.

-- 
Matthew L. Creech
_______________________________________________
sqlite-users mailing list
sqlite-users@sqlite.org
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users

Reply via email to