root / tags / 1.0.8 / xapian-core / backends / flint / Makefile.mk

Revision 9256, 1.8 kB (checked in by olly, 16 months ago)

common/msvc_posix_wrapper.cc,common/msvc_posix_wrapper.h: Add
msvc_posix_rename() which can rename a file on top of another file.
common/stringutils.h: Add common_prefix_length() function.
backends/flint/: Clean up FlintWritableDatabase? - it now just
inherits from FlintDatabase? which allows several virtual methods
which just forwarded to FlintDatabase? to be dropped. Also, we
now no longer need to pass FlintTable objects to other classes
- they can just find the tables they want via the database pointer.
The never-used "store_termfreqs" flag has been dropped from the
termlist table entries - existing 1.0.x flint databases will be
automatically upgraded to the new version. Opening a database
now calls stat() less, so should be slightly more efficient.
And TermIterator::positionlist_count() now works for the flint
backend.
tests/Makefile.am,tests/api_db.cc,tests/testdata/flint-1.0.2/: New
test flintbackwardcompat2 which tests that we can open a flint
database from 1.0.2.
tests/api_wrdb.cc: New test adddoc4 which checks that termlists
handle an initial term of any valid length correctly.
tests/testdata/flint-1.0.1/postlist.DB: Mark as a binary file in
SVN.

  • Property svn:eol-style set to native
Line 
1EXTRA_DIST +=\
2        backends/flint/dir_contents\
3        backends/flint/Makefile
4
5if BUILD_BACKEND_FLINT
6noinst_HEADERS +=\
7        backends/flint/contiguousalldocspostlist.h\
8        backends/flint/flint_alldocspostlist.h\
9        backends/flint/flint_alltermslist.h\
10        backends/flint/flint_btreebase.h\
11        backends/flint/flint_btreeutil.h\
12        backends/flint/flint_check.h\
13        backends/flint/flint_cursor.h\
14        backends/flint/flint_database.h\
15        backends/flint/flint_document.h\
16        backends/flint/flint_io.h\
17        backends/flint/flint_lock.h\
18        backends/flint/flint_modifiedpostlist.h\
19        backends/flint/flint_positionlist.h\
20        backends/flint/flint_postlist.h\
21        backends/flint/flint_record.h\
22        backends/flint/flint_spelling.h\
23        backends/flint/flint_spellingwordslist.h\
24        backends/flint/flint_synonym.h\
25        backends/flint/flint_table.h\
26        backends/flint/flint_termlist.h\
27        backends/flint/flint_termlisttable.h\
28        backends/flint/flint_types.h\
29        backends/flint/flint_utils.h\
30        backends/flint/flint_values.h\
31        backends/flint/flint_version.h
32
33libxapian_la_SOURCES +=\
34        backends/flint/contiguousalldocspostlist.cc\
35        backends/flint/flint_alldocspostlist.cc\
36        backends/flint/flint_alltermslist.cc\
37        backends/flint/flint_btreebase.cc\
38        backends/flint/flint_cursor.cc\
39        backends/flint/flint_database.cc\
40        backends/flint/flint_document.cc\
41        backends/flint/flint_io.cc\
42        backends/flint/flint_lock.cc\
43        backends/flint/flint_modifiedpostlist.cc\
44        backends/flint/flint_positionlist.cc\
45        backends/flint/flint_postlist.cc\
46        backends/flint/flint_record.cc\
47        backends/flint/flint_spelling.cc\
48        backends/flint/flint_spellingwordslist.cc\
49        backends/flint/flint_synonym.cc\
50        backends/flint/flint_table.cc\
51        backends/flint/flint_termlist.cc\
52        backends/flint/flint_termlisttable.cc\
53        backends/flint/flint_values.cc\
54        backends/flint/flint_version.cc
55
56noinst_LTLIBRARIES += libflintcheck.la
57
58libflintcheck_la_SOURCES =\
59        backends/flint/flint_check.cc
60endif
Note: See TracBrowser for help on using the browser.