tags 665363 + patch
thanks

Hey!

I've found that disabling HAVE_MALLOC_USABLE_SIZE in config.h before
building sqlite3, allows bogofilter-sqlite to complete its test suite
without errors.

The new code that introduced this regression on 64-bit platforms, can be
easily disabled in configure.ac using my attached patch.

Regards,
-- 
Steven Chamberlain
ste...@pyro.eu.org
Description: Disable malloc_usable_size
 Disable code introduced in sqlite 3.7.10 using malloc_usable_size, as it caused
 a regression on 64-bit platforms.
Author: Steven Chamberlain <ste...@pyro.eu.org>
Bug-Debian: http://bugs.debian.org/665363

--- sqlite3-3.7.11.orig/configure.ac
+++ sqlite3-3.7.11/configure.ac
@@ -127,7 +127,7 @@
 #########
 # Figure out whether or not we have these functions
 #
-AC_CHECK_FUNCS([usleep fdatasync localtime_r gmtime_r localtime_s utime malloc_usable_size])
+AC_CHECK_FUNCS([usleep fdatasync localtime_r gmtime_r localtime_s utime])
 
 #########
 # By default, we use the amalgamation (this may be changed below...)

Reply via email to