Displaying 3 results from an estimated 3 matches for "api_backend".
Did you mean:
acl_backend
2015 Sep 14
1
xapian-core-1.2.21 ported to Interix / 'gmake check' compile error
...s backends, using flint, which
was the 1.0.x series' default, which ships with the 1.2.x series;
the disabling do to an unresolved 'ambiguous overload' error
encountered when compiling those backends.
Running 'gmake check' however I right away encountered an error:
../../tests/api_backend.cc: In function `bool test_phrasebug1()':
../../tests/api_backend.cc:951: error: `q' undeclared (first use this function)
../../tests/api_backend.cc:951: error: (Each undeclared identifier is reported
only once for each function it appears in.)
'htons' needed to be defined, which...
2015 Sep 15
0
xapian porting to Interix / conclusion
Report by Eric Lindblad 14-09-2015
http://www.ericlindblad.blogspot.com
cf: http://permalink.gmane.org/gmane.comp.search.xapian.general/9880
The 'gmake check' compile error on xapian-core-1.2.21/tests/api_backend.cc was resolved by the modification (at the suggestion of a mailing-list member) of the offending string from "q.OP_PHRASE" to "Xapian::Query::OP_PHRASE".
'gmake check' results
./apitest backend none: 57 tests passed, 1 failed.
./apitest backend inmemory: 220 tests pas...
2015 Oct 07
0
brass and chert compiled / xapian port to Interix
...Interix], and gcc-4.2 for the 1.3.x series (owing to the dependency on C++11 support), but that on the latter probably realistically something newer
some earlier cited code changes from my other posts
cf: http://permalink.gmane.org/gmane.comp.search.xapian.general/9883
/xapian-core-1.2.21/tests/api_backend.cc
- Xapian::Query q(q.OP_PHRASE, qterms, qterms + 2, 5);
+ Xapian::Query q(Xapian::Query::OP_PHRASE, qterms, qterms + 2, 5);
cf: http://permalink.gmane.org/gmane.comp.search.xapian.general/9880
/xapian-core-1.2.21/net/tcpclient.cc
#include <cmath>
#include <cstring>
#ifndef...