diff options
author | marcus <marcus@FreeBSD.org> | 2003-10-11 05:27:52 +0800 |
---|---|---|
committer | marcus <marcus@FreeBSD.org> | 2003-10-11 05:27:52 +0800 |
commit | 344dcb8979c951b0324cfd30eb2f2352c7fec759 (patch) | |
tree | 7faed0055b4f5e5fc5ed28a4b24feca076f0ed29 /net-im/gaim | |
parent | 617ad70082c77ae7b297133a9bd2a4e718bc83af (diff) | |
download | freebsd-ports-gnome-344dcb8979c951b0324cfd30eb2f2352c7fec759.tar.gz freebsd-ports-gnome-344dcb8979c951b0324cfd30eb2f2352c7fec759.tar.zst freebsd-ports-gnome-344dcb8979c951b0324cfd30eb2f2352c7fec759.zip |
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>
Diffstat (limited to 'net-im/gaim')
-rw-r--r-- | net-im/gaim/Makefile | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/net-im/gaim/Makefile b/net-im/gaim/Makefile index 1bdab97643d6..640f27928459 100644 --- a/net-im/gaim/Makefile +++ b/net-im/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' \ |