diff options
author | sem <sem@FreeBSD.org> | 2005-04-03 05:42:25 +0000 |
---|---|---|
committer | sem <sem@FreeBSD.org> | 2005-04-03 05:42:25 +0000 |
commit | 71c383cd38c848cf74813e42898d9e777112793f (patch) | |
tree | 136bf91341a5247467e8989c607aa692a7be617b /mail | |
parent | 605c554e913d4b7ee7b930512cce32d0538283cf (diff) | |
download | FreeBSD-ports-71c383cd38c848cf74813e42898d9e777112793f.zip FreeBSD-ports-71c383cd38c848cf74813e42898d9e777112793f.tar.gz |
- Remove unnecessary IS_INTERACTIVE from Makefile
- Added patch to prevent crashing whith nonexistent maildir
PR: ports/79495
Submitted by: maintainer
Diffstat (limited to 'mail')
-rw-r--r-- | mail/tpop3d/Makefile | 3 | ||||
-rw-r--r-- | mail/tpop3d/files/patch-maildir.c | 11 |
2 files changed, 12 insertions, 2 deletions
diff --git a/mail/tpop3d/Makefile b/mail/tpop3d/Makefile index d50a7e4..3b536a7 100644 --- a/mail/tpop3d/Makefile +++ b/mail/tpop3d/Makefile @@ -7,14 +7,13 @@ PORTNAME= tpop3d PORTVERSION= 1.5.3 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES= mail MASTER_SITES= http://www.ex-parrot.com/~chris/tpop3d/ MAINTAINER= boris@tagnet.ru COMMENT= Virtual-domain capable POP3 server supporting MySQL,PgSQL etc auth -IS_INTERACTIVE= yes USE_OPENSSL= yes USE_REINPLACE= yes GNU_CONFIGURE= yes diff --git a/mail/tpop3d/files/patch-maildir.c b/mail/tpop3d/files/patch-maildir.c new file mode 100644 index 0000000..ef52a6d --- /dev/null +++ b/mail/tpop3d/files/patch-maildir.c @@ -0,0 +1,11 @@ +--- maildir.c.orig Tue Nov 25 01:23:20 2003 ++++ maildir.c Sun Apr 3 09:44:25 2005 +@@ -205,7 +205,7 @@ + mailbox M, failM = NULL; + struct timeval tv1, tv2; + float f; +- int locked; ++ int locked = 0; + + alloc_struct(_mailbox, M); + |