diff options
author | joerg <joerg> | 2011-08-01 15:21:16 +0000 |
---|---|---|
committer | joerg <joerg> | 2011-08-01 15:21:16 +0000 |
commit | 3742811968f8a4eba033cf5220b9363aa7d5b200 (patch) | |
tree | 74ad2edc4881e11e9ec1f1c79a5c649e4175d6e9 /archivers | |
parent | e5c9082cc37b83126f210c0179a5bcbc7801dade (diff) | |
download | pkgsrc-3742811968f8a4eba033cf5220b9363aa7d5b200.tar.gz |
Avoid gcc-inline vs C99-inline difference by using static inline.
Diffstat (limited to 'archivers')
-rw-r--r-- | archivers/bunzip/distinfo | 4 | ||||
-rw-r--r-- | archivers/bunzip/patches/patch-aa | 13 |
2 files changed, 13 insertions, 4 deletions
diff --git a/archivers/bunzip/distinfo b/archivers/bunzip/distinfo index 8c2d9f7c96e..73870d4a612 100644 --- a/archivers/bunzip/distinfo +++ b/archivers/bunzip/distinfo @@ -1,6 +1,6 @@ -$NetBSD: distinfo,v 1.5 2007/08/01 20:48:14 joerg Exp $ +$NetBSD: distinfo,v 1.6 2011/08/01 15:21:16 joerg Exp $ SHA1 (bunzip021.c.gz) = 0b12f8327807721d29e4bde44557b536ae9ecfc5 RMD160 (bunzip021.c.gz) = 32580bfeefc17094a4e8dc2532bdd7efcbd80063 Size (bunzip021.c.gz) = 20317 bytes -SHA1 (patch-aa) = daa22405412573b67d31f8416c677f8bcdf77f41 +SHA1 (patch-aa) = 9f131e7ae37a5ae061bdcb958ef6cf0c8ed14f75 diff --git a/archivers/bunzip/patches/patch-aa b/archivers/bunzip/patches/patch-aa index 8518192754a..40791777931 100644 --- a/archivers/bunzip/patches/patch-aa +++ b/archivers/bunzip/patches/patch-aa @@ -1,6 +1,6 @@ -$NetBSD: patch-aa,v 1.3 2007/08/01 20:48:15 joerg Exp $ +$NetBSD: patch-aa,v 1.4 2011/08/01 15:21:16 joerg Exp $ ---- bunzip021.c.orig 2007-08-01 20:31:16.000000000 +0000 +--- bunzip021.c.orig 1999-05-22 21:00:00.000000000 +0000 +++ bunzip021.c @@ -114,9 +114,9 @@ --*/ @@ -13,6 +13,15 @@ $NetBSD: patch-aa,v 1.3 2007/08/01 20:48:15 joerg Exp $ #include <sys/stat.h> #include <sys/times.h> +@@ -141,7 +141,7 @@ + run rather slowly. gcc version 2.x is recommended. + --*/ + #ifdef __GNUC__ +- #define INLINE inline ++ #define INLINE static inline + #define NORETURN __attribute__ ((noreturn)) + #else + #define INLINE /**/ @@ -400,7 +400,8 @@ Int32 bytesIn, bytesOut; |