mutt stable branch with some hacks
0
fork

Configure Feed

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

Add config.h to the top of every C file that could possibly want it. Remove it from mutt.h

+395 -26
+4
account.c
··· 18 18 19 19 /* remote host account manipulation (POP/IMAP) */ 20 20 21 + #if HAVE_CONFIG_H 22 + # include "config.h" 23 + #endif 24 + 21 25 #include "mutt.h" 22 26 #include "account.h" 23 27 #include "url.h"
+4
addrbook.c
··· 16 16 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA. 17 17 */ 18 18 19 + #if HAVE_CONFIG_H 20 + # include "config.h" 21 + #endif 22 + 19 23 #include "mutt.h" 20 24 #include "mutt_menu.h" 21 25 #include "mapping.h"
+4
alias.c
··· 16 16 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA. 17 17 */ 18 18 19 + #if HAVE_CONFIG_H 20 + # include "config.h" 21 + #endif 22 + 19 23 #include "mutt.h" 20 24 #include "mutt_regex.h" 21 25 #include "mutt_curses.h"
+4
ascii.c
··· 26 26 * locale-insensitive. 27 27 */ 28 28 29 + #if HAVE_CONFIG_H 30 + # include "config.h" 31 + #endif 32 + 29 33 #include <stdio.h> 30 34 #include <stdlib.h> 31 35 #include "ascii.h"
+4
attach.c
··· 17 17 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA. 18 18 */ 19 19 20 + #if HAVE_CONFIG_H 21 + # include "config.h" 22 + #endif 23 + 20 24 #include "mutt.h" 21 25 #include "mutt_menu.h" 22 26 #include "mutt_curses.h"
+4
base64.c
··· 39 39 * 40 40 */ 41 41 42 + #if HAVE_CONFIG_H 43 + # include "config.h" 44 + #endif 45 + 42 46 #include "mutt.h" 43 47 #include "mime.h" 44 48
+4
browser.c
··· 16 16 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA. 17 17 */ 18 18 19 + #if HAVE_CONFIG_H 20 + # include "config.h" 21 + #endif 22 + 19 23 #include "mutt.h" 20 24 #include "mutt_curses.h" 21 25 #include "mutt_menu.h"
+4
buffy.c
··· 16 16 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA. 17 17 */ 18 18 19 + #if HAVE_CONFIG_H 20 + # include "config.h" 21 + #endif 22 + 19 23 #include "mutt.h" 20 24 #include "buffy.h" 21 25 #include "mailbox.h"
+3
charset.c
··· 19 19 * Boston, MA 02111, USA. 20 20 */ 21 21 22 + #if HAVE_CONFIG_H 23 + # include "config.h" 24 + #endif 22 25 23 26 #include <string.h> 24 27 #include <stdio.h>
+4
color.c
··· 16 16 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA. 17 17 */ 18 18 19 + #if HAVE_CONFIG_H 20 + # include "config.h" 21 + #endif 22 + 19 23 #include "mutt.h" 20 24 #include "mutt_curses.h" 21 25 #include "mapping.h"
+4
commands.c
··· 17 17 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA. 18 18 */ 19 19 20 + #if HAVE_CONFIG_H 21 + # include "config.h" 22 + #endif 23 + 20 24 #include "mutt.h" 21 25 #include "mutt_curses.h" 22 26 #include "mutt_menu.h"
+4
complete.c
··· 16 16 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA. 17 17 */ 18 18 19 + #if HAVE_CONFIG_H 20 + # include "config.h" 21 + #endif 22 + 19 23 #include "mutt.h" 20 24 #ifdef USE_IMAP 21 25 #include "mailbox.h"
+4
compose.c
··· 17 17 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA. 18 18 */ 19 19 20 + #if HAVE_CONFIG_H 21 + # include "config.h" 22 + #endif 23 + 20 24 #include "mutt.h" 21 25 #include "mutt_curses.h" 22 26 #include "mutt_idna.h"
+4
copy.c
··· 16 16 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA. 17 17 */ 18 18 19 + #if HAVE_CONFIG_H 20 + # include "config.h" 21 + #endif 22 + 19 23 #include "mutt.h" 20 24 #include "mailbox.h" 21 25 #include "mx.h"
+3 -1
crypt-gpgme.c
··· 20 20 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA. 21 21 */ 22 22 23 - #include <config.h> 23 + #if HAVE_CONFIG_H 24 + # include "config.h" 25 + #endif 24 26 25 27 #ifdef CRYPT_BACKEND_GPGME 26 28
+4
crypt-mod-pgp-classic.c
··· 20 20 This is a crytpo module wrapping the classic pgp code. 21 21 */ 22 22 23 + #if HAVE_CONFIG_H 24 + # include "config.h" 25 + #endif 26 + 23 27 #include "crypt-mod.h" 24 28 #include "pgp.h" 25 29
+3 -1
crypt-mod-pgp-gpgme.c
··· 20 20 This is a crytpo module wrapping the gpgme based pgp code. 21 21 */ 22 22 23 - #include <config.h> 23 + #if HAVE_CONFIG_H 24 + # include "config.h" 25 + #endif 24 26 25 27 #ifdef CRYPT_BACKEND_GPGME 26 28
+4
crypt-mod-smime-classic.c
··· 20 20 This is a crytpo module wrapping the classic smime code. 21 21 */ 22 22 23 + #if HAVE_CONFIG_H 24 + # include "config.h" 25 + #endif 26 + 23 27 #include "crypt-mod.h" 24 28 #include "smime.h" 25 29
+3 -1
crypt-mod-smime-gpgme.c
··· 20 20 This is a crytpo module wrapping the gpgme based smime code. 21 21 */ 22 22 23 - #include <config.h> 23 + #if HAVE_CONFIG_H 24 + # include "config.h" 25 + #endif 24 26 25 27 #ifdef CRYPT_BACKEND_GPGME 26 28
+4
crypt-mod.c
··· 16 16 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA. 17 17 */ 18 18 19 + #if HAVE_CONFIG_H 20 + # include "config.h" 21 + #endif 22 + 19 23 #include "crypt-mod.h" 20 24 21 25 /* A type an a variable to keep track of registered crypto modules. */
+3
crypt.c
··· 21 21 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA. 22 22 */ 23 23 24 + #if HAVE_CONFIG_H 25 + # include "config.h" 26 + #endif 24 27 25 28 #include "mutt.h" 26 29 #include "mutt_curses.h"
+4
cryptglue.c
··· 28 28 contained in this file and the functions implemented by the crypto 29 29 modules. */ 30 30 31 + #if HAVE_CONFIG_H 32 + # include "config.h" 33 + #endif 34 + 31 35 #include "mutt.h" 32 36 #include "mutt_crypt.h" 33 37
+4
curs_lib.c
··· 17 17 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA. 18 18 */ 19 19 20 + #if HAVE_CONFIG_H 21 + # include "config.h" 22 + #endif 23 + 20 24 #include "mutt.h" 21 25 #include "mutt_menu.h" 22 26 #include "mutt_curses.h"
+4
curs_main.c
··· 16 16 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA. 17 17 */ 18 18 19 + #if HAVE_CONFIG_H 20 + # include "config.h" 21 + #endif 22 + 19 23 #include "mutt.h" 20 24 #include "mutt_curses.h" 21 25 #include "mutt_menu.h"
+4
date.c
··· 16 16 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA. 17 17 */ 18 18 19 + #if HAVE_CONFIG_H 20 + # include "config.h" 21 + #endif 22 + 19 23 #include "mutt.h" 20 24 #include <string.h> 21 25
+4
dotlock.c
··· 24 24 * macro. 25 25 */ 26 26 27 + #if HAVE_CONFIG_H 28 + # include "config.h" 29 + #endif 30 + 27 31 #include <stdio.h> 28 32 #include <stdlib.h> 29 33 #include <string.h>
+4
edit.c
··· 18 18 19 19 /* Close approximation of the mailx(1) builtin editor for sending mail. */ 20 20 21 + #if HAVE_CONFIG_H 22 + # include "config.h" 23 + #endif 24 + 21 25 #include "mutt.h" 22 26 #include "mutt_curses.h" 23 27 #include "mutt_idna.h"
+4
editmsg.c
··· 21 21 22 22 /* simple, editor-based message editing */ 23 23 24 + #if HAVE_CONFIG_H 25 + # include "config.h" 26 + #endif 27 + 24 28 #include "mutt.h" 25 29 #include "copy.h" 26 30 #include "mailbox.h"
+4
enter.c
··· 17 17 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA. 18 18 */ 19 19 20 + #if HAVE_CONFIG_H 21 + # include "config.h" 22 + #endif 23 + 20 24 #include "mutt.h" 21 25 #include "mutt_menu.h" 22 26 #include "mutt_curses.h"
+4
extlib.c
··· 27 27 #define WHERE 28 28 #define _EXTLIB_C 29 29 30 + #if HAVE_CONFIG_H 31 + # include "config.h" 32 + #endif 33 + 30 34 #include <stdlib.h> 31 35 #include "lib.h" 32 36
+4
filter.c
··· 16 16 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA. 17 17 */ 18 18 19 + #if HAVE_CONFIG_H 20 + # include "config.h" 21 + #endif 22 + 19 23 #include "mutt.h" 20 24 21 25 #include <unistd.h>
+4
flags.c
··· 16 16 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA. 17 17 */ 18 18 19 + #if HAVE_CONFIG_H 20 + # include "config.h" 21 + #endif 22 + 19 23 #include "mutt.h" 20 24 #include "mutt_curses.h" 21 25 #include "sort.h"
+4
from.c
··· 16 16 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA. 17 17 */ 18 18 19 + #if HAVE_CONFIG_H 20 + # include "config.h" 21 + #endif 22 + 19 23 #include "mutt.h" 20 24 21 25 #include <ctype.h>
+4
getdomain.c
··· 1 + #if HAVE_CONFIG_H 2 + # include "config.h" 3 + #endif 4 + 1 5 #include <stdio.h> 2 6 #include <ctype.h> 3 7 #include <string.h>
+4
gnupgparse.c
··· 30 30 * 31 31 */ 32 32 33 + #if HAVE_CONFIG_H 34 + # include "config.h" 35 + #endif 36 + 33 37 #include <stdio.h> 34 38 #include <stdlib.h> 35 39 #include <string.h>
+4
handler.c
··· 16 16 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA. 17 17 */ 18 18 19 + #if HAVE_CONFIG_H 20 + # include "config.h" 21 + #endif 22 + 19 23 #include <stdlib.h> 20 24 #include <string.h> 21 25 #include <unistd.h>
+4
hash.c
··· 16 16 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA. 17 17 */ 18 18 19 + #if HAVE_CONFIG_H 20 + # include "config.h" 21 + #endif 22 + 19 23 #include <stdlib.h> 20 24 #include <stdio.h> 21 25 #include <string.h>
+4
hdrline.c
··· 16 16 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA. 17 17 */ 18 18 19 + #if HAVE_CONFIG_H 20 + # include "config.h" 21 + #endif 22 + 19 23 #include "mutt.h" 20 24 #include "mutt_curses.h" 21 25 #include "sort.h"
+4
headers.c
··· 16 16 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA. 17 17 */ 18 18 19 + #if HAVE_CONFIG_H 20 + # include "config.h" 21 + #endif 22 + 19 23 #include "mutt.h" 20 24 #include "mutt_crypt.h" 21 25 #include "mutt_idna.h"
+4
help.c
··· 18 18 19 19 #define HELP_C 20 20 21 + #if HAVE_CONFIG_H 22 + # include "config.h" 23 + #endif 24 + 21 25 #include "mutt.h" 22 26 #include "mutt_curses.h" 23 27 #include "keymap.h"
+4
history.c
··· 16 16 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA. 17 17 */ 18 18 19 + #if HAVE_CONFIG_H 20 + # include "config.h" 21 + #endif 22 + 19 23 #include "mutt.h" 20 24 #include "history.h" 21 25
+4
hook.c
··· 16 16 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA. 17 17 */ 18 18 19 + #if HAVE_CONFIG_H 20 + # include "config.h" 21 + #endif 22 + 19 23 #include "mutt.h" 20 24 #include "mailbox.h" 21 25 #include "mutt_crypt.h"
+1 -1
imap/auth.c
··· 20 20 21 21 /* IMAP login/authentication code */ 22 22 23 - #ifdef HAVE_CONFIG_H 23 + #if HAVE_CONFIG_H 24 24 # include "config.h" 25 25 #endif 26 26
+1 -1
imap/auth_anon.c
··· 18 18 19 19 /* IMAP login/authentication code */ 20 20 21 - #ifdef HAVE_CONFIG_H 21 + #if HAVE_CONFIG_H 22 22 # include "config.h" 23 23 #endif 24 24
+1 -1
imap/auth_cram.c
··· 18 18 19 19 /* IMAP login/authentication code */ 20 20 21 - #ifdef HAVE_CONFIG_H 21 + #if HAVE_CONFIG_H 22 22 # include "config.h" 23 23 #endif 24 24
+1 -1
imap/auth_gss.c
··· 18 18 19 19 /* GSS login/authentication code */ 20 20 21 - #ifdef HAVE_CONFIG_H 21 + #if HAVE_CONFIG_H 22 22 # include "config.h" 23 23 #endif 24 24
+1 -1
imap/auth_login.c
··· 18 18 19 19 /* plain LOGIN support */ 20 20 21 - #ifdef HAVE_CONFIG_H 21 + #if HAVE_CONFIG_H 22 22 # include "config.h" 23 23 #endif 24 24
+1 -1
imap/auth_sasl.c
··· 18 18 19 19 /* SASL login/authentication code */ 20 20 21 - #ifdef HAVE_CONFIG_H 21 + #if HAVE_CONFIG_H 22 22 # include "config.h" 23 23 #endif 24 24
+1 -1
imap/browse.c
··· 19 19 20 20 /* Mutt browser support routines */ 21 21 22 - #ifdef HAVE_CONFIG_H 22 + #if HAVE_CONFIG_H 23 23 # include "config.h" 24 24 #endif 25 25
+1 -1
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 24 + #if HAVE_CONFIG_H 25 25 # include "config.h" 26 26 #endif 27 27
+1 -1
imap/imap.c
··· 20 20 21 21 /* Support for IMAP4rev1, with the occasional nod to IMAP 4. */ 22 22 23 - #ifdef HAVE_CONFIG_H 23 + #if HAVE_CONFIG_H 24 24 # include "config.h" 25 25 #endif 26 26
+1 -1
imap/message.c
··· 19 19 20 20 /* message parsing/updating functions */ 21 21 22 - #ifdef HAVE_CONFIG_H 22 + #if HAVE_CONFIG_H 23 23 # include "config.h" 24 24 #endif 25 25
+1 -1
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 19 + #if HAVE_CONFIG_H 20 20 # include "config.h" 21 21 #endif 22 22
+4
init.c
··· 16 16 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA. 17 17 */ 18 18 19 + #if HAVE_CONFIG_H 20 + # include "config.h" 21 + #endif 22 + 19 23 #include "mutt.h" 20 24 #include "mapping.h" 21 25 #include "mutt_curses.h"
+4
keymap.c
··· 16 16 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA. 17 17 */ 18 18 19 + #if HAVE_CONFIG_H 20 + # include "config.h" 21 + #endif 22 + 19 23 #include "mutt.h" 20 24 #include "mutt_menu.h" 21 25 #include "mutt_curses.h"
+4
lib.c
··· 26 26 * some of our "standard" functions in external programs, too. 27 27 */ 28 28 29 + #if HAVE_CONFIG_H 30 + # include "config.h" 31 + #endif 32 + 29 33 #include <string.h> 30 34 #include <ctype.h> 31 35 #include <unistd.h>
+4
main.c
··· 20 20 21 21 #define MAIN_C 1 22 22 23 + #if HAVE_CONFIG_H 24 + # include "config.h" 25 + #endif 26 + 23 27 #include "mutt.h" 24 28 #include "mutt_curses.h" 25 29 #include "keymap.h"
+3 -2
makedoc.c
··· 27 27 ** 28 28 **/ 29 29 30 - 31 - #include "config.h" 30 + #if HAVE_CONFIG_H 31 + # include "config.h" 32 + #endif 32 33 33 34 #include <stdio.h> 34 35 #include <stdlib.h>
+4
mbox.c
··· 18 18 19 19 /* This file contains code to parse ``mbox'' and ``mmdf'' style mailboxes */ 20 20 21 + #if HAVE_CONFIG_H 22 + # include "config.h" 23 + #endif 24 + 21 25 #include "mutt.h" 22 26 #include "mailbox.h" 23 27 #include "mx.h"
+4
mbyte.c
··· 20 20 * Japanese support by TAKIZAWA Takashi <taki@luna.email.ne.jp>. 21 21 */ 22 22 23 + #if HAVE_CONFIG_H 24 + # include "config.h" 25 + #endif 26 + 23 27 #include "mutt.h" 24 28 #include "mbyte.h" 25 29 #include "charset.h"
+4
md5c.c
··· 23 23 documentation and/or software. 24 24 */ 25 25 26 + #if HAVE_CONFIG_H 27 + # include "config.h" 28 + #endif 29 + 26 30 #include "md5.h" 27 31 28 32 /* Constants for MD5Transform routine.
+4
menu.c
··· 16 16 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA. 17 17 */ 18 18 19 + #if HAVE_CONFIG_H 20 + # include "config.h" 21 + #endif 22 + 19 23 #include "mutt.h" 20 24 #include "mutt_curses.h" 21 25 #include "mutt_menu.h"
+4
mh.c
··· 22 22 * mailboxes. 23 23 */ 24 24 25 + #if HAVE_CONFIG_H 26 + # include "config.h" 27 + #endif 28 + 25 29 #include "mutt.h" 26 30 #include "mailbox.h" 27 31 #include "mx.h"
-2
mutt.h
··· 21 21 #ifndef MUTT_H 22 22 #define MUTT_H 23 23 24 - #include "config.h" 25 - 26 24 #include <stdio.h> 27 25 #include <stdlib.h> 28 26 #ifdef HAVE_UNISTD_H
+4 -1
mutt_idna.c
··· 16 16 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA. 17 17 */ 18 18 19 - #include "config.h" 19 + #if HAVE_CONFIG_H 20 + # include "config.h" 21 + #endif 22 + 20 23 #include "mutt.h" 21 24 #include "charset.h" 22 25 #include "mutt_idna.h"
+4
mutt_sasl.c
··· 18 18 19 19 /* common SASL helper routines */ 20 20 21 + #if HAVE_CONFIG_H 22 + # include "config.h" 23 + #endif 24 + 21 25 #include "mutt.h" 22 26 #include "account.h" 23 27 #include "mutt_sasl.h"
+4
mutt_socket.c
··· 18 18 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA. 19 19 */ 20 20 21 + #if HAVE_CONFIG_H 22 + # include "config.h" 23 + #endif 24 + 21 25 #include "mutt.h" 22 26 #include "globals.h" 23 27 #include "mutt_socket.h"
+3 -2
mutt_ssl.c
··· 16 16 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA. 17 17 */ 18 18 19 - /* for SSL NO_* defines */ 20 - #include "config.h" 19 + #if HAVE_CONFIG_H 20 + # include "config.h" 21 + #endif 21 22 22 23 #include <openssl/ssl.h> 23 24 #include <openssl/x509.h>
+4
mutt_ssl_gnutls.c
··· 16 16 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA. 17 17 */ 18 18 19 + #if HAVE_CONFIG_H 20 + # include "config.h" 21 + #endif 22 + 19 23 #include <gnutls/gnutls.h> 20 24 #include <gnutls/x509.h> 21 25
+4
mutt_ssl_nss.c
··· 15 15 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA. 16 16 */ 17 17 18 + #if HAVE_CONFIG_H 19 + # include "config.h" 20 + #endif 21 + 18 22 #include <prinit.h> 19 23 #include <pk11func.h> 20 24 #include <prtypes.h>
+4
mutt_tunnel.c
··· 17 17 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA. 18 18 */ 19 19 20 + #if HAVE_CONFIG_H 21 + # include "config.h" 22 + #endif 23 + 20 24 #include "mutt.h" 21 25 #include "mutt_socket.h" 22 26 #include "mutt_tunnel.h"
+4
muttlib.c
··· 17 17 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA. 18 18 */ 19 19 20 + #if HAVE_CONFIG_H 21 + # include "config.h" 22 + #endif 23 + 20 24 #include "mutt.h" 21 25 #include "mutt_curses.h" 22 26 #include "mime.h"
+4
mx.c
··· 17 17 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA. 18 18 */ 19 19 20 + #if HAVE_CONFIG_H 21 + # include "config.h" 22 + #endif 23 + 20 24 #include "mutt.h" 21 25 #include "mx.h" 22 26 #include "rfc2047.h"
+4
pager.c
··· 16 16 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA. 17 17 */ 18 18 19 + #if HAVE_CONFIG_H 20 + # include "config.h" 21 + #endif 22 + 19 23 #include "mutt.h" 20 24 #include "mutt_curses.h" 21 25 #include "mutt_regex.h"
+4
parse.c
··· 16 16 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA. 17 17 */ 18 18 19 + #if HAVE_CONFIG_H 20 + # include "config.h" 21 + #endif 22 + 19 23 #include "mutt.h" 20 24 #include "mutt_regex.h" 21 25 #include "mailbox.h"
+4
pattern.c
··· 16 16 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA. 17 17 */ 18 18 19 + #if HAVE_CONFIG_H 20 + # include "config.h" 21 + #endif 22 + 19 23 #include "mutt.h" 20 24 #include "mapping.h" 21 25 #include "keymap.h"
+4
pgp.c
··· 26 26 * a message. 27 27 */ 28 28 29 + #if HAVE_CONFIG_H 30 + # include "config.h" 31 + #endif 32 + 29 33 #include "mutt.h" 30 34 #include "mutt_curses.h" 31 35 #include "pgp.h"
+4
pgpinvoke.c
··· 23 23 * is almost entirely format based. 24 24 */ 25 25 26 + #if HAVE_CONFIG_H 27 + # include "config.h" 28 + #endif 29 + 26 30 #include <sys/types.h> 27 31 #include <sys/stat.h> 28 32
+4
pgpkey.c
··· 20 20 * Boston, MA 02111, USA. 21 21 */ 22 22 23 + #if HAVE_CONFIG_H 24 + # include "config.h" 25 + #endif 26 + 23 27 #include "mutt.h" 24 28 #include "mutt_curses.h" 25 29 #include "mutt_menu.h"
+4
pgplib.c
··· 21 21 22 22 /* Generally useful, pgp-related functions. */ 23 23 24 + #if HAVE_CONFIG_H 25 + # include "config.h" 26 + #endif 27 + 24 28 #include <stdio.h> 25 29 #include <stdlib.h> 26 30 #include <string.h>
+4
pgpmicalg.c
··· 21 21 * algorithm. 22 22 */ 23 23 24 + #if HAVE_CONFIG_H 25 + # include "config.h" 26 + #endif 27 + 24 28 #include "mutt.h" 25 29 #include "pgp.h" 26 30 #include "pgppacket.h"
+4 -1
pgppacket.c
··· 17 17 * MA 02111, USA. 18 18 */ 19 19 20 - #include "config.h" 20 + #if HAVE_CONFIG_H 21 + # include "config.h" 22 + #endif 23 + 21 24 #include <stdio.h> 22 25 #include <stdlib.h> 23 26 #include <string.h>
+3 -2
pgppubring.c
··· 34 34 * 35 35 */ 36 36 37 - 38 - #include "config.h" 37 + #if HAVE_CONFIG_H 38 + # include "config.h" 39 + #endif 39 40 40 41 #include <stdio.h> 41 42 #include <stdlib.h>
+4
pop.c
··· 16 16 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA. 17 17 */ 18 18 19 + #if HAVE_CONFIG_H 20 + # include "config.h" 21 + #endif 22 + 19 23 #include "mutt.h" 20 24 #include "mx.h" 21 25 #include "pop.h"
+4
pop_auth.c
··· 16 16 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA. 17 17 */ 18 18 19 + #if HAVE_CONFIG_H 20 + # include "config.h" 21 + #endif 22 + 19 23 #include "mutt.h" 20 24 #include "mx.h" 21 25 #include "md5.h"
+4
pop_lib.c
··· 16 16 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA. 17 17 */ 18 18 19 + #if HAVE_CONFIG_H 20 + # include "config.h" 21 + #endif 22 + 19 23 #include "mutt.h" 20 24 #include "mx.h" 21 25 #include "url.h"
+4
postpone.c
··· 17 17 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA. 18 18 */ 19 19 20 + #if HAVE_CONFIG_H 21 + # include "config.h" 22 + #endif 23 + 20 24 #include "mutt.h" 21 25 #include "mutt_menu.h" 22 26 #include "rfc1524.h"
+4
query.c
··· 16 16 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA. 17 17 */ 18 18 19 + #if HAVE_CONFIG_H 20 + # include "config.h" 21 + #endif 22 + 19 23 #include "mutt.h" 20 24 #include "mutt_menu.h" 21 25 #include "mutt_idna.h"
+4
recvattach.c
··· 17 17 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA. 18 18 */ 19 19 20 + #if HAVE_CONFIG_H 21 + # include "config.h" 22 + #endif 23 + 20 24 #include "mutt.h" 21 25 #include "mutt_curses.h" 22 26 #include "mutt_menu.h"
+4
recvcmd.c
··· 19 19 * Boston, MA 02111, USA. 20 20 */ 21 21 22 + #if HAVE_CONFIG_H 23 + # include "config.h" 24 + #endif 25 + 22 26 #include "mutt.h" 23 27 #include "mutt_curses.h" 24 28 #include "mutt_menu.h"
+1 -1
regex.c
··· 50 50 #undef _GNU_SOURCE 51 51 #define _GNU_SOURCE 52 52 53 - #ifdef HAVE_CONFIG_H 53 + #if HAVE_CONFIG_H 54 54 # include <config.h> 55 55 #endif 56 56
+4
remailer.c
··· 23 23 * Mixmaster support for Mutt 24 24 */ 25 25 26 + #if HAVE_CONFIG_H 27 + # include "config.h" 28 + #endif 29 + 26 30 #include "mutt.h" 27 31 #include "mutt_curses.h" 28 32 #include "mutt_menu.h"
+4
resize.c
··· 16 16 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA. 17 17 */ 18 18 19 + #if HAVE_CONFIG_H 20 + # include "config.h" 21 + #endif 22 + 19 23 #include "mutt.h" 20 24 #include "mutt_curses.h" 21 25
+4
rfc1524.c
··· 26 26 * rfc1524. 27 27 */ 28 28 29 + #if HAVE_CONFIG_H 30 + # include "config.h" 31 + #endif 32 + 29 33 #include "mutt.h" 30 34 #include "rfc1524.h" 31 35
+4
rfc2047.c
··· 17 17 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA. 18 18 */ 19 19 20 + #if HAVE_CONFIG_H 21 + # include "config.h" 22 + #endif 23 + 20 24 #include "mutt.h" 21 25 #include "mime.h" 22 26 #include "charset.h"
+4
rfc2231.c
··· 29 29 * 30 30 */ 31 31 32 + #if HAVE_CONFIG_H 33 + # include "config.h" 34 + #endif 35 + 32 36 #include "mutt.h" 33 37 #include "mime.h" 34 38 #include "charset.h"
+4
rfc822.c
··· 16 16 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA. 17 17 */ 18 18 19 + #if HAVE_CONFIG_H 20 + # include "config.h" 21 + #endif 22 + 19 23 #include <string.h> 20 24 #include <ctype.h> 21 25 #include <stdlib.h>
+4
score.c
··· 16 16 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA. 17 17 */ 18 18 19 + #if HAVE_CONFIG_H 20 + # include "config.h" 21 + #endif 22 + 19 23 #include "mutt.h" 20 24 #include "sort.h" 21 25 #include <string.h>
+4
send.c
··· 16 16 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA. 17 17 */ 18 18 19 + #if HAVE_CONFIG_H 20 + # include "config.h" 21 + #endif 22 + 19 23 #include "mutt.h" 20 24 #include "mutt_curses.h" 21 25 #include "rfc2047.h"
+4
sendlib.c
··· 18 18 19 19 #define _SENDLIB_C 1 20 20 21 + #if HAVE_CONFIG_H 22 + # include "config.h" 23 + #endif 24 + 21 25 #include "mutt.h" 22 26 #include "mutt_curses.h" 23 27 #include "rfc2047.h"
+4
sha1.c
··· 17 17 18 18 #define SHA1HANDSOFF 19 19 20 + #if HAVE_CONFIG_H 21 + # include "config.h" 22 + #endif 23 + 20 24 #include <string.h> 21 25 22 26 #include "sha1.h"
+4
signal.c
··· 16 16 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA. 17 17 */ 18 18 19 + #if HAVE_CONFIG_H 20 + # include "config.h" 21 + #endif 22 + 19 23 #include "mutt.h" 20 24 #include "mutt_curses.h" 21 25
+4
smime.c
··· 18 18 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA. 19 19 */ 20 20 21 + #if HAVE_CONFIG_H 22 + # include "config.h" 23 + #endif 24 + 21 25 #include "mutt.h" 22 26 #include "mutt_curses.h" 23 27 #include "mutt_menu.h"
+3 -1
snprintf.c
··· 40 40 * 41 41 **************************************************************/ 42 42 43 - #include "config.h" 43 + #if HAVE_CONFIG_H 44 + # include "config.h" 45 + #endif 44 46 45 47 #if !defined(HAVE_SNPRINTF) || !defined(HAVE_VSNPRINTF) 46 48
+4
sort.c
··· 16 16 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA. 17 17 */ 18 18 19 + #if HAVE_CONFIG_H 20 + # include "config.h" 21 + #endif 22 + 19 23 #include "mutt.h" 20 24 #include "sort.h" 21 25 #include "mutt_idna.h"
+4
status.c
··· 16 16 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA. 17 17 */ 18 18 19 + #if HAVE_CONFIG_H 20 + # include "config.h" 21 + #endif 22 + 19 23 #include "mutt.h" 20 24 #include "mutt_menu.h" 21 25 #include "mutt_curses.h"
+4
system.c
··· 16 16 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA. 17 17 */ 18 18 19 + #if HAVE_CONFIG_H 20 + # include "config.h" 21 + #endif 22 + 19 23 #include "mutt.h" 20 24 #ifdef USE_IMAP 21 25 # include "imap.h"
+4
thread.c
··· 16 16 * Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA 02111, USA. 17 17 */ 18 18 19 + #if HAVE_CONFIG_H 20 + # include "config.h" 21 + #endif 22 + 19 23 #include "mutt.h" 20 24 #include "sort.h" 21 25
+4
url.c
··· 20 20 * A simple URL parser. 21 21 */ 22 22 23 + #if HAVE_CONFIG_H 24 + # include "config.h" 25 + #endif 26 + 23 27 #include "mutt.h" 24 28 #include "mapping.h" 25 29 #include "url.h"
+4
utf8.c
··· 1 + #if HAVE_CONFIG_H 2 + # include "config.h" 3 + #endif 4 + 1 5 #ifndef HAVE_WC_FUNCS 2 6 3 7 #include <errno.h>
+4
wcwidth.c
··· 9 9 /* Adapted for Mutt by Edmund Grimley Evans. 10 10 */ 11 11 12 + #if HAVE_CONFIG_H 13 + # include "config.h" 14 + #endif 15 + 12 16 #ifndef HAVE_WC_FUNCS 13 17 14 18 #include "mutt.h"