diff options
author | Clement Laforet <clement@FreeBSD.org> | 2004-02-25 21:08:45 +0000 |
---|---|---|
committer | Clement Laforet <clement@FreeBSD.org> | 2004-02-25 21:08:45 +0000 |
commit | 0c761c377389bbce68789b2d6015d979faf5fd53 (patch) | |
tree | 61534caeccf87ed6fb6ba82ed6312124fa832109 /mail/ssmtp | |
parent | f7ceb3eacf6cc0d6c37d634ce92bfd292880df72 (diff) |
WITH_USERPREFS is now the default.
Define WITHOUT_USERPREFS to disable user preferences.
Notes
Notes:
svn path=/head/; revision=102131
Diffstat (limited to 'mail/ssmtp')
-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 105b00c20e31..a480d4f62558 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: |