[Chicken-users] Annoying compiler warning

2015-05-13 Thread Matt Gushee
Alright, one more email for tonight. I have noticed lately (don't know when it started, but I suppose at least since I started using Chicken 4.9.0.1), that every time I compile anything with csc, I get this warning: In file included from /usr/include/ctype.h:25:0, from

Re: [Chicken-users] Annoying compiler warning

2015-05-13 Thread Evan Hanson
Hi Matt, This has been addressed in the development tree and the warnings will go away with the next release. As for hiding the warnings on 4.9.0.1, you could try passing a flag to silence them as a C compiler option (perhaps -Wno-deprecated? I don't know which option will suppress these

Re: [Chicken-users] Annoying compiler warning

2015-05-13 Thread Matt Gushee
Hi, Evan-- On Wed, May 13, 2015 at 6:54 PM, Evan Hanson ev...@foldling.org wrote: $ csc -C -D_DEFAULT_SOURCE foo.scm Oh, yeah. Duh. Why, I bet I could even add it to my bash profile, since it is pretty unlikely I'll be working on any projects where I need to see that warning. Thanks,