Wed Apr 30 11:39:24 2008 UTC ()
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.


(shannonjr)
diff -r1.19 -r1.20 pkgsrc/security/libtasn1/distinfo
diff -r0 -r1.1 pkgsrc/security/libtasn1/patches/patch-aa

cvs diff -r1.19 -r1.20 pkgsrc/security/libtasn1/distinfo (expand / switch to unified diff)

--- pkgsrc/security/libtasn1/distinfo 2008/04/29 11:45:55 1.19
+++ pkgsrc/security/libtasn1/distinfo 2008/04/30 11:39:24 1.20
@@ -1,5 +1,6 @@ @@ -1,5 +1,6 @@
1$NetBSD: distinfo,v 1.19 2008/04/29 11:45:55 wiz Exp $ 1$NetBSD: distinfo,v 1.20 2008/04/30 11:39:24 shannonjr Exp $
2 2
3SHA1 (libtasn1-1.4.tar.gz) = 684c9dc343b0155a074c2127ac8050f983528bc8 3SHA1 (libtasn1-1.4.tar.gz) = 684c9dc343b0155a074c2127ac8050f983528bc8
4RMD160 (libtasn1-1.4.tar.gz) = 8553984f8992151b1086f6b3d7196a3916e61edd 4RMD160 (libtasn1-1.4.tar.gz) = 8553984f8992151b1086f6b3d7196a3916e61edd
5Size (libtasn1-1.4.tar.gz) = 1552101 bytes 5Size (libtasn1-1.4.tar.gz) = 1552101 bytes
 6SHA1 (patch-aa) = 64d8599d79c4f9975b0a1ccae79d91865c9afa33

File Added: pkgsrc/security/libtasn1/patches/Attic/patch-aa
$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>