From cc2e8853b5a87eefa304c03d2d242a339d942c77 Mon Sep 17 00:00:00 2001 From: Jay Berkenbilt Date: Thu, 20 Jun 2019 21:08:04 -0400 Subject: Enable int warnings by default Now that there aren't any more... --- configure.ac | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'configure.ac') diff --git a/configure.ac b/configure.ac index 9dba223f..33ec733f 100644 --- a/configure.ac +++ b/configure.ac @@ -396,12 +396,12 @@ fi AC_MSG_CHECKING(for whether to use $try_flags) AC_ARG_ENABLE(int-warnings, AS_HELP_STRING([--enable-int-warnings], - [whether to turn on integer type warnings (default is no)]), + [whether to turn on integer type warnings (default is yes)]), [if test "$enableval" = "yes"; then qpdf_INT_WARNINGS=1; else qpdf_INT_WARNINGS=0; - fi], [qpdf_INT_WARNINGS=0]) + fi], [qpdf_INT_WARNINGS=1]) if test "$qpdf_INT_WARNINGS" = "1"; then AC_MSG_RESULT(yes) WFLAGS="$WFLAGS $try_flags" -- cgit v1.2.3-54-g00ecf