diff options
-rw-r--r-- | mail/ChangeLog | 4 | ||||
-rw-r--r-- | mail/mail-config.h | 5 |
2 files changed, 9 insertions, 0 deletions
diff --git a/mail/ChangeLog b/mail/ChangeLog index 2d89ced95d..a9daedf64d 100644 --- a/mail/ChangeLog +++ b/mail/ChangeLog @@ -1,3 +1,7 @@ +2000-08-02 Peter Williams <peterw@helixcode.com> + + * mail-config.h: #ifdef _MAIL_CONFIG_H protect the header. + 2000-08-01 Dan Winship <danw@helixcode.com> * mail-crypto.c: New code to spawn off GPG/PGP to do stuff. diff --git a/mail/mail-config.h b/mail/mail-config.h index 7ed3c75558..6bd5532110 100644 --- a/mail/mail-config.h +++ b/mail/mail-config.h @@ -18,6 +18,9 @@ * Foundation, Inc., 59 Temple Street #330, Boston, MA 02111-1307, USA. */ +#ifndef _MAIL_CONFIG_H +#define _MAIL_CONFIG_H + #include <glib.h> typedef struct @@ -47,3 +50,5 @@ void mail_config (void); void mail_config_druid (void); const MailConfig *mail_config_fetch (void); + +#endif |