Re: [dev] dmenu tip build error

2012-01-25 Thread Carsten Mattner
On Wed, Jan 25, 2012 at 11:52 AM, Aragon Gouveia wrote: > On 01/25/12 12:26, Connor Lane Smith wrote: >> >> I think that patch is GNU-specific. The problem is that using >> -D_POSIX_C_SOURCE=2 was breaking builds on FreeBSD > > > FWIW, my update to FreeBSD's dmenu port patches those bits, so it's

Re: [dev] dmenu tip build error

2012-01-25 Thread Aragon Gouveia
On 01/25/12 12:26, Connor Lane Smith wrote: I think that patch is GNU-specific. The problem is that using -D_POSIX_C_SOURCE=2 was breaking builds on FreeBSD FWIW, my update to FreeBSD's dmenu port patches those bits, so it's probably OK if you don't worry too much about it for FreeBSD. :)

Re: [dev] dmenu tip build error

2012-01-25 Thread Connor Lane Smith
Hey, On 25 January 2012 09:40, Carsten Mattner wrote: > it seems that the commit 484:0b6490d9a62b "remove _POSIX_C_SOURCE cflag" > broke the build on at least Fedora 16. > > The following patch fixes it on Fedora 16. I haven't tested it on anything > else. I think that patch is GNU-specific. Th

[dev] dmenu tip build error

2012-01-25 Thread Carsten Mattner
Hi, it seems that the commit 484:0b6490d9a62b "remove _POSIX_C_SOURCE cflag" broke the build on at least Fedora 16. The following patch fixes it on Fedora 16. I haven't tested it on anything else. diff -r 1659395e4de0 stest.c --- a/stest.c Thu Jan 19 22:52:17 2012 + +++ b/stest.c Wed Jan

Re: [dev] [dmenu] tip

2011-05-17 Thread Petr Sabata
On Tue, May 17, 2011 at 08:33:53AM +0200, Troels Henriksen wrote: > Bryan Bennett writes: > > > Connor - I've just built tip and upon initial usage, I've had 0 > > problems with it. Looks good from my end. > > I've been using it as well, with no problems yet. > > -- > \ Troels > /\ Henriksen

Re: [dev] [dmenu] tip

2011-05-16 Thread Troels Henriksen
Bryan Bennett writes: > Connor - I've just built tip and upon initial usage, I've had 0 > problems with it. Looks good from my end. I've been using it as well, with no problems yet. -- \ Troels /\ Henriksen

Re: [dev] [dmenu] tip

2011-05-16 Thread Bryan Bennett
Connor - I've just built tip and upon initial usage, I've had 0 problems with it. Looks good from my end. Bryan

Re: [dev] [dmenu] tip

2011-05-16 Thread Dieter Plaetinck
On Sun, 15 May 2011 22:46:17 +0100 Connor Lane Smith wrote: > Hey all, > > I've been tinkering with dmenu the last few days. I think it would be > good to get a 4.3 release out at some point soon, so if anyone could > report any bugs to me that would be swell. > A brief list of changes: > > In

[dev] [dmenu] tip

2011-05-15 Thread Connor Lane Smith
Hey all, I've been tinkering with dmenu the last few days. I think it would be good to get a 4.3 release out at some point soon, so if anyone could report any bugs to me that would be swell. A brief list of changes: In terms of SLOC, tip is about the size of 4.0 and most of the 3.x series, with a

Re: [dev] [dmenu] tip missing header

2010-06-24 Thread Surma
> Could you update your config.h to > the new tip config.def.h (by just removing the "static" keywords), and > confirm whether it compiles now? Yup, new tip compiles just fine. :) I didn't say my fix was the right way to do it, but I also didn't want to make my self familiar with the entire codeba

Re: [dev] [dmenu] tip missing header

2010-06-24 Thread Connor Lane Smith
Hey, On 24/06/2010, ⚖ Alexander "Surma" Surma wrote: > dmenu hg tip misses the include of config.h in draw.c > Results in unresolved symbols when compiling I was a little confused, since compilation works perfectly for me, until I checked config.def.h: the symbols are static, so unlike the other

[dev] [dmenu] tip missing header

2010-06-24 Thread Surma
dmenu hg tip misses the include of config.h in draw.c Results in unresolved symbols when compiling diff -r 5fb4741fa436 draw.c --- a/draw.cWed Jun 23 14:29:32 2010 +0100 +++ b/draw.cThu Jun 24 11:11:52 2010 +0200 @@ -7,6 +7,7 @@ #include #include #include +#include "config.h" #inclu