summaryrefslogtreecommitdiff
path: root/security/libgcrypt
diff options
context:
space:
mode:
authortnn <tnn>2008-03-11 22:19:54 +0000
committertnn <tnn>2008-03-11 22:19:54 +0000
commit19cf33c87bfe7e7491ae52f34b025a06bacb6124 (patch)
treec64c810252e196760c0157797ae10dbedd9a7589 /security/libgcrypt
parent92a54ec41f580e144f003c6ea6c663cc9c3dd6a6 (diff)
downloadpkgsrc-19cf33c87bfe7e7491ae52f34b025a06bacb6124.tar.gz
Fix build with MIPSPro. PR pkg/38210.
Diffstat (limited to 'security/libgcrypt')
-rw-r--r--security/libgcrypt/distinfo3
-rw-r--r--security/libgcrypt/patches/patch-ah22
2 files changed, 24 insertions, 1 deletions
diff --git a/security/libgcrypt/distinfo b/security/libgcrypt/distinfo
index 5c6e166e94d..ed4cf3a64a1 100644
--- a/security/libgcrypt/distinfo
+++ b/security/libgcrypt/distinfo
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.22 2008/03/07 16:16:22 wiz Exp $
+$NetBSD: distinfo,v 1.23 2008/03/11 22:19:54 tnn Exp $
SHA1 (libgcrypt-1.4.0.tar.gz) = 69183b7100b60da8eb1648f49836a611454541bb
RMD160 (libgcrypt-1.4.0.tar.gz) = e40d171e5dcc9344ae1a0a92fa0ea0013cc305cb
@@ -10,3 +10,4 @@ SHA1 (patch-ad) = f32281612b51c5bb3788cf03c6f5615bdfc0d3e8
SHA1 (patch-ae) = 4606cff84fe77c7799081883dd9b3f25d54a5868
SHA1 (patch-af) = f62f9f5b8ebc9e5f3a2570ec609de66e2d77e587
SHA1 (patch-ag) = 104bbbbb20317e9b12a7d2f645f31fa039294b41
+SHA1 (patch-ah) = 7b63edf43029986812004d716561228221eab187
diff --git a/security/libgcrypt/patches/patch-ah b/security/libgcrypt/patches/patch-ah
new file mode 100644
index 00000000000..ac07d38c50d
--- /dev/null
+++ b/security/libgcrypt/patches/patch-ah
@@ -0,0 +1,22 @@
+$NetBSD: patch-ah,v 1.3 2008/03/11 22:19:54 tnn Exp $
+
+--- src/visibility.c.orig 2007-10-31 10:39:53.000000000 +0100
++++ src/visibility.c
+@@ -699,7 +699,7 @@ void
+ gcry_md_hash_buffer (int algo, void *digest,
+ const void *buffer, size_t length)
+ {
+- return _gcry_md_hash_buffer (algo, digest, buffer, length);
++ _gcry_md_hash_buffer (algo, digest, buffer, length);
+ }
+
+ int
+@@ -848,7 +848,7 @@ void
+ gcry_ac_io_init_va (gcry_ac_io_t *ac_io, gcry_ac_io_mode_t mode,
+ gcry_ac_io_type_t type, va_list ap)
+ {
+- return _gcry_ac_io_init_va (ac_io, mode, type, ap);
++ _gcry_ac_io_init_va (ac_io, mode, type, ap);
+ }
+
+ gcry_error_t