On Wed, 26 Mar 2003, Tibor Dekany wrote:
>Ok, this was my first try to compile bincimap myself, because there
>aren't any precompiled .debs yet :)
>I downloaded and untared Version 1.1.1-1, and after ./configure && make
>I get this output:
Yes - apply this patch and see if it solves your problem:
Andy :-)
Index: src/operators.h
===================================================================
RCS file: /home/andreaha/cvs/bincimap/src/operators.h,v
retrieving revision 1.7
diff -u -r1.7 operators.h
--- src/operators.h 24 Mar 2003 09:42:55 -0000 1.7
+++ src/operators.h 27 Mar 2003 07:18:47 -0000
@@ -288,6 +288,7 @@
protected:
bool expectSearchKey(BincImapParserSearchKey &s_in) const;
+ //------------------------------------------------------------------
class SearchNode {
std::string date;
@@ -325,19 +326,20 @@
void setWeight(int i);
void init(const BincImapParserSearchKey &a);
+
+ //-
+ static bool compareNodes(const SearchNode &a,
+ const SearchNode &b)
+ {
+ return a.getWeight() < b.getWeight();
+ }
SearchNode(void);
SearchNode(const BincImapParserSearchKey &a);
};
-
-
//----------------------------------------------------------------------
- static bool compareNodes(const SearchNode &a,
- const SearchNode &b)
- {
- return a.getWeight() < b.getWeight();
- }
-
+
public:
+
void process(Depot &, BincImapParserCommand &) const;
virtual bool parse(BincImapParserCommand &) const;