1
0
mirror of https://git.FreeBSD.org/ports.git synced 2025-01-26 09:46:09 +00:00

Fix the build in the case that SSL is not enabled (the default until this

port adds support for GnuTLS 1.0).

Reported by:	bento
This commit is contained in:
Joe Marcus Clarke 2004-05-03 05:35:11 +00:00
parent fdc8eabdc2
commit 690839683e
Notes: svn2git 2021-03-31 03:12:20 +00:00
svn path=/head/; revision=108246
2 changed files with 22 additions and 2 deletions

View File

@ -22,8 +22,8 @@ USE_GNOME= gnomeprefix gnomehack intlhack gconf2
INSTALLS_SHLIB= yes
USE_LIBTOOL_VER=13
USE_GMAKE= yes
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include"
LDFLAGS+= -L${LOCALBASE}/lib
CONFIGURE_ENV= CPPFLAGS="-I${LOCALBASE}/include" \
LDFLAGS="-L${LOCALBASE}/lib"
#.if !defined(WITHOUT_SSL)
#LIB_DEPENDS+= gnutls.13:${PORTSDIR}/security/gnutls

View File

@ -0,0 +1,20 @@
--- libgnetwork/gnetwork-tcp-connection.c.orig Mon May 3 01:29:58 2004
+++ libgnetwork/gnetwork-tcp-connection.c Mon May 3 01:32:55 2004
@@ -450,6 +450,7 @@
static void
open_ssl_connection (GNetworkTcpConnection * connection)
{
+#ifdef _USE_SSL
GIOChannel *channel;
GNetworkSslAuth *auth;
GError *error;
@@ -517,6 +518,9 @@
g_object_notify (G_OBJECT (connection), "tcp-status");
g_object_notify (G_OBJECT (connection), "status");
g_object_thaw_notify (G_OBJECT (connection));
+#else
+ g_warning ("SSL support not enabled.");
+#endif
}