Konstantin Antselovich wrote: > I have updated to Cogito-0.11.3, it compiles and runs > but make test returns multiple error messages (see below) There's a typo in rev-list.c. This fixes the tests for me: diff --git a/rev-list.c b/rev-list.c --- a/rev-list.c +++ b/rev-list.c @@ -218,7 +218,7 @@ int main(int argc, char **argv) list = limit_list(list); show_commit_list(list); } else { -#ifdef NO_OPENSSL +#ifndef NO_OPENSSL if (sort_list_in_merge_order(list, &process_commit)) { die("merge order sort failed\n"); } - To unsubscribe from this list: send the line "unsubscribe git" in the body of a message to majordomo@vger.kernel.org More majordomo info at http://vger.kernel.org/majordomo-info.htmlReceived on Thu Jun 09 23:38:38 2005
This archive was generated by hypermail 2.1.8 : 2005-06-09 23:38:40 EST