]> granicus.if.org Git - neomutt/commitdiff
Add config.h to the top of every C file that could possibly want it.
authorBrendan Cully <brendan@kublai.com>
Thu, 3 Feb 2005 17:01:42 +0000 (17:01 +0000)
committerBrendan Cully <brendan@kublai.com>
Thu, 3 Feb 2005 17:01:42 +0000 (17:01 +0000)
Remove it from mutt.h

111 files changed:
account.c
addrbook.c
alias.c
ascii.c
attach.c
base64.c
browser.c
buffy.c
charset.c
color.c
commands.c
complete.c
compose.c
copy.c
crypt-gpgme.c
crypt-mod-pgp-classic.c
crypt-mod-pgp-gpgme.c
crypt-mod-smime-classic.c
crypt-mod-smime-gpgme.c
crypt-mod.c
crypt.c
cryptglue.c
curs_lib.c
curs_main.c
date.c
dotlock.c
edit.c
editmsg.c
enter.c
extlib.c
filter.c
flags.c
from.c
getdomain.c
gnupgparse.c
handler.c
hash.c
hdrline.c
headers.c
help.c
history.c
hook.c
imap/auth.c
imap/auth_anon.c
imap/auth_cram.c
imap/auth_gss.c
imap/auth_login.c
imap/auth_sasl.c
imap/browse.c
imap/command.c
imap/imap.c
imap/message.c
imap/utf7.c
init.c
keymap.c
lib.c
main.c
makedoc.c
mbox.c
mbyte.c
md5c.c
menu.c
mh.c
mutt.h
mutt_idna.c
mutt_sasl.c
mutt_socket.c
mutt_ssl.c
mutt_ssl_gnutls.c
mutt_ssl_nss.c
mutt_tunnel.c
muttlib.c
mx.c
pager.c
parse.c
pattern.c
pgp.c
pgpinvoke.c
pgpkey.c
pgplib.c
pgpmicalg.c
pgppacket.c
pgppubring.c
pop.c
pop_auth.c
pop_lib.c
postpone.c
query.c
recvattach.c
recvcmd.c
regex.c
remailer.c
resize.c
rfc1524.c
rfc2047.c
rfc2231.c
rfc822.c
score.c
send.c
sendlib.c
sha1.c
signal.c
smime.c
snprintf.c
sort.c
status.c
system.c
thread.c
url.c
utf8.c
wcwidth.c

index 4f0ed881b083b58a27c737dddd5255bb05cf3322..4a7493ff73a2f117f58aca1b755bc54433ed415f 100644 (file)
--- a/account.c
+++ b/account.c
 
 /* remote host account manipulation (POP/IMAP) */
 
+#if HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include "mutt.h"
 #include "account.h"
 #include "url.h"
index fb20f2f05687fd39aad697ae2607c62dedf86dae..15f78a42233f3e5d230cdba82d4683212f898c1a 100644 (file)
  *     Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  */ 
 
+#if HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include "mutt.h"
 #include "mutt_menu.h"
 #include "mapping.h"
diff --git a/alias.c b/alias.c
index 508e24b6eb3d8b650589d7e6deac65d5d12b007a..0cf83b599e70f8e37001c079572b2ea0c50920e6 100644 (file)
--- a/alias.c
+++ b/alias.c
  *     Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  */ 
 
+#if HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include "mutt.h"
 #include "mutt_regex.h"
 #include "mutt_curses.h"
diff --git a/ascii.c b/ascii.c
index d4553f683012a648a235dfcbcd0be5948e527a6a..27f3a86199a2bc1374e914266aa3edfbbda5e90d 100644 (file)
--- a/ascii.c
+++ b/ascii.c
  * locale-insensitive.
  */
 
+#if HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include <stdio.h>
 #include <stdlib.h>
 #include "ascii.h"
index 7efba8755f3792a1bcb74b21fd5038cb6bf99e08..3de0b3f2bde2152ab50344847842b99c957e2d68 100644 (file)
--- a/attach.c
+++ b/attach.c
  *     Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  */ 
 
+#if HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include "mutt.h"
 #include "mutt_menu.h"
 #include "mutt_curses.h"
index 0bcc865d6ba336bff69d58fdb77476d826c3f7e2..4e632922d20dcdcd3fcb752180dd078ec3d2f411 100644 (file)
--- a/base64.c
+++ b/base64.c
  * 
  */
 
+#if HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include "mutt.h"
 #include "mime.h"
 
index 252e608aa93af939f5c75c0c40c667b8a1b6ea82..d38f76893370387b1b324c53bccd40ed2e543c3d 100644 (file)
--- a/browser.c
+++ b/browser.c
  *     Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  */ 
 
+#if HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include "mutt.h"
 #include "mutt_curses.h"
 #include "mutt_menu.h"
diff --git a/buffy.c b/buffy.c
index ac251cf6f2000d26c7d18d7a15914e6fb0c99d5f..adfa45a3c52847c41a97ca21adc15c8ccfdc0472 100644 (file)
--- a/buffy.c
+++ b/buffy.c
  *     Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  */
 
+#if HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include "mutt.h"
 #include "buffy.h"
 #include "mailbox.h"
index 18e9cdc5e74cf63ed0622a4512bab99648a15a04..0fdb0a94cab762746c99dd306999c7eaff9a4c62 100644 (file)
--- a/charset.c
+++ b/charset.c
@@ -19,6 +19,9 @@
  *     Boston, MA  02111, USA.
  */
 
+#if HAVE_CONFIG_H
+# include "config.h"
+#endif
 
 #include <string.h>
 #include <stdio.h>
diff --git a/color.c b/color.c
index f7b5d650038a640c642c17ad9919a07015abe8f2..edf7c8c3f5eebf6014d9297a252e60c5957a9cf4 100644 (file)
--- a/color.c
+++ b/color.c
  *     Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  */ 
 
+#if HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include "mutt.h"
 #include "mutt_curses.h"
 #include "mapping.h"
index 2417ea1d72f298c9373de4c81d599e8df401a1dc..1808b3288de111b7ad89f16df4252f2b7774e9b8 100644 (file)
  *     Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  */ 
 
+#if HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include "mutt.h"
 #include "mutt_curses.h"
 #include "mutt_menu.h"
index 97e6ac103ea04d9cf18c75e7dad96665b33f04d2..c1a721563692f2b265950071f978fc1a1fb47815 100644 (file)
  *     Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  */ 
 
+#if HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include "mutt.h"
 #ifdef USE_IMAP
 #include "mailbox.h"
index 279a374b24e1485666137f2e181341e71160f03b..6f34bf683b82cca0425767ee6c76039c3091ad6e 100644 (file)
--- a/compose.c
+++ b/compose.c
  *     Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  */ 
 
+#if HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include "mutt.h"
 #include "mutt_curses.h"
 #include "mutt_idna.h"
diff --git a/copy.c b/copy.c
index 9e77ba2f7269e661a15500d90fa440691ba37165..669de9adb86e1d3049037db47aa2282960b63468 100644 (file)
--- a/copy.c
+++ b/copy.c
  *     Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  */ 
 
+#if HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include "mutt.h"
 #include "mailbox.h"
 #include "mx.h"
index 65c0582610eede4dc2e3eb823c9323fd53e9fca6..884319525c672e33dd440d265732007f168f942e 100644 (file)
@@ -20,7 +20,9 @@
  *     Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  */
 
-#include <config.h>
+#if HAVE_CONFIG_H
+# include "config.h"
+#endif
 
 #ifdef CRYPT_BACKEND_GPGME
 
index 083a82f16d71e36c9a284830d2dbbde7800985c3..e6e3bc809e009213e48bfacdfa56965cb0244ef9 100644 (file)
     This is a crytpo module wrapping the classic pgp code.
  */
 
+#if HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include "crypt-mod.h"
 #include "pgp.h"
 
index 05e16998e91373c966730914425b4de8eba26a51..bab9663a4fa79d83b572bed57494236cee2a31d9 100644 (file)
@@ -20,7 +20,9 @@
     This is a crytpo module wrapping the gpgme based pgp code.
  */
 
-#include <config.h>
+#if HAVE_CONFIG_H
+# include "config.h"
+#endif
 
 #ifdef CRYPT_BACKEND_GPGME
 
index e6ab753b00c7e9aabb9d4a30687ff3cd9740b538..cff63b24004d06301e3513a5bdafbea9d3fc8352 100644 (file)
     This is a crytpo module wrapping the classic smime code.
  */
 
+#if HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include "crypt-mod.h"
 #include "smime.h"
 
index 263b94f5e22653740b64e5fe0639d720c03031b4..761dec9135bd40b328d90d981565167d4f97bf4f 100644 (file)
@@ -20,7 +20,9 @@
     This is a crytpo module wrapping the gpgme based smime code.
  */
 
-#include <config.h>
+#if HAVE_CONFIG_H
+# include "config.h"
+#endif
 
 #ifdef CRYPT_BACKEND_GPGME
 
index 356e3e9c03c1dec7c2154ee95d5a472e5d569c61..4be1e4356157ae67321369d66f9b0a65ba527ad8 100644 (file)
  *     Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  */
 
+#if HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include "crypt-mod.h"
 
 /* A type an a variable to keep track of registered crypto modules. */
diff --git a/crypt.c b/crypt.c
index dfb097411edd48f8387a0e22de7dbb6917a722aa..ae79b147335ad2dc7ae26d6c3775445e32c2beba 100644 (file)
--- a/crypt.c
+++ b/crypt.c
@@ -21,6 +21,9 @@
  *     Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  */
 
+#if HAVE_CONFIG_H
+# include "config.h"
+#endif
 
 #include "mutt.h"
 #include "mutt_curses.h"
index ae25b11db0af62a2210910ec033967f6c922b581..f6a1bab35b01d6385e3bff764121732f9a9aad2e 100644 (file)
    contained in this file and the functions implemented by the crypto
    modules.  */
 
+#if HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include "mutt.h"
 #include "mutt_crypt.h"
 
index 15e4543fd2bc2356a187b218a005bbfb9495ef16..6402b43dcdac8eb1fd484e1ea6280de630d54216 100644 (file)
  *     Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  */ 
 
+#if HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include "mutt.h"
 #include "mutt_menu.h"
 #include "mutt_curses.h"
index 3e24b553ddbe05eee0b95cac03eec25a051151e2..cd78fce8b03423f0adea942afa3c26f30c3fcf3b 100644 (file)
  *     Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  */ 
 
+#if HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include "mutt.h"
 #include "mutt_curses.h"
 #include "mutt_menu.h"
diff --git a/date.c b/date.c
index cc8e4e366c24758fd6bd497229ee32dc57a78e3c..b97b1134eacc90c9bd2f089e996d69e8ffbfa07b 100644 (file)
--- a/date.c
+++ b/date.c
  *     Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  */ 
 
+#if HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include "mutt.h"
 #include <string.h>
 
index eb799d596fabf0569db05fd2a57be4e241bbfb75..97edacc54c536544025045575e7647902683c956 100644 (file)
--- a/dotlock.c
+++ b/dotlock.c
  * macro.
  */
 
+#if HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
diff --git a/edit.c b/edit.c
index c6b9ba76e8bf379953c35f8aa0b64c461fa82e9b..fa0633c60e2207debbd4bf5916a6f24a5d31a36c 100644 (file)
--- a/edit.c
+++ b/edit.c
 
 /* Close approximation of the mailx(1) builtin editor for sending mail. */
 
+#if HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include "mutt.h"
 #include "mutt_curses.h"
 #include "mutt_idna.h"
index c341542dfe0778c2668a0bdce429fc35afb142d0..981899a55cd70b8a38a863f1dfedc0c4ce16499e 100644 (file)
--- a/editmsg.c
+++ b/editmsg.c
 
 /* simple, editor-based message editing */
 
+#if HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include "mutt.h"
 #include "copy.h"
 #include "mailbox.h"
diff --git a/enter.c b/enter.c
index 9547ebb8f000e56001597d0fc2b4ef90917cc6f4..eb87e7969d27b97414f1ece9c9ea976a75f99f5f 100644 (file)
--- a/enter.c
+++ b/enter.c
  *     Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  */ 
 
+#if HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include "mutt.h"
 #include "mutt_menu.h"
 #include "mutt_curses.h"
index 04692a9cc6df538bb08094ff9f1995b3bc828759..2dda7fd8849bf98c68811374d2fe1d18dc79ebc8 100644 (file)
--- a/extlib.c
+++ b/extlib.c
 #define WHERE
 #define _EXTLIB_C
 
+#if HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include <stdlib.h>
 #include "lib.h"
 
index 056fbdd00c99c943caa3af82e8f08ba511a93211..862ebbd1e501765642eccc8a142679c54f088d8c 100644 (file)
--- a/filter.c
+++ b/filter.c
  *     Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  */ 
 
+#if HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include "mutt.h"
 
 #include <unistd.h>
diff --git a/flags.c b/flags.c
index 4e469088e8b6451e7e9809233792c63b2f2d700c..882fd496c9bf8871d6fb1183fed3499fc37b00ad 100644 (file)
--- a/flags.c
+++ b/flags.c
  *     Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  */ 
 
+#if HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include "mutt.h"
 #include "mutt_curses.h"
 #include "sort.h"
diff --git a/from.c b/from.c
index 0fa32cb2d971bf191dea9f260c8553e0b63129fd..c26d5b1a6d098853014ee0f0301ffe9683052a0b 100644 (file)
--- a/from.c
+++ b/from.c
  *     Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  */ 
 
+#if HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include "mutt.h"
 
 #include <ctype.h>
index 23b2f48b5f81ade0943aac57c6b54780dda888a7..71636279cf7b86b532aa06fd50aa404b1ae7a792 100644 (file)
@@ -1,3 +1,7 @@
+#if HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include <stdio.h>
 #include <ctype.h>
 #include <string.h>
index 5236e7810f6ef10e4befff7d632479b8a8b7df7e..caf2f21f0361a4bb7650936d6ad8f8b88c3f16ad 100644 (file)
  * 
  */
 
+#if HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
index d425c222b7733cb729ec594ecdd09b77736e16a7..8dfb769ddf4d2940182a20c68d63967171e7a148 100644 (file)
--- a/handler.c
+++ b/handler.c
  *     Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  */ 
 
+#if HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include <stdlib.h>
 #include <string.h>
 #include <unistd.h>
diff --git a/hash.c b/hash.c
index f0f9a12dccc845183bacf79b7747bb902cec13c4..01eaad70fd3bbfed71dbc6f7f95985f811c5b30e 100644 (file)
--- a/hash.c
+++ b/hash.c
  *     Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  */ 
 
+#if HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include <stdlib.h>
 #include <stdio.h>
 #include <string.h>
index e2d9f98381d30724de8ab4037f918387121df7f0..e1dd70173e637e2f65c190aace9d157f22d7e722 100644 (file)
--- a/hdrline.c
+++ b/hdrline.c
  *     Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  */ 
 
+#if HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include "mutt.h"
 #include "mutt_curses.h"
 #include "sort.h"
index 67eb25a75783bd0b488b7d69d1a795ad1ac3e2ed..af70a7b2684c47b9679cd0a43f857ba773d3184b 100644 (file)
--- a/headers.c
+++ b/headers.c
  *     Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  */
 
+#if HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include "mutt.h"
 #include "mutt_crypt.h"
 #include "mutt_idna.h"
diff --git a/help.c b/help.c
index 42961229b31d73dd1d9d43d3e2d96c7bb3168ecd..a4985a9de6a940a27d84b6ede5e2e5132e8b8fb8 100644 (file)
--- a/help.c
+++ b/help.c
 
 #define HELP_C
 
+#if HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include "mutt.h"
 #include "mutt_curses.h"
 #include "keymap.h"
index ca3a2d7979c109323f5eb25881d8a481dc6160b6..5f335692ae8043c93fa5ffa645d4901780448f79 100644 (file)
--- a/history.c
+++ b/history.c
  *     Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  */ 
 
+#if HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include "mutt.h"
 #include "history.h"
 
diff --git a/hook.c b/hook.c
index 740ff46207907e87cf79d4f8d8323c60649d4d9a..6540988d169e438369b3eda356d209059874e44f 100644 (file)
--- a/hook.c
+++ b/hook.c
  *     Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  */
 
+#if HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include "mutt.h"
 #include "mailbox.h"
 #include "mutt_crypt.h"
index 85fd0292d065034d6d35c1e8ab46c2efd21c99f5..d52f86fb0370b35905eb9dee92e18dc0c593b9ee 100644 (file)
@@ -20,7 +20,7 @@
 
 /* IMAP login/authentication code */
 
-#ifdef HAVE_CONFIG_H
+#if HAVE_CONFIG_H
 # include "config.h"
 #endif
 
index ed74a86fe04f7a80e0b87861c25cf1044b52a771..6610374b3dedd137f0d65b957fd664d67f2a6e29 100644 (file)
@@ -18,7 +18,7 @@
 
 /* IMAP login/authentication code */
 
-#ifdef HAVE_CONFIG_H
+#if HAVE_CONFIG_H
 # include "config.h"
 #endif
 
index 75cddc0a13c324ec4ee36e9f98b1d160708f5b5f..b440dd2a0f68f9b44a6f10c35d08d3cd01ccfd4f 100644 (file)
@@ -18,7 +18,7 @@
 
 /* IMAP login/authentication code */
 
-#ifdef HAVE_CONFIG_H
+#if HAVE_CONFIG_H
 # include "config.h"
 #endif
 
index 3d0f45fb036e266658544c846c0cab193ca0dbdd..e687fbdea0a7204e8378c3ec07e04e7303252083 100644 (file)
@@ -18,7 +18,7 @@
 
 /* GSS login/authentication code */
 
-#ifdef HAVE_CONFIG_H
+#if HAVE_CONFIG_H
 # include "config.h"
 #endif
 
index 71b566cad7b1e105ce991ae0565ca1a6bfd479c1..af1fa21434a1daa11126134d7d2653a1627ad9fa 100644 (file)
@@ -18,7 +18,7 @@
 
 /* plain LOGIN support */
 
-#ifdef HAVE_CONFIG_H
+#if HAVE_CONFIG_H
 # include "config.h"
 #endif
 
index c01f2283ce98962458c19eb3ced18e47ddc7232f..a76677ff750125d7a71c1c3642e95f5f9c5b7fac 100644 (file)
@@ -18,7 +18,7 @@
 
 /* SASL login/authentication code */
 
-#ifdef HAVE_CONFIG_H
+#if HAVE_CONFIG_H
 # include "config.h"
 #endif
 
index 7eb2634ce3d7ba4feed8f1924f7215e15754b8e7..760870e68a433641267224b7d00885adc53c7825 100644 (file)
@@ -19,7 +19,7 @@
 
 /* Mutt browser support routines */
 
-#ifdef HAVE_CONFIG_H
+#if HAVE_CONFIG_H
 # include "config.h"
 #endif
 
index 6581efb97ba6fa6a669967ccb9b27ff5bf84904a..4055105e3300e42e4b260658b77f310810c2d0c4 100644 (file)
@@ -21,7 +21,7 @@
 /* command.c: routines for sending commands to an IMAP server and parsing
  *  responses */
 
-#ifdef HAVE_CONFIG_H
+#if HAVE_CONFIG_H
 # include "config.h"
 #endif
 
index ac14c9256ce31957c913bddb6dc5b15c4a6eab4d..675edab28894a61092c036fe76acdeda9be975eb 100644 (file)
@@ -20,7 +20,7 @@
 
 /* Support for IMAP4rev1, with the occasional nod to IMAP 4. */
 
-#ifdef HAVE_CONFIG_H
+#if HAVE_CONFIG_H
 # include "config.h"
 #endif
 
index 29770f0b509dea5a26ed3d5c7f1ff5211aac0ff1..7af9cc0030fde853dd77cceaa98c93e7dcac9eed 100644 (file)
@@ -19,7 +19,7 @@
 
 /* message parsing/updating functions */
 
-#ifdef HAVE_CONFIG_H
+#if HAVE_CONFIG_H
 # include "config.h"
 #endif
 
index a919abeb1508065a8d7204a93778fb385ee4f3ed..b5b871c820a5283b5b1b9d65e1f8a89585b20d1d 100644 (file)
@@ -16,7 +16,7 @@
  *     Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  */ 
 
-#ifdef HAVE_CONFIG_H
+#if HAVE_CONFIG_H
 # include "config.h"
 #endif
 
diff --git a/init.c b/init.c
index a7af5026e6018a83a10e52337e00b78ef5760106..17ddb042d51dc21181598a1541a17485673c5b77 100644 (file)
--- a/init.c
+++ b/init.c
  *     Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  */ 
 
+#if HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include "mutt.h"
 #include "mapping.h"
 #include "mutt_curses.h"
index de0169da687df397554996b611ce5a4c36b0199f..b3ef1d3829bcda87367e3b3bdefc9b6eab2ee8cb 100644 (file)
--- a/keymap.c
+++ b/keymap.c
  *     Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  */ 
 
+#if HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include "mutt.h"
 #include "mutt_menu.h"
 #include "mutt_curses.h"
diff --git a/lib.c b/lib.c
index f6be051069a5fed4262ee8e1f017ce4f507520dd..c0147c35799a6ef0973be711544602bf7ee15b75 100644 (file)
--- a/lib.c
+++ b/lib.c
  * some of our "standard" functions in external programs, too.
  */
 
+#if HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include <string.h>
 #include <ctype.h>
 #include <unistd.h>
diff --git a/main.c b/main.c
index ecf9703cece8a1bb43d8645970e7197c121eef73..d38d602190fe925e86745cc020186f704e44f2dc 100644 (file)
--- a/main.c
+++ b/main.c
 
 #define MAIN_C 1
 
+#if HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include "mutt.h"
 #include "mutt_curses.h"
 #include "keymap.h"
index 4d3011ebd949eab0f99299ab9f071aaea15b9304..7ba1e74ab5e39cd9adf5936e4a4ae7f18139b3db 100644 (file)
--- a/makedoc.c
+++ b/makedoc.c
@@ -27,8 +27,9 @@
  **
  **/
 
-
-#include "config.h"
+#if HAVE_CONFIG_H
+# include "config.h"
+#endif
 
 #include <stdio.h>
 #include <stdlib.h>
diff --git a/mbox.c b/mbox.c
index 6ecd7daac0bf7f481c78981a5ddb003d26931b27..6f721d2d2b99115e283c7a999e079971c3171444 100644 (file)
--- a/mbox.c
+++ b/mbox.c
 
 /* This file contains code to parse ``mbox'' and ``mmdf'' style mailboxes */
 
+#if HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include "mutt.h"
 #include "mailbox.h"
 #include "mx.h"
diff --git a/mbyte.c b/mbyte.c
index 3c14c6f6b0749f79f67333f5dac238efdf7f26eb..97a43071589bc259457dff9ce543250a65c2dd0e 100644 (file)
--- a/mbyte.c
+++ b/mbyte.c
  * Japanese support by TAKIZAWA Takashi <taki@luna.email.ne.jp>.
  */
 
+#if HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include "mutt.h"
 #include "mbyte.h"
 #include "charset.h"
diff --git a/md5c.c b/md5c.c
index 2c2c564e9505a5355c167fd219188f1c1ccaa834..be22860123db079c2dbfd79ae3356d33807b08f8 100644 (file)
--- a/md5c.c
+++ b/md5c.c
@@ -23,6 +23,10 @@ These notices must be retained in any copies of any part of this
 documentation and/or software.
  */
 
+#if HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include "md5.h"
 
 /* Constants for MD5Transform routine.
diff --git a/menu.c b/menu.c
index 586486609fc4343fb81a6fab78f3bfbc1f70f2b0..e022a12c2b12c13a034af419e7582fa2bd57b559 100644 (file)
--- a/menu.c
+++ b/menu.c
  *     Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  */
 
+#if HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include "mutt.h"
 #include "mutt_curses.h"
 #include "mutt_menu.h"
diff --git a/mh.c b/mh.c
index aed3f8f75fef75ff9f17f3f628e48a7f7405d1ba..966aa5b6eb80e2caf80897c9042adc1831a17fbb 100644 (file)
--- a/mh.c
+++ b/mh.c
  * mailboxes.
  */
 
+#if HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include "mutt.h"
 #include "mailbox.h"
 #include "mx.h"
diff --git a/mutt.h b/mutt.h
index 7ed647d18a9af7b54dd0591a209564f4f65fe504..297009c085d947a9af0970efaff7b1186a99c3f3 100644 (file)
--- a/mutt.h
+++ b/mutt.h
@@ -21,8 +21,6 @@
 #ifndef MUTT_H
 #define MUTT_H 
 
-#include "config.h"
-
 #include <stdio.h>
 #include <stdlib.h>
 #ifdef HAVE_UNISTD_H
index 9a3fbb465cd9b7bae84710d1903945eab1908064..2cfecf239376b73ef34e2fb69844aab12be2dc4e 100644 (file)
  *     Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  */ 
 
-#include "config.h"
+#if HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include "mutt.h"
 #include "charset.h"
 #include "mutt_idna.h"
index 0c3f28c97600cfe64daa0729a61c839f28d916b6..3e5911fbc12c8fd0c3b809f7a316be8175690dd6 100644 (file)
 
 /* common SASL helper routines */
 
+#if HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include "mutt.h"
 #include "account.h"
 #include "mutt_sasl.h"
index 9c2f3e47fc0a0764c786989f5a4cc15856e45d33..ebff846de294124044cc4b4f584920be0a7f6056 100644 (file)
  *     Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  */ 
 
+#if HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include "mutt.h"
 #include "globals.h"
 #include "mutt_socket.h"
index 2c09e650d99d62c0f15d25f5f3af7085fe4d08c8..09b71d56565238b5f7b58420e590738e7b9c1272 100644 (file)
@@ -16,8 +16,9 @@
  *     Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  */
 
-/* for SSL NO_* defines */
-#include "config.h"
+#if HAVE_CONFIG_H
+# include "config.h"
+#endif
 
 #include <openssl/ssl.h>
 #include <openssl/x509.h>
index df689fddb6c7540b38baf4589fb834562765c3ba..7eaec3a46ff00f28292fa4afa570b69c284fa28b 100644 (file)
  *     Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  */
 
+#if HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include <gnutls/gnutls.h>
 #include <gnutls/x509.h>
 
index 9549d99f70f4a4eb9d2c81e13a82695fa1195dcd..ccfa00832cf33921883b9edc6a2a318d178733b6 100644 (file)
  *     Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  */
 
+#if HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include <prinit.h>
 #include <pk11func.h>
 #include <prtypes.h>
index 01e1d729c24aa56e801d880e59333b79965fb975..01338d70b79db26fc05f7ad5f58db0247d13c1c9 100644 (file)
  *     Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  */
 
+#if HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include "mutt.h"
 #include "mutt_socket.h"
 #include "mutt_tunnel.h"
index a0bb414e85b5e53e44f2a0c389126fcc95db352a..f55c8d37a7ccfd81c7b4b11ca39b3a0f67e39859 100644 (file)
--- a/muttlib.c
+++ b/muttlib.c
  *     Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  */ 
 
+#if HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include "mutt.h"
 #include "mutt_curses.h"
 #include "mime.h"
diff --git a/mx.c b/mx.c
index 41b2fcbfb5750c06989ce7d615321e64b3db059b..d27a775cbe1048102321e52e65f1f7166501202d 100644 (file)
--- a/mx.c
+++ b/mx.c
  *     Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  */ 
 
+#if HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include "mutt.h"
 #include "mx.h"
 #include "rfc2047.h"
diff --git a/pager.c b/pager.c
index a73842fd1bd86a0a2a871dba7eb923d1edb97e57..4f094fa4e1bd45bce888ce96615cef93b5f8c254 100644 (file)
--- a/pager.c
+++ b/pager.c
  *     Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  */ 
 
+#if HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include "mutt.h"
 #include "mutt_curses.h"
 #include "mutt_regex.h"
diff --git a/parse.c b/parse.c
index c9731f735ae8895e116147f011086c6069fb061b..edc9eefe4b24302eaa4866b05af332ff76296dea 100644 (file)
--- a/parse.c
+++ b/parse.c
  *     Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  */ 
 
+#if HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include "mutt.h"
 #include "mutt_regex.h"
 #include "mailbox.h"
index 6ee3e67d5edb37a53f2b55179c1311398effaf39..7877b468d240841aa240280058ee2640413261af 100644 (file)
--- a/pattern.c
+++ b/pattern.c
  *     Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  */ 
 
+#if HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include "mutt.h"
 #include "mapping.h"
 #include "keymap.h"
diff --git a/pgp.c b/pgp.c
index 8347ba4e2935c9443c6b88b51544865457dea4d4..9ce8cd674d07d0312a4a7939f739d137f84550cc 100644 (file)
--- a/pgp.c
+++ b/pgp.c
  * a message.
  */
 
+#if HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include "mutt.h"
 #include "mutt_curses.h"
 #include "pgp.h"
index 911c4c64a34293f603d01bd930cba70e44a9088a..ac3145a47595fcbd7bd0ff5155de7bceff5ea599 100644 (file)
  * is almost entirely format based.
  */
 
+#if HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include <sys/types.h>
 #include <sys/stat.h>
 
index 77ec11e3da11b45c8f6c6133c9fc7accecc636a1..aa686427f2f332a350ff751bafbed14c1312818d 100644 (file)
--- a/pgpkey.c
+++ b/pgpkey.c
  *     Boston, MA  02111, USA.
  */
 
+#if HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include "mutt.h"
 #include "mutt_curses.h"
 #include "mutt_menu.h"
index a271881602fc4be4a78b40102626386e000da60e..258b1c3cb1544ffeea9d945b016b9161b2e6da53 100644 (file)
--- a/pgplib.c
+++ b/pgplib.c
 
 /* Generally useful, pgp-related functions. */
 
+#if HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
index 5835e7dde601f8b1a5338823fe4ae004cf559938..fb8d410fd84e2820fd4fb54f97157fd87c105507 100644 (file)
  * algorithm.
  */
 
+#if HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include "mutt.h"
 #include "pgp.h"
 #include "pgppacket.h"
index f6c64a5396000b657406f697cbdbcfb0d83ec005..8a4e11e9cbb4d6c19c17748c25894cd07304e1db 100644 (file)
  * MA 02111, USA.
  */
 
-#include "config.h"
+#if HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include <stdio.h>
 #include <stdlib.h>
 #include <string.h>
index 878b10af77dce551d77ed2f5f7a48d6811463f5f..fcd4a0b353b9a6202768825e8b79d60050e58d12 100644 (file)
@@ -34,8 +34,9 @@
  *
  */
 
-
-#include "config.h"
+#if HAVE_CONFIG_H
+# include "config.h"
+#endif
 
 #include <stdio.h>
 #include <stdlib.h>
diff --git a/pop.c b/pop.c
index 8492ac216f8c92a5b34e7c2d9e6312b057fa0fa7..7136ab0efa111a7911b900b2a97dd76514495645 100644 (file)
--- a/pop.c
+++ b/pop.c
  *     Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  */ 
 
+#if HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include "mutt.h"
 #include "mx.h"
 #include "pop.h"
index 9353eef5c0964d5ead7f54be9220aece919e46e5..3491fb49b495caf05af5463cd30bba11babe7c18 100644 (file)
  *     Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  */
 
+#if HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include "mutt.h"
 #include "mx.h"
 #include "md5.h"
index 88b249d846d304c09cdb1f303041c70e7b0a9245..aa11eaa0a2edf9c138cf9a464e578765d247b283 100644 (file)
--- a/pop_lib.c
+++ b/pop_lib.c
  *     Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  */
 
+#if HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include "mutt.h"
 #include "mx.h"
 #include "url.h"
index 26b99b5ccb5e14a897dd5f8e8c6519460232532a..973c4e041dfc06eb1ed32acdd3299533c4ab83a6 100644 (file)
  *     Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  */ 
 
+#if HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include "mutt.h"
 #include "mutt_menu.h"
 #include "rfc1524.h"
diff --git a/query.c b/query.c
index 87e046a4b60afe3703ebcd110b6c026173591446..90dc614178eb0ca3759ebb3e0446ebe01932bd8a 100644 (file)
--- a/query.c
+++ b/query.c
  *     Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  */ 
 
+#if HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include "mutt.h"
 #include "mutt_menu.h"
 #include "mutt_idna.h"
index 017927e667e9c1a0c7ac2120ce7cd06d6432678a..df60a45c51b4cb9a9908bee008e46da2d92cda4b 100644 (file)
  *     Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  */ 
 
+#if HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include "mutt.h"
 #include "mutt_curses.h"
 #include "mutt_menu.h"
index ccbf656e07b9550a4e85059ac15f98be29358a3b..20fe5ffb7fbf4b5eefad5de4903bbd38dce1930e 100644 (file)
--- a/recvcmd.c
+++ b/recvcmd.c
  *     Boston, MA  02111, USA. 
  */
 
+#if HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include "mutt.h"
 #include "mutt_curses.h"
 #include "mutt_menu.h"
diff --git a/regex.c b/regex.c
index 398f7f9d8fcf1e36889cec7bc93b21082397b8bf..7ed83d954f3f0c601be076dbb2a1f00077f1d7f9 100644 (file)
--- a/regex.c
+++ b/regex.c
@@ -50,7 +50,7 @@
 #undef _GNU_SOURCE
 #define _GNU_SOURCE
 
-#ifdef HAVE_CONFIG_H
+#if HAVE_CONFIG_H
 # include <config.h>
 #endif
 
index 8172f7c217ab45e364aa02553282f8b4b555ef54..ec8e98a4d81966dacc59cf1f8e96f06add461881 100644 (file)
  * Mixmaster support for Mutt
  */
 
+#if HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include "mutt.h"
 #include "mutt_curses.h"
 #include "mutt_menu.h"
index c36b7a47dd6a57e310d3506696e761cfc83b0d0a..81cd729ab5e91f154d8f7d74b55537348dad756d 100644 (file)
--- a/resize.c
+++ b/resize.c
  *     Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  */ 
 
+#if HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include "mutt.h"
 #include "mutt_curses.h"
 
index d360bb47426aa3c7b5109ea259c249563fabb3cf..e9ae6e191f4e6ea1aaefce590a031c6c197a287a 100644 (file)
--- a/rfc1524.c
+++ b/rfc1524.c
  * rfc1524.
  */
 
+#if HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include "mutt.h"
 #include "rfc1524.h"
 
index 265fd4d9217e5bd73266df76ad64730632830534..f25ff6d83d4367eb26ac6164224fec019bfe0769 100644 (file)
--- a/rfc2047.c
+++ b/rfc2047.c
  *     Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  */ 
 
+#if HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include "mutt.h"
 #include "mime.h"
 #include "charset.h"
index 3f45650831a5ad8b62e8d8267d9078647928e42d..ad03be97696330e2b2578b5ee1ae76390ea82c2c 100644 (file)
--- a/rfc2231.c
+++ b/rfc2231.c
  *
  */
 
+#if HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include "mutt.h"
 #include "mime.h"
 #include "charset.h"
index 2732f52b0f463d00ab1867365d944d7f9d8aa23f..12318db8cd69f15774092287e2501a154985083d 100644 (file)
--- a/rfc822.c
+++ b/rfc822.c
  *     Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  */ 
 
+#if HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include <string.h>
 #include <ctype.h>
 #include <stdlib.h>
diff --git a/score.c b/score.c
index a29e35713ac79a32feb5403ada0982d366c526e5..3913aa864b3b56ccbc47c3d0c5f810ccd7a576ab 100644 (file)
--- a/score.c
+++ b/score.c
  *     Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  */ 
 
+#if HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include "mutt.h"
 #include "sort.h"
 #include <string.h>
diff --git a/send.c b/send.c
index 2ec304c081896cde582919eacb0541bda95e8a95..f783fbabf5dba344779a403bb24ea18165f35e52 100644 (file)
--- a/send.c
+++ b/send.c
  *     Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  */ 
 
+#if HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include "mutt.h"
 #include "mutt_curses.h"
 #include "rfc2047.h"
index cfc63b85a2ed6a4f6100aa8a71d2d623d1334c58..c0d051c08ecfb330c915fbb73ef10e2b4e7466ad 100644 (file)
--- a/sendlib.c
+++ b/sendlib.c
 
 #define _SENDLIB_C 1
 
+#if HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include "mutt.h"
 #include "mutt_curses.h"
 #include "rfc2047.h"
diff --git a/sha1.c b/sha1.c
index 9196664907c4b84f5270df3dfacf8471ab5be1b7..3fb597eee217d7760d0bf3d8a090b70e5ba561c0 100644 (file)
--- a/sha1.c
+++ b/sha1.c
 
 #define SHA1HANDSOFF
 
+#if HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include <string.h>
 
 #include "sha1.h"
index a12cb9089f20c0cd7af9aa929e73149307e62776..05be6b0619db65629a86da57017ec74783e206e0 100644 (file)
--- a/signal.c
+++ b/signal.c
  *     Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  */ 
 
+#if HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include "mutt.h"
 #include "mutt_curses.h"
 
diff --git a/smime.c b/smime.c
index f6d43f0603f3577166e5b08cd753ce2f3935d3bb..c43eb2b636460ec8c208a7e0f126ea63182bf110 100644 (file)
--- a/smime.c
+++ b/smime.c
  *     Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  */
 
+#if HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include "mutt.h"
 #include "mutt_curses.h"
 #include "mutt_menu.h"
index c2ebbde0da3d4e5c329ec7ea9bf21a059102246a..8a5586abaa358bb4be431261b8464590ddd2c592 100644 (file)
@@ -40,7 +40,9 @@
  *
  **************************************************************/
 
-#include "config.h"
+#if HAVE_CONFIG_H
+# include "config.h"
+#endif
 
 #if !defined(HAVE_SNPRINTF) || !defined(HAVE_VSNPRINTF)
 
diff --git a/sort.c b/sort.c
index 17e49f9947e1a427b27e7e9d8afdfb84645b5c03..6e1c29f7a9af93f04a9c06d9ca2eb223e7bd141a 100644 (file)
--- a/sort.c
+++ b/sort.c
  *     Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  */ 
 
+#if HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include "mutt.h"
 #include "sort.h"
 #include "mutt_idna.h"
index 382f13181817d9951ac81fc8bd4ee24eca5b6e62..ecd9bc6e0fa3888c7785dcbf6edd1724ac6e1142 100644 (file)
--- a/status.c
+++ b/status.c
  *     Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  */ 
 
+#if HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include "mutt.h"
 #include "mutt_menu.h"
 #include "mutt_curses.h"
index 3ed31cf059d4ac8b2ab1761c5f6433fdff8343d4..f5674fd40de6d17c38fdcd20bf2eeebdaf04beb9 100644 (file)
--- a/system.c
+++ b/system.c
  *     Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  */ 
 
+#if HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include "mutt.h"
 #ifdef USE_IMAP
 # include "imap.h"
index e70d4196d5c28f0a4cb8ebbfaf77febbd77bb8c3..286266515f04a41ca137f34c76397e2af134e3a5 100644 (file)
--- a/thread.c
+++ b/thread.c
  *     Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA  02111, USA.
  */ 
 
+#if HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include "mutt.h"
 #include "sort.h"
 
diff --git a/url.c b/url.c
index a973bbf8940415ae56eea6f81a87592826b4ff5b..6abe2faf201094aaf213531ee3d7ce3cc88e3dbf 100644 (file)
--- a/url.c
+++ b/url.c
  * A simple URL parser.
  */
 
+#if HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #include "mutt.h"
 #include "mapping.h"
 #include "url.h"
diff --git a/utf8.c b/utf8.c
index b65b2a9c706cf5840b8f352eb9e7d4a94a79d42f..bed31abfacfacef66cfc0815286ef6b1a978b52e 100644 (file)
--- a/utf8.c
+++ b/utf8.c
@@ -1,3 +1,7 @@
+#if HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #ifndef HAVE_WC_FUNCS
 
 #include <errno.h>
index e0e1cb745b65e2659120abaf9062c8b5a7398f70..d42a082251ae4994c9c61b8d6356286e2f37fe52 100644 (file)
--- a/wcwidth.c
+++ b/wcwidth.c
@@ -9,6 +9,10 @@
 /* Adapted for Mutt by Edmund Grimley Evans.
  */
 
+#if HAVE_CONFIG_H
+# include "config.h"
+#endif
+
 #ifndef HAVE_WC_FUNCS
 
 #include "mutt.h"