i usually use an m4-macro that checks whether a given compiler accepts a certain CFLAG.
put the following into your aclocal.m4 (i usually use m4/ax_check_cflags.m4 instead):
# AX_CHECK_CFLAGS(ADDITIONAL-CFLAGS, ACTION-IF-FOUND, ACTION-IF-NOT-FOUND)
#
# checks whether the $(CC) compiler accepts the ADDITIONAL-CFLAGS
# if so, they are added to the CXXFLAGS
AC_DEFUN([AX_CHECK_CFLAGS],
[
AC_MSG_CHECKING([whether compiler accepts "$1"])
cat > conftest.c++ << EOF
int main(){
return 0;
}
EOF
if $CC $CPPFLAGS $CFLAGS -o conftest.o conftest.c++ [$1] > /dev/null 2>&1
then
AC_MSG_RESULT([yes])
CFLAGS="${CFLAGS} [$1]"
[$2]
else
AC_MSG_RESULT([no])
[$3]
fi
])dnl AX_CHECK_CFLAGS
and call it from configure.ac with something like
AX_CHECK_CFLAGS([-std=c99 -pedantic])
-std=c99 -pedantic
, which need to end up inCFLAGS
; no idea how to best go about this, though :( – Hindrance