diff options
author | jlam <jlam@pkgsrc.org> | 2004-12-03 23:13:10 +0000 |
---|---|---|
committer | jlam <jlam@pkgsrc.org> | 2004-12-03 23:13:10 +0000 |
commit | be2366d098e3340a477c88305cefbfbc1a67749a (patch) | |
tree | d67ed18bbd453d32e2e0a0d41827d69360d110be /net/openvpn-current | |
parent | 48e1426f6711d0f3fb1298b19e0d92827b766191 (diff) | |
download | pkgsrc-be2366d098e3340a477c88305cefbfbc1a67749a.tar.gz |
Make it explicit that we're using the old DES API, and include
<openssl/des_old.h> instead of <des.h> so that this will work on older
NetBSD releases.
Diffstat (limited to 'net/openvpn-current')
-rw-r--r-- | net/openvpn-current/Makefile | 11 | ||||
-rw-r--r-- | net/openvpn-current/distinfo | 4 | ||||
-rw-r--r-- | net/openvpn-current/patches/patch-aa | 8 |
3 files changed, 11 insertions, 12 deletions
diff --git a/net/openvpn-current/Makefile b/net/openvpn-current/Makefile index 12556ba8825..27c3147b956 100644 --- a/net/openvpn-current/Makefile +++ b/net/openvpn-current/Makefile @@ -1,4 +1,4 @@ -# $NetBSD: Makefile,v 1.5 2004/12/03 19:51:39 jlam Exp $ +# $NetBSD: Makefile,v 1.6 2004/12/03 23:13:10 jlam Exp $ # DISTNAME= openvpn-2.0_beta15 @@ -10,9 +10,10 @@ MAINTAINER= ianzag@mail.ru HOMEPAGE= http://openvpn.sourceforge.net/ COMMENT= Easy-to-use SSL VPN daemon -USE_BUILDLINK3= yes -GNU_CONFIGURE= yes -USE_LIBTOOL= yes +USE_BUILDLINK3= yes +GNU_CONFIGURE= yes +USE_LIBTOOL= yes +USE_OLD_DES_API= yes PKG_SYSCONFSUBDIR= openvpn EGDIR= ${PREFIX}/share/examples/${PKGBASE} @@ -24,8 +25,6 @@ CONFIGURE_ARGS+= --enable-ssl CONFIGURE_ARGS+= --enable-multi CONFIGURE_ARGS+= --sysconfdir=${PKG_SYSCONFDIR} -LIBS+= -ldes - .include "../../archivers/liblzo/buildlink3.mk" .include "../../security/openssl/buildlink3.mk" .include "../../mk/pthread.buildlink3.mk" diff --git a/net/openvpn-current/distinfo b/net/openvpn-current/distinfo index 96fd1f272ff..32ec72cb7a4 100644 --- a/net/openvpn-current/distinfo +++ b/net/openvpn-current/distinfo @@ -1,5 +1,5 @@ -$NetBSD: distinfo,v 1.1.1.1 2004/11/17 18:04:04 xtraeme Exp $ +$NetBSD: distinfo,v 1.2 2004/12/03 23:13:10 jlam Exp $ SHA1 (openvpn-2.0_beta15.tar.gz) = f1b210df6c8b6ea45737f97e3a184e6dac7b2ec1 Size (openvpn-2.0_beta15.tar.gz) = 585952 bytes -SHA1 (patch-aa) = 8a8019a20af0f7b8e2a162b555ac4ad04e025470 +SHA1 (patch-aa) = 06898cead40974b91d5fa4f2d5a4a9e3ae9d3ffe diff --git a/net/openvpn-current/patches/patch-aa b/net/openvpn-current/patches/patch-aa index a2a904f978b..7b8dc87c98b 100644 --- a/net/openvpn-current/patches/patch-aa +++ b/net/openvpn-current/patches/patch-aa @@ -1,13 +1,13 @@ -$NetBSD: patch-aa,v 1.1.1.1 2004/11/17 18:04:04 xtraeme Exp $ +$NetBSD: patch-aa,v 1.2 2004/12/03 23:13:10 jlam Exp $ ---- ntlm.c.orig 2004-11-17 18:47:38.000000000 +0100 -+++ ntlm.c 2004-11-17 18:47:49.000000000 +0100 +--- ntlm.c.orig 2004-10-02 06:22:38.000000000 -0400 ++++ ntlm.c @@ -29,7 +29,7 @@ #if NTLM -#include <openssl/des.h> -+#include <des.h> ++#include <openssl/des_old.h> #include <openssl/md4.h> #include "common.h" #include "buffer.h" |