Package: xapian-core / 1.2.19-1+deb8u1

Metadata

Package Version Patches format
xapian-core 1.2.19-1+deb8u1 3.0 (quilt)

Patch series

view the series file
Patch File delta Description
force serial tests.patch | (download)

tests/Makefile.am | 2 1 + 1 - 0 !
1 file changed, 1 insertion(+), 1 deletion(-)

 force serial-tests in automake
 Newer automake defaults to a parallel test driver, which swallows all output
 until the test program has finished.  This may lead to builds timing out due
 to not producing any output for changes, and is generally less helpful for
 debugging a FTBFS in the testsuite, so force the serial-tests option, which
 was the only option in older automake.  This option was added in automake
 1.12, so we require that too.
increment cursor version on cancel or reopen.patch | (download)

backends/brass/brass_cursor.cc | 3 2 + 1 - 0 !
backends/brass/brass_table.cc | 10 10 + 0 - 0 !
backends/chert/chert_cursor.cc | 3 2 + 1 - 0 !
backends/chert/chert_table.cc | 10 10 + 0 - 0 !
backends/flint/flint_cursor.cc | 3 2 + 1 - 0 !
backends/flint/flint_table.cc | 10 10 + 0 - 0 !
tests/api_backend.cc | 42 42 + 0 - 0 !
7 files changed, 78 insertions(+), 3 deletions(-)

 increment cursor version of cancel or reopen
 Potentially increment the cursor version on cancel() or when the database is
 reopened, and flag the current cursor version as used when a cursor is
 rebuilt.
 .
 Fixes database corruption issues with certain usage patterns, which recoll
 can trigger.