Re: Can't compile notmuch-delivery

2012-05-31 Thread Tomi Ollila
On Fri, Jun 01 2012, Jostein Gogstad wrote: > Hi, > > I'm trying to compile notmuch-deliver, but after I get this error: > > CC main.o > main.c: In function ‘main’: > main.c:432: error: too few arguments to function ‘notmuch_database_open’ > make[2]: *** [main.o] Error 1 > > Any ideas

Can't compile notmuch-delivery

2012-05-31 Thread Jostein Gogstad
Hi, I'm trying to compile notmuch-deliver, but after I get this error: CC main.o main.c: In function ?main?: main.c:432: error: too few arguments to function ?notmuch_database_open? make[2]: *** [main.o] Error 1 Any ideas? Tried with the version that ships with 0.13, and the version

Can't compile notmuch-delivery

2012-05-31 Thread Jostein Gogstad
Hi, I'm trying to compile notmuch-deliver, but after I get this error: CC main.o main.c: In function ‘main’: main.c:432: error: too few arguments to function ‘notmuch_database_open’ make[2]: *** [main.o] Error 1 Any ideas? Tried with the version that ships with 0.13, and the version

[PATCH v2 7/9] test/count: fix numeric comparision tests on FreeBSD

2012-05-31 Thread Jani Nikula
On Wed, 30 May 2012, Tomi Ollila wrote: > On Wed, May 30 2012, Jameson Graef Rollins > wrote: > >> On Wed, May 30 2012, Mike Kelly wrote: >>> FreeBSD's `wc -l` includes some white space in front of the number. >>> Instead, we add a test_expect_equal_num() to test-lib.sh, which ensures >>> we do

[PATCH v2 3/9] Makefile.local: define _GNU_SOURCE

2012-05-31 Thread Jani Nikula
On Wed, 30 May 2012, Mike Kelly wrote: > Several places currently define _GNU_SOURCE above the #includes to make > sure that things like 'getline(3)' are available, but defining these in > one place also helps to improve portability to other platforms where > these may not be available otherwise.

Re: [PATCH v2 7/9] test/count: fix numeric comparision tests on FreeBSD

2012-05-31 Thread Jani Nikula
On Wed, 30 May 2012, Tomi Ollila wrote: > On Wed, May 30 2012, Jameson Graef Rollins wrote: > >> On Wed, May 30 2012, Mike Kelly wrote: >>> FreeBSD's `wc -l` includes some white space in front of the number. >>> Instead, we add a test_expect_equal_num() to test-lib.sh, which ensures >>> we do a

Re: [PATCH v2 3/9] Makefile.local: define _GNU_SOURCE

2012-05-31 Thread Jani Nikula
On Wed, 30 May 2012, Mike Kelly wrote: > Several places currently define _GNU_SOURCE above the #includes to make > sure that things like 'getline(3)' are available, but defining these in > one place also helps to improve portability to other platforms where > these may not be available otherwise.

[PATCH v2 7/9] test/count: fix numeric comparision tests on FreeBSD

2012-05-31 Thread Tomi Ollila
On Wed, May 30 2012, Jameson Graef Rollins wrote: > On Wed, May 30 2012, Mike Kelly wrote: >> FreeBSD's `wc -l` includes some white space in front of the number. >> Instead, we add a test_expect_equal_num() to test-lib.sh, which ensures >> we do a proper numeric comparision, and in a portable w