diff options
author | ache <ache@FreeBSD.org> | 1998-08-05 06:45:21 +0800 |
---|---|---|
committer | ache <ache@FreeBSD.org> | 1998-08-05 06:45:21 +0800 |
commit | 8a3d160a06196ffc3020009da38482d29dcdaace (patch) | |
tree | 6bbfbd825b16508ac57ea9554e6ee3ec7dbda1cb /mail/qpopper | |
parent | e4468c533407b54c4596d5dab44c17c0c6cf433e (diff) | |
download | freebsd-ports-gnome-8a3d160a06196ffc3020009da38482d29dcdaace.tar.gz freebsd-ports-gnome-8a3d160a06196ffc3020009da38482d29dcdaace.tar.zst freebsd-ports-gnome-8a3d160a06196ffc3020009da38482d29dcdaace.zip |
add optional youbin support
Diffstat (limited to 'mail/qpopper')
-rw-r--r-- | mail/qpopper/Makefile | 13 |
1 files changed, 11 insertions, 2 deletions
diff --git a/mail/qpopper/Makefile b/mail/qpopper/Makefile index 3c1d48fccac5..a7d2fa3ed5e5 100644 --- a/mail/qpopper/Makefile +++ b/mail/qpopper/Makefile @@ -14,10 +14,14 @@ EXTRACT_SUFX= .tar.Z MAINTAINER= ache@freebsd.org +# Set POPD_YOUBIN_SUPPORT variable in the environment to enable +# youbin support. # # If APOP_ONLY variable present in the environment, popper builds -# with APOP authentification only +# with APOP authentification only. # +# If FULL_POPD_DEBUG variable present in the environment, popper builds +# with more verbose debugging. O_DEFS= -DSETPROCTITLE -DKEEP_TEMP_DROP -DBSD44_DBM -DBIND43 \ -DBULLDB -DNONAUTHFILE='\"/etc/ftpusers\"' @@ -31,12 +35,16 @@ O_DEFS+= -DSKEY O_DEFS+= -DAPOP_ONLY .endif +.if defined(POPD_YOUBIN_SUPPORT) +O_DEFS+= -DYOUBIN -DCALLED_FROM_POPD +.endif + P_LIBS+= -lmd -lutil GNU_CONFIGURE= yes CONFIGURE_ARGS= --enable-apop=${PREFIX}/etc/popper/pop.auth \ --with-apopuid=pop -.if defined(FULL_POP_DEBUG) +.if defined(FULL_POPD_DEBUG) CONFIGURE_ARGS+= --enable-debugging .endif CONFIGURE_ENV= LIBS="${P_LIBS}" O_DEFS="${O_DEFS}" @@ -45,6 +53,7 @@ MAN8= popauth.8 popper.8 post-patch: $(RM) ${WRKSRC}/md5.h + $(CP) ${FILESDIR}/sendto.c ${WRKSRC} do-install: cd ${WRKSRC} && \ |