diff options
author | Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org> | 2003-10-01 13:04:59 +0000 |
---|---|---|
committer | Mario Sergio Fujikawa Ferreira <lioux@FreeBSD.org> | 2003-10-01 13:04:59 +0000 |
commit | 8bfdbce8920e0a485b94826ed554655f46c12f80 (patch) | |
tree | c8bbb0aca0979b447a4d5b4ed09e98d15f9b4c7b | |
parent | 47034bd47fffaa2def908cb72a04be7f34706473 (diff) | |
download | ports-8bfdbce8920e0a485b94826ed554655f46c12f80.tar.gz ports-8bfdbce8920e0a485b94826ed554655f46c12f80.zip |
Notes
-rw-r--r-- | mail/qpopper/Makefile | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/mail/qpopper/Makefile b/mail/qpopper/Makefile index 35b43b14f715..339a26c2c74e 100644 --- a/mail/qpopper/Makefile +++ b/mail/qpopper/Makefile @@ -79,6 +79,8 @@ pre-everything:: @${ECHO_MSG} "WITHOUT_QPOPAUTH_SETUID=yes does not install qpopauth setuid to pop user" @${ECHO_MSG} "WITH_SAMPLE_POPUSERS_FILE=yes builds a default (otherwise," @${ECHO_MSG} " use an empty file) reject file" + @${ECHO_MSG} "WITH_SHY_ENABLED=yes enables shy mode, don't present" + @${ECHO_MSG} " qpopper version number in POP3 session" @${ECHO_MSG} "WITH_STANDALONE_MODE=yes builds qpopper to be run without inetd" @${ECHO_MSG} "WITHOUT_U_OPTION=yes forbids daemon command line option" @${ECHO_MSG} " -u which allows, after a user authenticates," @@ -132,6 +134,12 @@ EPOPPASSD= "" EPOPPASSD= "@comment " .endif +# If WITH_SHY_ENABLED variable present, qpopper does not present +# its version number within the POP3 session +.if defined(WITH_SHY_ENABLED) +CONFIGURE_ARGS+= --enable-shy +.endif + # If WITH STANDALONE_MODE variable present qpopper is built so it runs # without inetd .if defined(WITH_STANDALONE_MODE) |