diff options
author | marcus <marcus@FreeBSD.org> | 2003-10-11 23:03:16 +0000 |
---|---|---|
committer | marcus <marcus@FreeBSD.org> | 2003-10-11 23:03:16 +0000 |
commit | bded88890c555f223d45f6c4f47515cb8be91f69 (patch) | |
tree | a50943c5df50ae8c2b9be103bf41aa0cf8b3f992 /net-im/gaim | |
parent | 96bc64de5c5c25c590deed2157a05c4575f4fb6e (diff) | |
download | FreeBSD-ports-bded88890c555f223d45f6c4f47515cb8be91f69.zip FreeBSD-ports-bded88890c555f223d45f6c4f47515cb8be91f69.tar.gz |
Enable NSS encryption support by default so that packages can be built with
MSN enabled. NSS can still be disabled if so desired.
Suggested by: Pav Lucistnik <pav@oook.cz>
Diffstat (limited to 'net-im/gaim')
-rw-r--r-- | net-im/gaim/Makefile | 8 |
1 files changed, 4 insertions, 4 deletions
diff --git a/net-im/gaim/Makefile b/net-im/gaim/Makefile index 640f279..44e1092 100644 --- a/net-im/gaim/Makefile +++ b/net-im/gaim/Makefile @@ -6,7 +6,7 @@ PORTNAME= gaim PORTVERSION= 0.71 -PORTREVISION= 1 +PORTREVISION= 2 CATEGORIES?= net MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= ${PORTNAME} @@ -32,11 +32,11 @@ MAN1= gaim.1 gaim-remote.1 .include <bsd.port.pre.mk> -.if exists(${LOCALBASE}/lib/libnss3.so) +.if !defined(WITHOUT_NSS) WITH_NSS= yes .endif -.if exists(${LOCALBASE}/lib/libgnutls.so) +.if exists(${LOCALBASE}/lib/libgnutls.so) && !defined(WITHOUT_GNUTLS) WITH_GNUTLS= yes .endif @@ -97,7 +97,7 @@ pre-everything:: @${ECHO_MSG} " WITHOUT_GTKSPELL Turns off spell checking" @${ECHO_MSG} " WITHOUT_AUDIO Disable audio support" @${ECHO_MSG} " WITH_GNUTLS Enable TLS encryption support" - @${ECHO_MSG} " WITH_NSS Enable Mozilla NSS encryption support" + @${ECHO_MSG} " WITHOUT_NSS Disable Mozilla NSS encryption support" @${ECHO_MSG} " TCL_VER Use Tcl/Tk (version)" @${ECHO_MSG} "" .if !defined(WITH_GNUTLS) && !defined(WITH_NSS) |