summaryrefslogtreecommitdiff
path: root/security
diff options
context:
space:
mode:
authorshannonjr <shannonjr>2008-04-30 11:39:24 +0000
committershannonjr <shannonjr>2008-04-30 11:39:24 +0000
commit803ea3b95e5c49e3cf13260dbc782051f8f3a0e6 (patch)
tree57ed1db5e2303623e2364fc93927de22482593fa /security
parent3d6a7b07d0886550e89c6f2ea9f629f8fa3fb23d (diff)
downloadpkgsrc-803ea3b95e5c49e3cf13260dbc782051f8f3a0e6.tar.gz
Add patch to conditionally include <stdint.h> based on the symbol
HAVE_STDINT_H generated by configure. This is required for compilation on Solaris 9.
Diffstat (limited to 'security')
-rw-r--r--security/libtasn1/distinfo3
-rw-r--r--security/libtasn1/patches/patch-aa15
2 files changed, 17 insertions, 1 deletions
diff --git a/security/libtasn1/distinfo b/security/libtasn1/distinfo
index 22394ab6738..7cf429a8a60 100644
--- a/security/libtasn1/distinfo
+++ b/security/libtasn1/distinfo
@@ -1,5 +1,6 @@
-$NetBSD: distinfo,v 1.19 2008/04/29 11:45:55 wiz Exp $
+$NetBSD: distinfo,v 1.20 2008/04/30 11:39:24 shannonjr Exp $
SHA1 (libtasn1-1.4.tar.gz) = 684c9dc343b0155a074c2127ac8050f983528bc8
RMD160 (libtasn1-1.4.tar.gz) = 8553984f8992151b1086f6b3d7196a3916e61edd
Size (libtasn1-1.4.tar.gz) = 1552101 bytes
+SHA1 (patch-aa) = 64d8599d79c4f9975b0a1ccae79d91865c9afa33
diff --git a/security/libtasn1/patches/patch-aa b/security/libtasn1/patches/patch-aa
new file mode 100644
index 00000000000..9967738ce05
--- /dev/null
+++ b/security/libtasn1/patches/patch-aa
@@ -0,0 +1,15 @@
+$NetBSD: patch-aa,v 1.1 2008/04/30 11:39:24 shannonjr Exp $
+
+--- ./lib/int.h.orig 2008-04-30 05:06:07.085583902 -0600
++++ ./lib/int.h
+@@ -31,7 +31,10 @@
+ #include <stdlib.h>
+ #include <stdio.h>
+ #include <ctype.h>
++
++#ifdef HAVE_STDINT_H
+ #include <stdint.h>
++#endif
+
+ #ifdef HAVE_SYS_TYPES_H
+ # include <sys/types.h>