Thank you!

Pushed NS_STACK_SIZE fix,
https://github.com/cesanta/mongoose/commit/760511ec496b0daa516fccfc2e229529062e4930

I am reluctant disabling warnings though. My g++ is silent:
$ g++ -v
..
gcc version 4.6.3 20120306 (Red Hat 4.6.3-2) (GCC)
$ g++ examples/server.c mongoose.c  -I. -W -Wall -O2 -pthread
$


On Mon, Jun 16, 2014 at 9:50 AM, <stiebe...@web.de> wrote:

>
>
> O
>
>> +#if defined(__GNUC__) && (__GNUC__>=4) && (__GNUC_MINOR__>=2)
>>
>> Eh... screw this. /me slaps myself good. Who can spot the screwup? :-)
>
> Make this
>  #if defined(__GNUC__) && ((__GNUC__==4 && __GNUC_MINOR__>=2) ||
> (__GNUC__>4))
>
> --
> You received this message because you are subscribed to the Google Groups
> "mongoose-users" group.
> To unsubscribe from this group and stop receiving emails from it, send an
> email to mongoose-users+unsubscr...@googlegroups.com.
> To post to this group, send email to mongoose-users@googlegroups.com.
> Visit this group at http://groups.google.com/group/mongoose-users.
> For more options, visit https://groups.google.com/d/optout.
>

-- 
You received this message because you are subscribed to the Google Groups 
"mongoose-users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to mongoose-users+unsubscr...@googlegroups.com.
To post to this group, send email to mongoose-users@googlegroups.com.
Visit this group at http://groups.google.com/group/mongoose-users.
For more options, visit https://groups.google.com/d/optout.

Reply via email to