In sqlite3.c, version 3.7.4, line 28396 is:
struct timespec timeout = {1, 0}; /* 1 sec timeout */
This declaration should be moved inside this #if
#if defined(__MAX_OS_X_VERSION_MIN_REQUIRED)\
&& __MAC_OS_X_VERSION_MIN_REQUIRED<1050
because presently you get a compiler warning of "unused variable" if the #if
condition is not satisfied, that is, if you're compiling for only recent
versions of Mac OS X.
_______________________________________________
sqlite-users mailing list
[email protected]
http://sqlite.org:8080/cgi-bin/mailman/listinfo/sqlite-users