Displaying 2 results from an estimated 2 matches for "b856f39".
Did you mean:
085639
2014 Apr 13
2
Adding an external library to Xapian
It is there:
https://github.com/sidmutha/xapian/blob/master/xapian-core/api/Makefile.mk#L53
On an other note, I'm trying to run ./bootstrap from the cloned repo. But
it gives an error saying "unknown option -C" followed by "Bootstrap failed".
*Siddhant Mutha*
Undergraduate Student
Department of Computer Science and Engineering
IIT Madras
Chennai
2014 Apr 13
2
Adding an external library to Xapian
...oint out beforehand. Hopefully
> once you get bootstrap working you'll be able to see these failures
> yourself. The patch I've applied to your master (on top of the git revert
> above) is:
>
> diff --git a/xapian-core/api/trie.cc b/xapian-core/api/trie.cc
> index eba3a15..b856f39 100644
> --- a/xapian-core/api/trie.cc
> +++ b/xapian-core/api/trie.cc
> @@ -33,10 +33,10 @@ Trie::Trie() {
> void
> Trie::add_term(std::string term) {
> struct trie_node *curr_node = &root;
> - for (int i = 0; i < term.size(); ++i) {
> + for (un...