| 186 |
|
AC_DEFUN([AX_ARG_ENABLE_WARNINGS],[ |
| 187 |
|
AC_ARG_ENABLE([warnings],[AC_HELP_STRING([--enable-warnings],[Enable compiler warnings.])],[warnings="$enableval"],[warnings="no"]) |
| 188 |
|
if test "$warnings" = "yes" ; then |
| 189 |
< |
CFLAGS="-Wall -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wredundant-decls -Wshadow -Wwrite-strings -Wno-unused" |
| 189 |
> |
CFLAGS="-Wall -Wcast-qual -Wmissing-declarations -Wmissing-prototypes -Wnested-externs -Wredundant-decls -Wshadow -Wwrite-strings -Wno-unused -Wundef" |
| 190 |
|
fi |
| 191 |
|
])dnl }}} |
| 192 |
|
dnl {{{ ax_arg_enable_syslog |