From: Rocco Rutte Date: Thu, 15 Nov 2007 12:17:16 +0000 (+0100) Subject: Fix more documentation build issues. X-Git-Tag: mutt-1-5-18-rel~74 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=8d6305caafd0dea222b266080042c4c7411f5ea2;p=mutt Fix more documentation build issues. Define USE_SASL (for $smtp_authenticators) in makedoc-defs.h, include it in makedoc.c to force doc rebuild if makedoc-defs.h changes. --- diff --git a/ChangeLog b/ChangeLog index 705b3e00..3c7557b0 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,13 @@ +2007-11-15 12:32 +0100 Rocco Rutte (8c5357e2b31c) + + * parse.c, protos.h, send.c: Properly parse and validate Message-IDs + from my_hdrs. Closes #2452. + +2007-11-15 11:55 +0100 Rocco Rutte (14f0985f1347) + + * ChangeLog, configure.ac: Check for bind_textdomain_codeset() outside + libc, too. + 2007-11-15 11:53 +0100 peb (22c68faeec08) * lib.h: Don't use bind_textdomain_codeset() if we're not using diff --git a/doc/makedoc-defs.h b/doc/makedoc-defs.h index 875b3503..3c2df6a0 100644 --- a/doc/makedoc-defs.h +++ b/doc/makedoc-defs.h @@ -51,4 +51,6 @@ # ifndef HAVE_GETADDRINFO # define HAVE_GETADDRINFO # endif - +# ifndef USE_SASL +# define USE_SASL +# endif diff --git a/doc/makedoc.c b/doc/makedoc.c index 4a8deb43..528d372a 100644 --- a/doc/makedoc.c +++ b/doc/makedoc.c @@ -46,6 +46,8 @@ # include #endif +#include "makedoc-defs.h" + #ifndef HAVE_STRERROR #ifndef STDC_HEADERS extern int sys_nerr;