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