diff options
author | Li-Wen Hsu <lwhsu@FreeBSD.org> | 2007-04-18 06:08:10 +0000 |
---|---|---|
committer | Li-Wen Hsu <lwhsu@FreeBSD.org> | 2007-04-18 06:08:10 +0000 |
commit | 0cd3bdb74afc1bc5be44e8d12f19370c3c1a7652 (patch) | |
tree | 5ba6d1c516f44fd571b354d07da4334ddc521c91 /mail | |
parent | 19f6aeb87e6339b094d402716f44975f443f85ad (diff) | |
download | ports-0cd3bdb74afc1bc5be44e8d12f19370c3c1a7652.tar.gz ports-0cd3bdb74afc1bc5be44e8d12f19370c3c1a7652.zip |
Notes
Diffstat (limited to 'mail')
-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 79f2ae344cbb..1104a65c68f1 100644 --- a/mail/tpop3d/Makefile +++ b/mail/tpop3d/Makefile @@ -7,7 +7,7 @@ PORTNAME= tpop3d PORTVERSION= 1.5.3 -PORTREVISION= 3 +PORTREVISION= 4 CATEGORIES= mail MASTER_SITES= http://www.ex-parrot.com/~chris/tpop3d/ @@ -26,7 +26,8 @@ OPTIONS= MYSQL "Use MySQL authentication" off \ PGSQL "Use PgSQL authentication" off \ LDAP "Use LDAP authentication" off \ PERLAUTH "Use Perl authentication" off \ - FLATAUTH "Enable /etc/passwd-style authentication" off \ + PASSWDAUTH "Use /etc/passwd authentication" off \ + FLATAUTH "Use /etc/passwd-style flat file authentication" off \ MAILDIR "Compile Maildir support" on \ DRAC "Enable DRAC RFC for POP-before-SMTP relaying" off \ FIX_PERLAUTH "Only try it if perl-auth coredumps" off @@ -67,6 +68,10 @@ CONFIGURE_ARGS+= --enable-auth-perl CONFIGURE_ARGS+= --enable-auth-flatfile .endif +.if defined(WITH_PASSWDAUTH) +CONFIGURE_ARGS+= --enable-auth-passwd +.endif + .if !defined(WITHOUT_MAILDIR) CONFIGURE_ARGS+= --enable-mbox-maildir .endif |