diff options
author | wiz <wiz@pkgsrc.org> | 2005-01-04 11:10:10 +0000 |
---|---|---|
committer | wiz <wiz@pkgsrc.org> | 2005-01-04 11:10:10 +0000 |
commit | a7b4f308352c3575e54a25660991d66aaf90d7a3 (patch) | |
tree | dcd51b9b5a63cf4e07366b7d4c8730d30c79d1f9 /net/ctorrent | |
parent | 145d039e80cb986327c8493c7c891603f85354c8 (diff) | |
download | pkgsrc-a7b4f308352c3575e54a25660991d66aaf90d7a3.tar.gz |
When linking against libssl, also link against libcrypto.
Diffstat (limited to 'net/ctorrent')
-rw-r--r-- | net/ctorrent/distinfo | 3 | ||||
-rw-r--r-- | net/ctorrent/patches/patch-aa | 22 |
2 files changed, 24 insertions, 1 deletions
diff --git a/net/ctorrent/distinfo b/net/ctorrent/distinfo index db89f663c3b..1c795b79e59 100644 --- a/net/ctorrent/distinfo +++ b/net/ctorrent/distinfo @@ -1,5 +1,6 @@ -$NetBSD: distinfo,v 1.4 2004/12/31 01:52:33 jlam Exp $ +$NetBSD: distinfo,v 1.5 2005/01/04 11:10:10 wiz Exp $ SHA1 (ctorrent-1.3.4.tar.bz2) = bf1ea430513dc6de48de5ac429cdac57ceab738d Size (ctorrent-1.3.4.tar.bz2) = 87333 bytes +SHA1 (patch-aa) = e20e81beba3a3a98ce27c36e4542edb0a9ea1d04 SHA1 (patch-ab) = cfa80ca0d3f030837334ac9cc27c437dfd9adbf6 diff --git a/net/ctorrent/patches/patch-aa b/net/ctorrent/patches/patch-aa new file mode 100644 index 00000000000..c7f50dc14ed --- /dev/null +++ b/net/ctorrent/patches/patch-aa @@ -0,0 +1,22 @@ +$NetBSD: patch-aa,v 1.4 2005/01/04 11:10:10 wiz Exp $ + +--- configure.orig 2004-09-09 01:10:51.000000000 +0200 ++++ configure +@@ -3159,7 +3159,7 @@ if test "${ac_cv_lib_ssl_SHA1_Init+set}" + echo $ECHO_N "(cached) $ECHO_C" >&6 + else + ac_check_lib_save_LIBS=$LIBS +-LIBS="-lssl $LIBS" ++LIBS="-lssl -lcrypto $LIBS" + cat >conftest.$ac_ext <<_ACEOF + #line $LINENO "configure" + /* confdefs.h. */ +@@ -3212,7 +3212,7 @@ if test $ac_cv_lib_ssl_SHA1_Init = yes; + #define HAVE_LIBSSL 1 + _ACEOF + +- LIBS="-lssl $LIBS" ++ LIBS="-lssl -lcrypto $LIBS" + + else + |