diff options
author | pst <pst@FreeBSD.org> | 1996-07-22 23:06:08 +0000 |
---|---|---|
committer | pst <pst@FreeBSD.org> | 1996-07-22 23:06:08 +0000 |
commit | 650a6eafa7b8823256274aa26027a686c5f0f821 (patch) | |
tree | 740c319f8d6974c3c7eee07c2e9400bc9f528759 /security | |
parent | 41efa72559322b15c3badf3b3a819669f030d71a (diff) | |
download | FreeBSD-ports-650a6eafa7b8823256274aa26027a686c5f0f821.zip FreeBSD-ports-650a6eafa7b8823256274aa26027a686c5f0f821.tar.gz |
If using socks, make sure you find socks library
Diffstat (limited to 'security')
-rw-r--r-- | security/ssh/Makefile | 12 | ||||
-rw-r--r-- | security/ssh2/Makefile | 12 |
2 files changed, 10 insertions, 14 deletions
diff --git a/security/ssh/Makefile b/security/ssh/Makefile index 18eca9e..d808f39 100644 --- a/security/ssh/Makefile +++ b/security/ssh/Makefile @@ -3,7 +3,7 @@ # Date created: 30 Jul 1995 # Whom: torstenb@FreeBSD.ORG # -# $Id: Makefile,v 1.27 1996/06/20 14:11:17 ache Exp $ +# $Id: Makefile,v 1.30 1996/07/18 11:33:37 torstenb Exp $ # # Maximal ssh package requires YES values for # USE_PERL, USE_TCPWRAP @@ -39,12 +39,6 @@ CONFIGURE_ARGS= --prefix=${PREFIX} --with-etcdir=${PREFIX}/etc CONFIGURE_ARGS+= --with-rsaref .endif -# Include SOCKS firewall support -# Warning: untested ! -.if defined(USE_SOCKS) && ${USE_SOCKS} == YES -CONFIGURE_ARGS+= --with-socks -.endif - # Include support for the SecureID card # Warning: untested ! .if defined(USE_SECUREID) && ${USE_SECUREID} == YES @@ -114,3 +108,7 @@ CONFIGURE_ARGS+= --with-libwrap LIB_DEPENDS+= wrap\\.7\\.:${PORTSDIR}/security/tcp_wrapper .endif +# Include SOCKS firewall support +.if defined(USE_SOCKS) && ${USE_SOCKS} == YES +CONFIGURE_ARGS+= --with-socks="-L${PREFIX}/lib -lsocks5" +.endif diff --git a/security/ssh2/Makefile b/security/ssh2/Makefile index 18eca9e..d808f39 100644 --- a/security/ssh2/Makefile +++ b/security/ssh2/Makefile @@ -3,7 +3,7 @@ # Date created: 30 Jul 1995 # Whom: torstenb@FreeBSD.ORG # -# $Id: Makefile,v 1.27 1996/06/20 14:11:17 ache Exp $ +# $Id: Makefile,v 1.30 1996/07/18 11:33:37 torstenb Exp $ # # Maximal ssh package requires YES values for # USE_PERL, USE_TCPWRAP @@ -39,12 +39,6 @@ CONFIGURE_ARGS= --prefix=${PREFIX} --with-etcdir=${PREFIX}/etc CONFIGURE_ARGS+= --with-rsaref .endif -# Include SOCKS firewall support -# Warning: untested ! -.if defined(USE_SOCKS) && ${USE_SOCKS} == YES -CONFIGURE_ARGS+= --with-socks -.endif - # Include support for the SecureID card # Warning: untested ! .if defined(USE_SECUREID) && ${USE_SECUREID} == YES @@ -114,3 +108,7 @@ CONFIGURE_ARGS+= --with-libwrap LIB_DEPENDS+= wrap\\.7\\.:${PORTSDIR}/security/tcp_wrapper .endif +# Include SOCKS firewall support +.if defined(USE_SOCKS) && ${USE_SOCKS} == YES +CONFIGURE_ARGS+= --with-socks="-L${PREFIX}/lib -lsocks5" +.endif |