diff options
author | kristerw <kristerw> | 2004-06-15 17:19:23 +0000 |
---|---|---|
committer | kristerw <kristerw> | 2004-06-15 17:19:23 +0000 |
commit | 72c69d99aa734ad0125472e9065f5cf8b9197242 (patch) | |
tree | b70297a2ab5c4b9bdd505ee100ff5b6ebf51ab8f /devel | |
parent | a9e2852203a50ca15e8a57dfe998193094625f34 (diff) | |
download | pkgsrc-72c69d99aa734ad0125472e9065f5cf8b9197242.tar.gz |
Correct two prototypes that gcc 3.3 did not like.
Diffstat (limited to 'devel')
-rw-r--r-- | devel/sfio/distinfo | 4 | ||||
-rw-r--r-- | devel/sfio/patches/patch-ak | 13 | ||||
-rw-r--r-- | devel/sfio/patches/patch-al | 13 |
3 files changed, 29 insertions, 1 deletions
diff --git a/devel/sfio/distinfo b/devel/sfio/distinfo index 5204386f88d..1838e2473d3 100644 --- a/devel/sfio/distinfo +++ b/devel/sfio/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.3 2002/09/10 23:39:43 schmonz Exp $ +$NetBSD: distinfo,v 1.4 2004/06/15 17:19:23 kristerw Exp $ SHA1 (sfio_1999.src.unix.cpio) = 6fd3a711ca8f95190c0859934f57a66d02c842a4 Size (sfio_1999.src.unix.cpio) = 647168 bytes @@ -12,3 +12,5 @@ SHA1 (patch-ag) = ffa7233bcb32efd393a449bfcfb6e2696e76f9d6 SHA1 (patch-ah) = 02d80635de65a6513a222be69643e9925a170d17 SHA1 (patch-ai) = 6ede082aaf65b323fa6cbc51a84fd09d6d1ab7ec SHA1 (patch-aj) = 8e6c2c21fc4ed576679554c2e97d9eefa0f1e72a +SHA1 (patch-ak) = 42d8dd1a5518b558f8875f9fb60f7e80b9c0fd4b +SHA1 (patch-al) = d11738f33e3382664e8dc57501a062a0df948083 diff --git a/devel/sfio/patches/patch-ak b/devel/sfio/patches/patch-ak new file mode 100644 index 00000000000..27cf232f2cc --- /dev/null +++ b/devel/sfio/patches/patch-ak @@ -0,0 +1,13 @@ +$NetBSD: patch-ak,v 1.1 2004/06/15 17:19:23 kristerw Exp $ + +--- src/lib/sfio/Stdio_b/snprintf.c.orig 2004-06-15 19:03:12.000000000 +0200 ++++ src/lib/sfio/Stdio_b/snprintf.c 2004-06-15 19:04:22.000000000 +0200 +@@ -5,7 +5,7 @@ + */ + + #if __STD_C +-int snprintf(char* s, int n, const char* form, ...) ++int snprintf(char* s, size_t n, const char* form, ...) + #else + int snprintf(va_alist) + va_dcl diff --git a/devel/sfio/patches/patch-al b/devel/sfio/patches/patch-al new file mode 100644 index 00000000000..9a9e636d333 --- /dev/null +++ b/devel/sfio/patches/patch-al @@ -0,0 +1,13 @@ +$NetBSD: patch-al,v 1.1 2004/06/15 17:19:23 kristerw Exp $ + +--- src/lib/sfio/Stdio_b/vsnprintf.c.orig 2004-06-15 19:04:48.000000000 +0200 ++++ src/lib/sfio/Stdio_b/vsnprintf.c 2004-06-15 19:06:06.000000000 +0200 +@@ -5,7 +5,7 @@ + */ + + #if __STD_C +-int vsnprintf(char* s, int n, const char* form, va_list args) ++int vsnprintf(char* s, size_t n, const char* form, va_list args) + #else + int vsnprintf(s,n,form,args) + reg char* s; |