diff options
author | Ron <ron@debian.org> | 2009-07-22 23:12:50 +0930 |
---|---|---|
committer | Johannes Berg <johannes@sipsolutions.net> | 2009-07-22 16:51:33 +0200 |
commit | 0aba921c8430517b96fb9830b1615c34d6c5fdd7 (patch) | |
tree | 549859cbc3cc8878538b7d5ccf82eb40eab53ffe | |
parent | af0f8f8de27901e2efb9560a1fc66c7af3cd810b (diff) | |
download | dovecot-antispam-0aba921c8430517b96fb9830b1615c34d6c5fdd7.tar.gz dovecot-antispam-0aba921c8430517b96fb9830b1615c34d6c5fdd7.tar.xz dovecot-antispam-0aba921c8430517b96fb9830b1615c34d6c5fdd7.zip |
Include stdlib.h for the getenv prototype
Without the prototype this FTBFS on ia64 platforms. Closes: #537765
-rw-r--r-- | antispam-plugin.h | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/antispam-plugin.h b/antispam-plugin.h index 493fd1e..5c56b42 100644 --- a/antispam-plugin.h +++ b/antispam-plugin.h @@ -8,6 +8,7 @@ #include "dict.h" #include "imap-search.h" #include "dovecot-version.h" +#include <stdlib.h> #define __stringify_1(x) #x #define stringify(x) __stringify_1(x) |