diff options
author | Joe Marcus Clarke <marcus@FreeBSD.org> | 2003-10-10 21:27:52 +0000 |
---|---|---|
committer | Joe Marcus Clarke <marcus@FreeBSD.org> | 2003-10-10 21:27:52 +0000 |
commit | 63b5d4e7cea376c291cebb7e6d4fa56635771ba5 (patch) | |
tree | 544980741b8d98b758c7d2ef9c440a14dec14894 /net/gaim | |
parent | Upgrade to 3.0.0. (diff) |
Warn the user that MSN will not work unless they specify either WITH_GNUTLS
or WITH_NSS (or both).
Suggested by: Tuc <tuc@ttsg.com>
Notes
Notes:
svn path=/head/; revision=90820
Diffstat (limited to 'net/gaim')
-rw-r--r-- | net/gaim/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/net/gaim/Makefile b/net/gaim/Makefile index 1bdab97643d6..640f27928459 100644 --- a/net/gaim/Makefile +++ b/net/gaim/Makefile @@ -100,6 +100,10 @@ pre-everything:: @${ECHO_MSG} " WITH_NSS Enable Mozilla NSS encryption support" @${ECHO_MSG} " TCL_VER Use Tcl/Tk (version)" @${ECHO_MSG} "" +.if !defined(WITH_GNUTLS) && !defined(WITH_NSS) + @${ECHO_MSG} "WARNING: In order to use MSN, you must define WITH_GNUTLS and/or WITH_NSS" + @${ECHO_MSG} "" +.endif post-patch: @${REINPLACE_CMD} -e 's|-lpthreads|${PTHREAD_LIBS:S/"//g}|g' \ |