summaryrefslogtreecommitdiff
path: root/security/libgcrypt
diff options
context:
space:
mode:
authorcheusov <cheusov@pkgsrc.org>2011-11-29 01:33:37 +0000
committercheusov <cheusov@pkgsrc.org>2011-11-29 01:33:37 +0000
commit3112a288b497232297e9c9816ff70a8cd6ea0f74 (patch)
tree69219848c6a100e6fe8b6a4c97f0677ad193081b /security/libgcrypt
parent955f5967eaf0883d5383693911df2cb1a143390b (diff)
downloadpkgsrc-3112a288b497232297e9c9816ff70a8cd6ea0f74.tar.gz
Fix compilation failure:
./src/.libs/libgcrypt.so: undefined reference to `assert'
Diffstat (limited to 'security/libgcrypt')
-rw-r--r--security/libgcrypt/distinfo4
-rw-r--r--security/libgcrypt/patches/patch-ab14
2 files changed, 13 insertions, 5 deletions
diff --git a/security/libgcrypt/distinfo b/security/libgcrypt/distinfo
index 03b0aacd329..4662e5b36db 100644
--- a/security/libgcrypt/distinfo
+++ b/security/libgcrypt/distinfo
@@ -1,4 +1,4 @@
-$NetBSD: distinfo,v 1.34 2011/07/14 01:03:35 taca Exp $
+$NetBSD: distinfo,v 1.35 2011/11/29 01:33:37 cheusov Exp $
SHA1 (libgcrypt-1.5.0/gcrypt.tar.bz2) = 5d402e4e4e6831f74b738f1a022cf024bcb24ecd
RMD160 (libgcrypt-1.5.0/gcrypt.tar.bz2) = d1032e66bd4b6f51e437993a7178d14b09a2955a
@@ -7,7 +7,7 @@ SHA1 (libgcrypt-1.5.0/libgcrypt-1.5.0.tar.bz2) = 3e776d44375dc1a710560b98ae8437d
RMD160 (libgcrypt-1.5.0/libgcrypt-1.5.0.tar.bz2) = f01e8198dcc379ff2fa5e8d3ac39e7b32fc41dad
Size (libgcrypt-1.5.0/libgcrypt-1.5.0.tar.bz2) = 1433506 bytes
SHA1 (patch-aa) = 7c46612f912d45dfd4ce4f4b510e72c00bd38585
-SHA1 (patch-ab) = 18fa39f87103959955ab1c0a36e3063e085403bc
+SHA1 (patch-ab) = 6fac21daa26b7de3b13839d076f78a74400efce7
SHA1 (patch-ac) = c59d7bb73fa0e79522b287054633e276ffbb069d
SHA1 (patch-ad) = 19345b7d164521d526a44eb3f1a465ff09d8266c
SHA1 (patch-ae) = 50eeea5a193e14012e0d127a0618dfc03727d96c
diff --git a/security/libgcrypt/patches/patch-ab b/security/libgcrypt/patches/patch-ab
index 4d7d4e3a653..aa8042d4679 100644
--- a/security/libgcrypt/patches/patch-ab
+++ b/security/libgcrypt/patches/patch-ab
@@ -1,8 +1,16 @@
-$NetBSD: patch-ab,v 1.3 2011/07/13 21:21:52 adam Exp $
+$NetBSD: patch-ab,v 1.4 2011/11/29 01:33:37 cheusov Exp $
--- random/rndunix.c.orig 2011-02-04 19:16:03.000000000 +0000
+++ random/rndunix.c
-@@ -737,6 +737,15 @@ start_gatherer( int pipefd )
+@@ -87,6 +87,7 @@
+ #include <stdlib.h>
+ #include <stdio.h>
+ #include <string.h>
++#include <assert.h>
+
+ /* OS-specific includes */
+
+@@ -737,6 +738,15 @@ start_gatherer( int pipefd )
if( i != n1 && i != n2 && i != pipefd )
close(i);
}
@@ -18,7 +26,7 @@ $NetBSD: patch-ab,v 1.3 2011/07/13 21:21:52 adam Exp $
errno = 0;
}
-@@ -764,6 +773,10 @@ start_gatherer( int pipefd )
+@@ -764,6 +774,10 @@ start_gatherer( int pipefd )
#endif
fclose(stderr); /* Arrghh!! It's Stuart code!! */