summaryrefslogtreecommitdiff
path: root/mail/popper
diff options
context:
space:
mode:
authorAndrey A. Chernov <ache@FreeBSD.org>2001-08-12 20:11:38 +0000
committerAndrey A. Chernov <ache@FreeBSD.org>2001-08-12 20:11:38 +0000
commit58bf95c7e4f198b9c2399f8118f0ee8f647260c8 (patch)
treea49cd0da86e53febc0a6c8f403fc7628e53260f1 /mail/popper
parentUpgrade to version 1.2 . (diff)
Rename variables using WITH_POPPER_ prefix
Notes
Notes: svn path=/head/; revision=46155
Diffstat (limited to 'mail/popper')
-rw-r--r--mail/popper/Makefile12
1 files changed, 6 insertions, 6 deletions
diff --git a/mail/popper/Makefile b/mail/popper/Makefile
index 7e1f37e64bcf..64371c069fc2 100644
--- a/mail/popper/Makefile
+++ b/mail/popper/Makefile
@@ -15,26 +15,26 @@ EXTRACT_SUFX= .tar.Z
MAINTAINER= ache@freebsd.org
-# Set POPD_YOUBIN_SUPPORT variable in the environment to enable
+# Set WITH_POPPER_YOUBIN_SUPPORT variable in the environment to enable
# youbin support.
#
-# If APOP_ONLY variable present in the environment, popper builds
+# If WITH_POPPER_APOP_ONLY variable present in the environment, popper builds
# with APOP authentification only.
#
-# If FULL_POPD_DEBUG variable present in the environment, popper builds
+# If WITH_POPPER_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\"'
-.if !defined(APOP_ONLY)
+.if !defined(WITH_POPPER_APOP_ONLY)
P_LIBS= -lopie
O_DEFS+= -DOPIE
.else
O_DEFS+= -DAPOP_ONLY
.endif
-.if defined(POPD_YOUBIN_SUPPORT)
+.if defined(WITH_POPPER_YOUBIN_SUPPORT)
O_DEFS+= -DYOUBIN -DCALLED_FROM_POPD
.endif
@@ -43,7 +43,7 @@ P_LIBS+= -lmd -lutil
GNU_CONFIGURE= yes
CONFIGURE_ARGS= --enable-apop=${PREFIX}/etc/popper/pop.auth \
--with-apopuid=pop
-.if defined(FULL_POPD_DEBUG)
+.if defined(WITH_POPPER_DEBUG)
CONFIGURE_ARGS+= --enable-debugging
.endif
CONFIGURE_ENV= LIBS="${P_LIBS}" O_DEFS="${O_DEFS}"