diff options
author | grant <grant@pkgsrc.org> | 2004-02-08 13:44:12 +0000 |
---|---|---|
committer | grant <grant@pkgsrc.org> | 2004-02-08 13:44:12 +0000 |
commit | 4b75fea360c51bfc1b089e7bb77a4b43351f27c1 (patch) | |
tree | d4606e2e650e046646fa5246aa96bbbeecde13e7 /security/sslwrap | |
parent | f61e02dc8b994f2e95787f87b7643d66d0bda890 (diff) | |
download | pkgsrc-4b75fea360c51bfc1b089e7bb77a4b43351f27c1.tar.gz |
link against socket libs on Solaris.
Diffstat (limited to 'security/sslwrap')
-rw-r--r-- | security/sslwrap/Makefile | 6 | ||||
-rw-r--r-- | security/sslwrap/distinfo | 4 | ||||
-rw-r--r-- | security/sslwrap/patches/patch-aa | 8 |
3 files changed, 11 insertions, 7 deletions
diff --git a/security/sslwrap/Makefile b/security/sslwrap/Makefile index bf70ed0caa9..a7d9f46ebc4 100644 --- a/security/sslwrap/Makefile +++ b/security/sslwrap/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.12 2003/11/14 00:42:18 jschauma Exp $ +# $NetBSD: Makefile,v 1.13 2004/02/08 13:44:12 grant Exp $ # DISTNAME= ${PKGNAME_NOREV:S/-//} @@ -13,6 +13,10 @@ COMMENT= Simple SSL wrapper USE_BUILDLINK2= YES +OPSYSVARS+= LDADD +LDADD.SunOS= -lnsl -lsocket +MAKE_ENV+= LDADD="${LDADD}" + .include "../../security/openssl/buildlink2.mk" .if !exists(${BUILDLINK_PREFIX.openssl}/include/openssl/e_os.h) diff --git a/security/sslwrap/distinfo b/security/sslwrap/distinfo index 819af8283a2..568b68a5bd1 100644 --- a/security/sslwrap/distinfo +++ b/security/sslwrap/distinfo @@ -1,7 +1,7 @@ -$NetBSD: distinfo,v 1.4 2003/11/14 00:42:18 jschauma Exp $ +$NetBSD: distinfo,v 1.5 2004/02/08 13:44:12 grant Exp $ SHA1 (sslwrap206.tar.gz) = fc8a4a4134d2668705f9fc4ac92a45a847c3edf9 Size (sslwrap206.tar.gz) = 21170 bytes -SHA1 (patch-aa) = d036726db779562eea96c4909c6f2c790610928a +SHA1 (patch-aa) = 1a90645c6a3a43829181d44205fd07e87f4b9f6a SHA1 (patch-ab) = 7f28cb5eca2a004408cb20aa365edad0d4f7d45a SHA1 (patch-ac) = 7ffb5a45843d8d4d99867967547663ef7656bd32 diff --git a/security/sslwrap/patches/patch-aa b/security/sslwrap/patches/patch-aa index 0c071877702..3099dd2eae2 100644 --- a/security/sslwrap/patches/patch-aa +++ b/security/sslwrap/patches/patch-aa @@ -1,11 +1,11 @@ -$NetBSD: patch-aa,v 1.4 2003/11/14 00:42:18 jschauma Exp $ +$NetBSD: patch-aa,v 1.5 2004/02/08 13:44:12 grant Exp $ ---- Makefile.orig 2000-11-11 22:01:25.000000000 +0000 -+++ Makefile 2003-09-17 23:03:22.000000000 +0000 +--- Makefile.orig 2000-11-12 09:01:25.000000000 +1100 ++++ Makefile @@ -1,28 +1,15 @@ +PROG= sslwrap +SRCS= s_server.c s_socket.c s_cb.c -+LDADD= -lssl -lcrypto ++LDADD+= -lssl -lcrypto +MAN= + +.if defined(PREFIX) |