diff options
author | Erwin Lansing <erwin@FreeBSD.org> | 2003-07-15 08:50:52 +0000 |
---|---|---|
committer | Erwin Lansing <erwin@FreeBSD.org> | 2003-07-15 08:50:52 +0000 |
commit | 3c9ecc4516917c2fb49723612d44fae8b362d752 (patch) | |
tree | 8800a58ec123b08306ea3d2e7ef9f8ecf56e5ff0 /mail/esmtp/files | |
parent | 8e35c642e90b7e4eb18f72898618653f63b95aba (diff) |
Notes
Diffstat (limited to 'mail/esmtp/files')
-rw-r--r-- | mail/esmtp/files/patch-esmtprc.5 | 13 | ||||
-rw-r--r-- | mail/esmtp/files/patch-lexer.c | 12 |
2 files changed, 25 insertions, 0 deletions
diff --git a/mail/esmtp/files/patch-esmtprc.5 b/mail/esmtp/files/patch-esmtprc.5 new file mode 100644 index 000000000000..03e77453bde0 --- /dev/null +++ b/mail/esmtp/files/patch-esmtprc.5 @@ -0,0 +1,13 @@ +--- esmtprc.5.orig Tue Jul 15 07:57:07 2003 ++++ esmtprc.5 Tue Jul 15 07:58:05 2003 +@@ -96,8 +96,8 @@ + place a %T. The mail message's \fBFrom\fR address will be inserted where you + place an %F. + +-Some common MDAs are "/usr/bin/procmail -d %T", +-"/usr/bin/deliver" and "/usr/lib/mail.local %T". ++Some common MDAs are "/usr/local/bin/procmail -d %T" ++and "/usr/libexec/mail.local %T". + + .SH SEE ALSO + esmtp(1) diff --git a/mail/esmtp/files/patch-lexer.c b/mail/esmtp/files/patch-lexer.c new file mode 100644 index 000000000000..1b0f2d1935e3 --- /dev/null +++ b/mail/esmtp/files/patch-lexer.c @@ -0,0 +1,12 @@ +--- lexer.c.orig Sat Jul 12 09:26:44 2003 ++++ lexer.c Sat Jul 12 09:27:04 2003 +@@ -20,7 +20,9 @@ + #include <string.h> + #include <errno.h> + #include <stdlib.h> ++#ifdef HAVE_STDINT_H + #include <stdint.h> /* May break IA64 test-noansi-r */ ++#endif + + /* end standard C headers. */ + |