diff options
author | Joe Marcus Clarke <marcus@FreeBSD.org> | 2004-04-11 00:35:30 +0000 |
---|---|---|
committer | Joe Marcus Clarke <marcus@FreeBSD.org> | 2004-04-11 00:35:30 +0000 |
commit | c9eb52a1362c3e2ea991a36a1cf24649eda35377 (patch) | |
tree | aa611805edae2b3051e71dc78a3b8c7af6a36989 /net/libgnetwork | |
parent | 0c4a2322b1b15e58c64348f0ab4a7edf64c9f899 (diff) |
Disable GnuTLS support until support for newer versions of GnuTLS has been
added.
Reported by: bento
Notes
Notes:
svn path=/head/; revision=106704
Diffstat (limited to 'net/libgnetwork')
-rw-r--r-- | net/libgnetwork/Makefile | 18 |
1 files changed, 9 insertions, 9 deletions
diff --git a/net/libgnetwork/Makefile b/net/libgnetwork/Makefile index 0f93345cdea6..d30fb741369c 100644 --- a/net/libgnetwork/Makefile +++ b/net/libgnetwork/Makefile @@ -25,17 +25,17 @@ USE_GMAKE= yes CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" LDFLAGS+= -L${LOCALBASE}/lib -.if !defined(WITHOUT_SSL) -LIB_DEPENDS+= gnutls.13:${PORTSDIR}/security/gnutls -CONFIGURE_ARGS+=--enable-ssl=gnutls -.else +#.if !defined(WITHOUT_SSL) +#LIB_DEPENDS+= gnutls.13:${PORTSDIR}/security/gnutls +#CONFIGURE_ARGS+=--enable-ssl=gnutls +#.else CONFIGURE_ARGS+=--enable-ssl=no -.endif +#.endif pre-everything:: - @${ECHO_MSG} "" - @${ECHO_MSG} "libgnetwork has the following configurable option(s):" - @${ECHO_MSG} " WITHOUT_SSL Disable GnuTLS SSL support" - @${ECHO_MSG} "" +# @${ECHO_MSG} "" +# @${ECHO_MSG} "libgnetwork has the following configurable option(s):" +# @${ECHO_MSG} " WITHOUT_SSL Disable GnuTLS SSL support" +# @${ECHO_MSG} "" .include <bsd.port.mk> |