diff options
author | miwi <miwi@FreeBSD.org> | 2007-04-25 06:12:25 +0800 |
---|---|---|
committer | miwi <miwi@FreeBSD.org> | 2007-04-25 06:12:25 +0800 |
commit | 1dcd9641ab2b3ba1a05822065811b93da525b395 (patch) | |
tree | c00400870c1d59eb16e77c22e6301e984f2d98ea /mail/tpop3d | |
parent | 36cec0c49156b013c52dac150cc11641eff22a6c (diff) | |
download | freebsd-ports-gnome-1dcd9641ab2b3ba1a05822065811b93da525b395.tar.gz freebsd-ports-gnome-1dcd9641ab2b3ba1a05822065811b93da525b395.tar.zst freebsd-ports-gnome-1dcd9641ab2b3ba1a05822065811b93da525b395.zip |
- Add "Save mbox indices" option
- Accomodate OPTIONS algorithm change
PR: 112070
Submitted by: Boris Kovalenko <boris@tagnet.ru> (maintainer)
Diffstat (limited to 'mail/tpop3d')
-rw-r--r-- | mail/tpop3d/Makefile | 9 |
1 files changed, 7 insertions, 2 deletions
diff --git a/mail/tpop3d/Makefile b/mail/tpop3d/Makefile index 1827fbe9c942..c5be070aa588 100644 --- a/mail/tpop3d/Makefile +++ b/mail/tpop3d/Makefile @@ -7,7 +7,7 @@ PORTNAME= tpop3d PORTVERSION= 1.5.3 -PORTREVISION= 5 +PORTREVISION= 6 CATEGORIES= mail MASTER_SITES= http://www.ex-parrot.com/~chris/tpop3d/ @@ -29,6 +29,7 @@ OPTIONS= MYSQL "Use MySQL authentication" off \ PASSWDAUTH "Use /etc/passwd authentication" off \ FLATAUTH "Use /etc/passwd-style flat file authentication" off \ MAILDIR "Compile Maildir support" on \ + MBOXINDICES "Save Mbox indices" off \ DRAC "Enable DRAC RFC for POP-before-SMTP relaying" off \ FIX_PERLAUTH "Only try it if perl-auth coredumps" off @@ -72,10 +73,14 @@ CONFIGURE_ARGS+= --enable-auth-flatfile CONFIGURE_ARGS+= --enable-auth-passwd .endif -.if !defined(WITHOUT_MAILDIR) +.if defined(WITH_MAILDIR) CONFIGURE_ARGS+= --enable-mbox-maildir .endif +.if defined(WITH_MBOXINDICES) +CONFIGURE_ARGS+= --enable-mbox-bsd-save-indices +.endif + .if defined(WITH_DRAC) CONFIGURE_ARGS+= --enable-drac BUILD_DEPENDS+= ${LOCALBASE}/lib/libdrac.a:${PORTSDIR}/mail/drac |