diff options
author | clement <clement@FreeBSD.org> | 2004-02-25 21:08:45 +0000 |
---|---|---|
committer | clement <clement@FreeBSD.org> | 2004-02-25 21:08:45 +0000 |
commit | 1f93dcc9cb00ccd6c952899dab2f354c6f5dd161 (patch) | |
tree | 45899d45761c5bca6007e1ffe654ef6c7edc138c /mail/ssmtp/Makefile | |
parent | e9266d68c7c4f2dc215278d99dfd7e07dacf5d90 (diff) | |
download | FreeBSD-ports-1f93dcc9cb00ccd6c952899dab2f354c6f5dd161.zip FreeBSD-ports-1f93dcc9cb00ccd6c952899dab2f354c6f5dd161.tar.gz |
WITH_USERPREFS is now the default.
Define WITHOUT_USERPREFS to disable user preferences.
Diffstat (limited to 'mail/ssmtp/Makefile')
-rw-r--r-- | mail/ssmtp/Makefile | 8 |
1 files changed, 3 insertions, 5 deletions
diff --git a/mail/ssmtp/Makefile b/mail/ssmtp/Makefile index 105b00c..a480d4f 100644 --- a/mail/ssmtp/Makefile +++ b/mail/ssmtp/Makefile @@ -31,13 +31,11 @@ TRUE= /usr/bin/true MAN8= ssmtp.8 -.if defined(WITH_USERPREFS) +.if !defined(WITHOUT_USERPREFS) CFLAGS+= -DUSERPREFS -.else pre-everything:: - @${ECHO_CMD} 'If you want to let your users set their own revalias address,' - @${ECHO_CMD} 'please define WITH_USERPREFS (they just have to put their mail' - @${ECHO_CMD} 'address in ~/.ssmtprc).' + @${ECHO_CMD} "If you don't want to let your users set their own revalias address" + @${ECHO_CMD} "(in ~/.ssmtprc), please define WITHOUT_USERPREFS." .endif post-configure: |