diff options
author | wiz <wiz@pkgsrc.org> | 2001-02-26 20:55:05 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2001-02-26 20:55:05 +0000 |
commit | cca4e6a829cecea93f97d6f7a64a8b59d9e84546 (patch) | |
tree | d358ee66ed057b378481e552a447c0628fe30cdd /mail/cyrus-imapd/patches | |
parent | 362bb3b0dfb73beb964065e3795b22ad105cedc0 (diff) | |
download | pkgsrc-cca4e6a829cecea93f97d6f7a64a8b59d9e84546.tar.gz |
Fix sendmail path. pkg/12081.
Diffstat (limited to 'mail/cyrus-imapd/patches')
-rw-r--r-- | mail/cyrus-imapd/patches/patch-ag | 17 |
1 files changed, 17 insertions, 0 deletions
diff --git a/mail/cyrus-imapd/patches/patch-ag b/mail/cyrus-imapd/patches/patch-ag new file mode 100644 index 00000000000..963dba1ed66 --- /dev/null +++ b/mail/cyrus-imapd/patches/patch-ag @@ -0,0 +1,17 @@ +$NetBSD: patch-ag,v 1.1 2001/02/26 20:55:05 wiz Exp $ + +--- imap/deliver.c.orig Tue May 16 22:18:18 2000 ++++ imap/deliver.c +@@ -833,7 +833,12 @@ + } + } + ++#ifdef __NetBSD__ ++#include <paths.h> ++#define SENDMAIL _PATH_SENDMAIL ++#else + #define SENDMAIL "/usr/lib/sendmail" ++#endif + #define POSTMASTER "postmaster" + + static char *month[] = { "Jan", "Feb", "Mar", "Apr", "May", "Jun", |