changeset: 6480:8b2fe6a4db79 user: Kevin McCarthy <[email protected]> date: Mon Aug 17 12:26:43 2015 -0700 link: http://dev.mutt.org/hg/mutt/rev/8b2fe6a4db79
Enable C99 mode for compiler. (See #3638). This is already the default for clang (FreeBSD) so shouldn't cause any issues. Enabling this will increase the allowed static string length and remove the Copyright length warning. diffs (11 lines): diff -r 55ea6e829b46 -r 8b2fe6a4db79 configure.ac --- a/configure.ac Tue Aug 11 11:20:15 2015 -0700 +++ b/configure.ac Mon Aug 17 12:26:43 2015 -0700 @@ -28,6 +28,7 @@ AC_MSG_RESULT($mutt_cv_prefix) AC_PROG_CC +AC_PROG_CC_C99 AC_SEARCH_LIBS([strerror],[cposix]) if test "x$U" != "x"; then AC_MSG_ERROR(Compiler not ANSI compliant)
