summaryrefslogtreecommitdiff
path: root/aclocal.m4
AgeCommit message (Collapse)AuthorFilesLines
2010-11-07Fix autoconf 2.68 warning.Victor van den Elzen1-3/+2
The first argument of AC_COMPILE_IFELSE needs to be wrapped with AC_LANG_SOURCE.
2009-03-01autoconf: detect the broken bool in OpenWatcom 1.8H. Peter Anvin1-0/+24
OpenWatcom 1.8 has a C99 mode, which implements _Bool and <stdbool.h>. Unfortunately the implementation is broken, and doesn't let _Bool be implicitly converted to integer (as required by the C99 spec). Detect this case in autoconf.
2007-04-15Cleaner way to add gcc optionsH. Peter Anvin1-0/+15
We can actually test for the options being accepted, rather than try to test for gcc; this handles differences between gcc versions as well as compilers with a similar command line set.