On Tue, Apr 14, 2009 at 20:42, Christian Boos <cboos_at_neuf.fr> wrote:
>...
>> Â >> ...
>>> +++ trunk/subversion/libsvn_subr/sqlite.c    Sun Apr 12 08:14:29 2009
>>> Â Â Â Â (r37185)
>>> @@ -597,8 +597,12 @@ init_sqlite(apr_pool_t *pool)
>>> Â Â Â Â Â Â Â Â Â Â Â Â Â Â Â "thread-safe mode"));
>>> Â #endif
>>> Â #if SQLITE_VERSION_AT_LEAST(3,6,0)
>>> - Â SQLITE_ERR_MSG(sqlite3_config(SQLITE_CONFIG_MULTITHREAD),
>>> - Â Â Â Â Â Â Â Â "Could not configure SQLite");
>>> + Â /* If SQLite has been already initialized, sqlite3_config() returns
>>> + Â Â SQLITE_MISUSE. */
>>> + Â int err = sqlite3_config(SQLITE_CONFIG_MULTITHREAD);
>>> + Â if (err != SQLITE_OK && err != SQLITE_MISUSE)
>>> + Â Â return svn_error_create(SQLITE_ERROR_CODE(err), NULL,
>>> + Â Â Â Â Â Â Â Â Â Â Â Â Â Â "Could not configure SQLite");
>>> Â SQLITE_ERR_MSG(sqlite3_initialize(), "Could not initialize SQLite");
>>> Â #endif
>>> Â Â >
>> You'll need some braces in there for that variable declaration (can't
>> (portably) declare the variable mid-block).
>>
> That fix is also needed for Trac, see http://trac.edgewall.org/ticket/8199
> Would you please consider porting that change to the 1.6.x branch? Thanks!
Sure... it's already on track for backporting to 1.6.2
Cheers,
-g
------------------------------------------------------
http://subversion.tigris.org/ds/viewMessage.do?dsForumId=462&dsMessageId=1714684
Received on 2009-04-14 20:50:45 CEST