diff options
author | wiedi <wiedi@pkgsrc.org> | 2015-01-19 16:10:23 +0000 |
---|---|---|
committer | wiedi <wiedi@pkgsrc.org> | 2015-01-19 16:10:23 +0000 |
commit | 1cf41bbacac569c87fe7415b6a2809b91a972a06 (patch) | |
tree | ed0407b5498e65e8f9d8d7b67060fbb63485b4f0 /net/vtun | |
parent | 136d09e5a7e315b6c9767b16f8598a318699798b (diff) | |
download | pkgsrc-1cf41bbacac569c87fe7415b6a2809b91a972a06.tar.gz |
add patch to help configure find blowfish headers from openssl
Diffstat (limited to 'net/vtun')
-rw-r--r-- | net/vtun/distinfo | 3 | ||||
-rw-r--r-- | net/vtun/patches/patch-configure | 14 |
2 files changed, 16 insertions, 1 deletions
diff --git a/net/vtun/distinfo b/net/vtun/distinfo index 69b4c10a22e..fabcaf30215 100644 --- a/net/vtun/distinfo +++ b/net/vtun/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.12 2014/04/20 21:03:24 adam Exp $ +$NetBSD: distinfo,v 1.13 2015/01/19 16:10:23 wiedi Exp $ SHA1 (vtun-3.0.3.tar.gz) = 7937e46420b5c2323f36774ab22e75e11c12da6c RMD160 (vtun-3.0.3.tar.gz) = 4df179b523798930927103a4d91b428f941e25ed @@ -6,4 +6,5 @@ Size (vtun-3.0.3.tar.gz) = 130051 bytes SHA1 (patch-aa) = 2f570c4599923edeef31c6a2e7153f1fe05887c9 SHA1 (patch-ab) = 0af65f6b6d061d8beb8b2ac6a676ca095c057ccf SHA1 (patch-ac) = 0f39700ab729d9481fe29e2d7e53566eff6add96 +SHA1 (patch-configure) = 591ecb4242b0d3bb2eb0087a37315a322222312d SHA1 (patch-vtun.h) = 832d3b97094885c8a10e752c7c8f5c86e08de967 diff --git a/net/vtun/patches/patch-configure b/net/vtun/patches/patch-configure new file mode 100644 index 00000000000..f42ff62499a --- /dev/null +++ b/net/vtun/patches/patch-configure @@ -0,0 +1,14 @@ +$NetBSD: patch-configure,v 1.1 2015/01/19 16:10:23 wiedi Exp $ + +help configure find blowfish headers from openssl +--- configure.orig 2009-03-29 10:08:48.000000000 +0000 ++++ configure +@@ -5680,7 +5680,7 @@ echo "$as_me: checking for blowfish Libr + echo "$as_me:$LINENO: checking \"for blowfish.h\"" >&5 + echo $ECHO_N "checking \"for blowfish.h\"... $ECHO_C" >&6 + ac_hdr_found=no +- for p in $BLOWFISH_HDR_DIR /usr/include/ssl /usr/include/openssl /usr/include /usr/local/include /usr/local/ssl/include /usr/include/crypto; do ++ for p in $BLOWFISH_HDR_DIR $SSL_HDR_DIR /usr/include/ssl /usr/include/openssl /usr/include /usr/local/include /usr/local/ssl/include /usr/include/crypto; do + if test -n "$p"; then + dir="$p" + else |