[Geany-Devel] build.c missing win32.h include

2014-08-01 Thread Nick Treleaven
Hi, I haven't built Geany for some time. I remember there was some refactoring of headers, and now build.c errors because win32_expand_environment_variables is not declared. Adding the win32.h include fixes it, but I can't work out how other files like dialogs.c include win32.h, it doesn't

Re: [Geany-Devel] build.c missing win32.h include

2014-08-01 Thread Nick Treleaven
On 01/08/2014 11:43, Nick Treleaven wrote: I can't work out how other files like dialogs.c include win32.h Update: it isn't either ;-) So I suppose I'll just add the includes manually. I thought maybe there was some magic happening somewhere. ___

Re: [Geany-Devel] build.c missing win32.h include

2014-08-01 Thread Nick Treleaven
On 01/08/2014 11:48, Nick Treleaven wrote: I'll just add the includes manually https://github.com/geany/geany/pull/308 ___ Devel mailing list Devel@lists.geany.org https://lists.geany.org/cgi-bin/mailman/listinfo/devel

Re: [Geany-Devel] build.c missing win32.h include

2014-08-01 Thread Lex Trotman
On 1 August 2014 20:48, Nick Treleaven nick.trelea...@btinternet.com wrote: On 01/08/2014 11:43, Nick Treleaven wrote: I can't work out how other files like dialogs.c include win32.h Update: it isn't either ;-) So I suppose I'll just add the includes manually. I thought maybe there was some

Re: [Geany-Devel] build.c missing win32.h include

2014-08-01 Thread Nick Treleaven
On 01/08/2014 12:13, Lex Trotman wrote: On 1 August 2014 20:48, Nick Treleaven nick.trelea...@btinternet.com wrote: On 01/08/2014 11:43, Nick Treleaven wrote: I can't work out how other files like dialogs.c include win32.h Update: it isn't either ;-) So I suppose I'll just add the includes

Re: [Geany-Devel] build.c missing win32.h include

2014-08-01 Thread Lex Trotman
[...] Update: it isn't either ;-) So I suppose I'll just add the includes manually. I thought maybe there was some magic happening somewhere. Maybe magic somewhere, the windows nightlys are passing :) I appears that the magic is that the compile options are not strict enough, there are lots

Re: [Geany-Devel] build.c missing win32.h include

2014-08-01 Thread Colomban Wendling
Le 01/08/2014 13:03, Nick Treleaven a écrit : On 01/08/2014 11:48, Nick Treleaven wrote: I'll just add the includes manually https://github.com/geany/geany/pull/308 Looks good to me, I merged it :) ___ Devel mailing list Devel@lists.geany.org

Re: [Geany-Devel] build.c missing win32.h include

2014-08-01 Thread Nick Treleaven
On 01/08/2014 12:23, Lex Trotman wrote: Maybe magic somewhere, the windows nightlys are passing:) I appears that the magic is that the compile options are not strict enough, there are lots of implicit prototype warnings, but they are not errors. OK then.

Re: [Geany-Devel] build.c missing win32.h include

2014-08-01 Thread Matthew Brush
On 14-08-01 09:34 AM, Nick Treleaven wrote: On 01/08/2014 12:23, Lex Trotman wrote: Maybe magic somewhere, the windows nightlys are passing:) I appears that the magic is that the compile options are not strict enough, there are lots of implicit prototype warnings, but they are not errors. OK