]> granicus.if.org Git - mutt/commitdiff
Disable GCC long long warnings with -pedantic. Closes #2823.
authorBrendan Cully <brendan@kublai.com>
Thu, 24 Jul 2008 16:13:03 +0000 (12:13 -0400)
committerBrendan Cully <brendan@kublai.com>
Thu, 24 Jul 2008 16:13:03 +0000 (12:13 -0400)
Thanks to Aron Griffis for the suggestion.

ChangeLog
configure.ac

index abbf3de1b26ff26863b4b37eefb29a0e17fb4b2e..a0fbab439297acd6de28e89183e9fb47cf7f034e 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,4 +1,12 @@
-2008-07-21 11:42 +0200  Rocco Rutte  <pdmef@gmx.net>  (7e6d98886cce)
+2008-07-22 16:30 +0200  Vincent Lefevre  <vincent@vinc17.org>  (e27d7ce09c40)
+
+       * doc/manual.xml.head, init.h: Fix typos in manual.xml.head and
+       init.h. Closes #3096.
+
+2008-07-21 11:53 +0200  Rocco Rutte  <pdmef@gmx.net>  (5511a52bbc9f)
+
+       * init.h: Use itemized lists for listing possible sort config
+       settings.
 
        * doc/makedoc.c: makedoc: Add ".ie" and ".il" to support itemized
        lists.
        while support for real lists will make it look nicer: for docbook
        use <itemizedlist/>, \(hy for roff and '-' for text.
 
-2008-07-21 11:41 +0200  Rocco Rutte  <pdmef@gmx.net>  (e09af06a5312)
-
        * doc/manual.xml.head: Document that account-hook is intended for
        connection-related settings only
 
-2008-07-21 11:40 +0200  Rocco Rutte  <pdmef@gmx.net>  (089c83504474)
-
        * doc/manual.xml.head: Manual: Use tables for message flags as it's
        more compact
 
-2008-07-21 11:40 +0200  Rocco Rutte  <pdmef@gmx.net>  (7bdd9439304e)
-
        * doc/manual.xml.head: Manual: minor formatting tweaks
 
-2008-07-21 09:11 +0200  Rocco Rutte  <pdmef@gmx.net>  (f93dcd689032)
-
-       * ChangeLog, alias.c, init.h: Encode lines written to $alias_file in
+       * alias.c, init.h: Encode lines written to $alias_file in
        $config_charset if set. Closes #3095
 
 2008-07-10 09:38 -0400  Aron Griffis  <agriffis@n01se.net>  (7729b1ad530c)
index e09f4b2b011285f580d6d42a8e0cf16bb1d58752..05f063cc627878123919db17dc91783d1bc342de 100644 (file)
@@ -773,7 +773,7 @@ AC_ARG_ENABLE(warnings, AC_HELP_STRING([--disable-warnings], [Turn off compiler
 fi])
 
 if test x$GCC = xyes && test $mutt_cv_warnings = yes; then
-        CFLAGS="-Wall -pedantic $CFLAGS"
+  CFLAGS="-Wall -pedantic -Wno-long-long $CFLAGS"
 fi
 
 AC_ARG_ENABLE(nfs-fix, AC_HELP_STRING([--enable-nfs-fix], [Work around an NFS with broken attributes caching]),