playing w/ GCC warnings

2008-08-13 Thread Thien-Thi Nguyen
What do people do to make experimentation w/ GCC warnings easy? In Guile-PG's configure.in, there is: |## If we're using GCC, ask for aggressive warnings. |if test x$GCC = xyes ; then | AGGRESSIVE_WARNINGS=-std=gnu99 -pedantic | for x in all extra float-equal declaration-after-statement \ |

Re: playing w/ GCC warnings

2008-08-13 Thread Rhys Ulerich
Some variation on the AC_COMPILE_WARNINGS macro at the cryp.to archive may be what you want (http://autoconf-archive.cryp.to/ac_compile_warnings.html). There are several other warnings-related macros there. - Rhys On Wed, Aug 13, 2008 at 7:07 AM, Thien-Thi Nguyen [EMAIL PROTECTED] wrote: What