diff options
author | joerg <joerg@pkgsrc.org> | 2012-11-19 03:02:14 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2012-11-19 03:02:14 +0000 |
commit | 2aaacd7746d60a554d30f58b9fb7f3668a94e82e (patch) | |
tree | b95b66f5af5e5f68d7eb2932e55dae39c362eea7 /sysutils | |
parent | c67be94d1d59c9936a6e1b4304d1e30582fa8490 (diff) | |
download | pkgsrc-2aaacd7746d60a554d30f58b9fb7f3668a94e82e.tar.gz |
Force GNU inline semantic.
Diffstat (limited to 'sysutils')
-rw-r--r-- | sysutils/e2fsprogs/distinfo | 5 | ||||
-rw-r--r-- | sysutils/e2fsprogs/patches/patch-e2fsck_jfs__user.h | 13 | ||||
-rw-r--r-- | sysutils/e2fsprogs/patches/patch-lib_ext2fs_bitops.h | 13 | ||||
-rw-r--r-- | sysutils/e2fsprogs/patches/patch-lib_ext2fs_ext2fs.h | 13 |
4 files changed, 43 insertions, 1 deletions
diff --git a/sysutils/e2fsprogs/distinfo b/sysutils/e2fsprogs/distinfo index eff22afa700..26d13dcf565 100644 --- a/sysutils/e2fsprogs/distinfo +++ b/sysutils/e2fsprogs/distinfo @@ -1,4 +1,4 @@ -$NetBSD: distinfo,v 1.17 2012/06/27 08:52:05 bsiegert Exp $ +$NetBSD: distinfo,v 1.18 2012/11/19 03:02:14 joerg Exp $ SHA1 (e2fsprogs-1.41.12.tar.gz) = 62b002fe507b2ddafc24b89532e472fe4b55a14f RMD160 (e2fsprogs-1.41.12.tar.gz) = aa7f9a2e350fcab85c72deaaee5fdc2a5e9fb6e7 @@ -15,4 +15,7 @@ SHA1 (patch-as) = 6066be5bf84753419407d2ee70cd8934b918c298 SHA1 (patch-at) = 53cbd25d89a9df733ba931490c1dcb77b20ddbe3 SHA1 (patch-av) = 92c9d34c82cba121744cfff5b23e4b92c9442545 SHA1 (patch-aw) = cb5e382077c07f0ced114fcbf195537cc7b0058c +SHA1 (patch-e2fsck_jfs__user.h) = d0b8058f00a4ac5445645017bf83aafc8af63c8a +SHA1 (patch-lib_ext2fs_bitops.h) = 3d3c8862e00622a0b715e7ef162d229910b43ec1 +SHA1 (patch-lib_ext2fs_ext2fs.h) = 0bd9fbfcf33008d90cecb7821d04791b27f286f2 SHA1 (patch-lib_ext2fs_tdb.c) = 21f2109420b6e35f3a5c194f26ce14f6cb07f4ef diff --git a/sysutils/e2fsprogs/patches/patch-e2fsck_jfs__user.h b/sysutils/e2fsprogs/patches/patch-e2fsck_jfs__user.h new file mode 100644 index 00000000000..3d1e0857a21 --- /dev/null +++ b/sysutils/e2fsprogs/patches/patch-e2fsck_jfs__user.h @@ -0,0 +1,13 @@ +$NetBSD: patch-e2fsck_jfs__user.h,v 1.1 2012/11/19 03:02:14 joerg Exp $ + +--- e2fsck/jfs_user.h.orig 2012-11-19 02:21:35.000000000 +0000 ++++ e2fsck/jfs_user.h +@@ -83,7 +83,7 @@ extern size_t journal_tag_bytes(journal_ + #define _INLINE_ extern + #else + #ifdef __GNUC__ +-#define _INLINE_ extern __inline__ ++#define _INLINE_ extern __attribute__((__gnu_inline__)) __inline__ + #else /* For Watcom C */ + #define _INLINE_ extern inline + #endif diff --git a/sysutils/e2fsprogs/patches/patch-lib_ext2fs_bitops.h b/sysutils/e2fsprogs/patches/patch-lib_ext2fs_bitops.h new file mode 100644 index 00000000000..d61cd0e6c65 --- /dev/null +++ b/sysutils/e2fsprogs/patches/patch-lib_ext2fs_bitops.h @@ -0,0 +1,13 @@ +$NetBSD: patch-lib_ext2fs_bitops.h,v 1.1 2012/11/19 03:02:14 joerg Exp $ + +--- lib/ext2fs/bitops.h.orig 2012-11-19 02:21:39.000000000 +0000 ++++ lib/ext2fs/bitops.h +@@ -135,7 +135,7 @@ extern __u32 ext2fs_get_generic_bitmap_e + #define _INLINE_ extern + #else + #ifdef __GNUC__ +-#define _INLINE_ extern __inline__ ++#define _INLINE_ extern __attribute__((__gnu_inline__)) __inline__ + #else /* For Watcom C */ + #define _INLINE_ extern inline + #endif diff --git a/sysutils/e2fsprogs/patches/patch-lib_ext2fs_ext2fs.h b/sysutils/e2fsprogs/patches/patch-lib_ext2fs_ext2fs.h new file mode 100644 index 00000000000..31de6cdc865 --- /dev/null +++ b/sysutils/e2fsprogs/patches/patch-lib_ext2fs_ext2fs.h @@ -0,0 +1,13 @@ +$NetBSD: patch-lib_ext2fs_ext2fs.h,v 1.1 2012/11/19 03:02:14 joerg Exp $ + +--- lib/ext2fs/ext2fs.h.orig 2012-11-19 02:21:42.000000000 +0000 ++++ lib/ext2fs/ext2fs.h +@@ -1180,7 +1180,7 @@ extern unsigned int ext2fs_div_ceil(unsi + #define _INLINE_ extern + #else + #ifdef __GNUC__ +-#define _INLINE_ extern __inline__ ++#define _INLINE_ extern __attribute__((__gnu_inline__)) __inline__ + #else /* For Watcom C */ + #define _INLINE_ extern inline + #endif |