diff options
author | marcus <marcus@FreeBSD.org> | 2003-12-18 11:49:21 +0800 |
---|---|---|
committer | marcus <marcus@FreeBSD.org> | 2003-12-18 11:49:21 +0800 |
commit | 78657c8710f5a9f1c71efc022457277f944e0a6f (patch) | |
tree | f791268bf895175078473721796a8aabe9ede226 /net/gaim | |
parent | 315b344914d0a76b0a7a527ef25e1fb41037c69b (diff) | |
download | freebsd-ports-gnome-78657c8710f5a9f1c71efc022457277f944e0a6f.tar.gz freebsd-ports-gnome-78657c8710f5a9f1c71efc022457277f944e0a6f.tar.zst freebsd-ports-gnome-78657c8710f5a9f1c71efc022457277f944e0a6f.zip |
Re-enable NSS as the default SSL implementation.
Diffstat (limited to 'net/gaim')
-rw-r--r-- | net/gaim/Makefile | 11 |
1 files changed, 3 insertions, 8 deletions
diff --git a/net/gaim/Makefile b/net/gaim/Makefile index 3a9ac1a5a8e2..54fbab03bd53 100644 --- a/net/gaim/Makefile +++ b/net/gaim/Makefile @@ -6,7 +6,7 @@ PORTNAME= gaim PORTVERSION= 0.74 -PORTREVISION= 2 +PORTREVISION= 3 CATEGORIES?= net MASTER_SITES= ${MASTER_SITE_SOURCEFORGE} MASTER_SITE_SUBDIR= ${PORTNAME} @@ -39,17 +39,13 @@ MAN1= gaim.1 gaim-remote.1 WITH_GNUTLS= yes .endif -.if exists(${LOCALBASE}/lib/libssl3.so) && !defined(WITHOUT_NSS) -WITH_NSS= yes -.endif - .if defined(WITH_GNUTLS) LIB_DEPENDS+= gnutls:${PORTSDIR}/security/gnutls .else CONFIGURE_ARGS+= --disable-gnutls .endif -.if defined(WITH_NSS) +.if !defined(WITHOUT_NSS) LIB_DEPENDS+= nss3:${PORTSDIR}/security/nss CONFIGURE_ARGS+= --with-nspr-includes=${LOCALBASE}/include/nspr \ --with-nspr-libs=${LOCALBASE}/lib \ @@ -102,11 +98,10 @@ pre-everything:: @${ECHO_MSG} " WITHOUT_AUDIO Disable audio support" @${ECHO_MSG} " WITH_GNUTLS Enable GNUTLS encryption support" @${ECHO_MSG} " WITHOUT_GNUTLS Disable GNUTLS 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) +.if !defined(WITH_GNUTLS) && defined(WITHOUT_NSS) @${ECHO_MSG} "WARNING: In order to use MSN, you must define WITH_GNUTLS and/or WITH_NSS" @${ECHO_MSG} " if you disable OpenSSL support" @${ECHO_MSG} "" |