diff options
author | Volker Stolz <vs@FreeBSD.org> | 2005-05-18 15:16:58 +0000 |
---|---|---|
committer | Volker Stolz <vs@FreeBSD.org> | 2005-05-18 15:16:58 +0000 |
commit | 564c8517fd22fd3918c9e8b320adb41914a3ef7e (patch) | |
tree | 9a7a04fba56e2680fa20de7b2735aea1a6836dfe /mail/mutt | |
parent | MUTT_LITE shouldn't override WITHOUT_NLS (diff) |
Do not disable NLS by default with MUTT_LITE
PR: ports/81205
Submitted by: maintainer
Notes
Notes:
svn path=/head/; revision=135551
Diffstat (limited to 'mail/mutt')
-rw-r--r-- | mail/mutt/Makefile | 4 |
1 files changed, 1 insertions, 3 deletions
diff --git a/mail/mutt/Makefile b/mail/mutt/Makefile index 790e58dfd42f..00045aa5427a 100644 --- a/mail/mutt/Makefile +++ b/mail/mutt/Makefile @@ -44,7 +44,6 @@ WITH_SGML_DOCS:=no WITH_SGML_DOCS?=yes .endif -.if !defined (MUTT_LITE) .if !defined(WITHOUT_NLS) USE_GETTEXT= yes USE_ICONV= yes @@ -52,10 +51,9 @@ USE_ICONV= yes .error the WITHOUT_MUTT_ICONV knob of the mutt port only works if \ WITHOUT_NLS is also given .endif -.elif !defined(WITHOUT_MUTT_ICONV) && !defined (MUTT_LITE) +.elif !defined(WITHOUT_MUTT_ICONV) USE_ICONV= yes .endif -.endif .if defined(WITH_SLANG) LIB_DEPENDS+= slang.1:${PORTSDIR}/devel/libslang |