mutt stable branch with some hacks
0
fork

Configure Feed

Select the types of activity you want to include in your feed.

Pull config.h out of protos.h, add to top of every IMAP C file. This should probably be done to every C file, but the results need testing in case some files depend on the current (broken) includes.

+43 -6
+4
imap/auth.c
··· 20 20 21 21 /* IMAP login/authentication code */ 22 22 23 + #ifdef HAVE_CONFIG_H 24 + # include "config.h" 25 + #endif 26 + 23 27 #include "mutt.h" 24 28 #include "imap_private.h" 25 29 #include "auth.h"
+4
imap/auth_anon.c
··· 18 18 19 19 /* IMAP login/authentication code */ 20 20 21 + #ifdef HAVE_CONFIG_H 22 + # include "config.h" 23 + #endif 24 + 21 25 #include "mutt.h" 22 26 #include "imap_private.h" 23 27 #include "auth.h"
+4
imap/auth_cram.c
··· 18 18 19 19 /* IMAP login/authentication code */ 20 20 21 + #ifdef HAVE_CONFIG_H 22 + # include "config.h" 23 + #endif 24 + 21 25 #include "mutt.h" 22 26 #include "imap_private.h" 23 27 #include "auth.h"
+3 -2
imap/auth_gss.c
··· 18 18 19 19 /* GSS login/authentication code */ 20 20 21 - /* for HAVE_HEIMDAL */ 22 - #include "config.h" 21 + #ifdef HAVE_CONFIG_H 22 + # include "config.h" 23 + #endif 23 24 24 25 #include "mutt.h" 25 26 #include "imap_private.h"
+4
imap/auth_login.c
··· 18 18 19 19 /* plain LOGIN support */ 20 20 21 + #ifdef HAVE_CONFIG_H 22 + # include "config.h" 23 + #endif 24 + 21 25 #include "mutt.h" 22 26 #include "imap_private.h" 23 27 #include "auth.h"
+4
imap/auth_sasl.c
··· 18 18 19 19 /* SASL login/authentication code */ 20 20 21 + #ifdef HAVE_CONFIG_H 22 + # include "config.h" 23 + #endif 24 + 21 25 #include "mutt.h" 22 26 #include "mutt_sasl.h" 23 27 #include "imap_private.h"
+4
imap/browse.c
··· 19 19 20 20 /* Mutt browser support routines */ 21 21 22 + #ifdef HAVE_CONFIG_H 23 + # include "config.h" 24 + #endif 25 + 22 26 #include <stdlib.h> 23 27 #include <ctype.h> 24 28
+4
imap/command.c
··· 21 21 /* command.c: routines for sending commands to an IMAP server and parsing 22 22 * responses */ 23 23 24 + #ifdef HAVE_CONFIG_H 25 + # include "config.h" 26 + #endif 27 + 24 28 #include "mutt.h" 25 29 #include "imap_private.h" 26 30 #include "message.h"
+4
imap/imap.c
··· 20 20 21 21 /* Support for IMAP4rev1, with the occasional nod to IMAP 4. */ 22 22 23 + #ifdef HAVE_CONFIG_H 24 + # include "config.h" 25 + #endif 26 + 23 27 #include "mutt.h" 24 28 #include "mutt_curses.h" 25 29 #include "mx.h"
+4
imap/message.c
··· 19 19 20 20 /* message parsing/updating functions */ 21 21 22 + #ifdef HAVE_CONFIG_H 23 + # include "config.h" 24 + #endif 25 + 22 26 #include <stdlib.h> 23 27 #include <ctype.h> 24 28
+4
imap/utf7.c
··· 16 16 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA. 17 17 */ 18 18 19 + #ifdef HAVE_CONFIG_H 20 + # include "config.h" 21 + #endif 22 + 19 23 #include "mutt.h" 20 24 #include "charset.h" 21 25 #include "imap_private.h"
-4
protos.h
··· 17 17 */ 18 18 19 19 20 - #ifdef HAVE_CONFIG_H 21 - # include "config.h" 22 - #endif 23 - 24 20 #ifdef HAVE_INTTYPES_H 25 21 # include <inttypes.h> 26 22 #endif