diff options
author | joerg <joerg@pkgsrc.org> | 2012-10-26 20:32:56 +0000 |
---|---|---|
committer | joerg <joerg@pkgsrc.org> | 2012-10-26 20:32:56 +0000 |
commit | 5acf50532318bfb1046eaf4b4496d87d99c7b668 (patch) | |
tree | 6f82b1f1a05814e275515450e1a863a238e6fc86 /sysutils/xfsprogs/patches | |
parent | ae3930b089c68e718efdfcd0d5f6609279828680 (diff) | |
download | pkgsrc-5acf50532318bfb1046eaf4b4496d87d99c7b668.tar.gz |
Make sure a bunch of inline functions are static to ensure they are
either inlined or remain outlined.
Diffstat (limited to 'sysutils/xfsprogs/patches')
-rw-r--r-- | sysutils/xfsprogs/patches/patch-ab | 8 | ||||
-rw-r--r-- | sysutils/xfsprogs/patches/patch-ac | 6 | ||||
-rw-r--r-- | sysutils/xfsprogs/patches/patch-libxfs_xfs__bmap__btree.c | 13 | ||||
-rw-r--r-- | sysutils/xfsprogs/patches/patch-libxfs_xfs__ialloc.c | 13 |
4 files changed, 33 insertions, 7 deletions
diff --git a/sysutils/xfsprogs/patches/patch-ab b/sysutils/xfsprogs/patches/patch-ab index 51e75318b8f..23b4226b9e9 100644 --- a/sysutils/xfsprogs/patches/patch-ab +++ b/sysutils/xfsprogs/patches/patch-ab @@ -1,8 +1,8 @@ -$NetBSD: patch-ab,v 1.1.1.1 2005/12/30 23:03:05 agc Exp $ +$NetBSD: patch-ab,v 1.2 2012/10/26 20:32:56 joerg Exp $ ---- include/builddefs.in 2005/12/29 13:56:15 1.1 -+++ include/builddefs.in 2005/12/29 13:59:14 -@@ -116,6 +116,11 @@ +--- include/builddefs.in.orig 2005-10-07 16:51:34.000000000 +0000 ++++ include/builddefs.in +@@ -116,6 +116,11 @@ ifeq ($(PKG_PLATFORM),freebsd) PLDLIBS = -L/usr/local/lib -lintl PCFLAGS = -I/usr/local/include endif diff --git a/sysutils/xfsprogs/patches/patch-ac b/sysutils/xfsprogs/patches/patch-ac index 60ab258a71f..0d2de917cb5 100644 --- a/sysutils/xfsprogs/patches/patch-ac +++ b/sysutils/xfsprogs/patches/patch-ac @@ -1,7 +1,7 @@ -$NetBSD: patch-ac,v 1.1.1.1 2005/12/30 23:03:05 agc Exp $ +$NetBSD: patch-ac,v 1.2 2012/10/26 20:32:56 joerg Exp $ ---- include/platform_defs.h.in 2005/12/29 14:03:45 1.1 -+++ include/platform_defs.h.in 2005/12/29 14:04:54 +--- include/platform_defs.h.in.orig 2005-10-07 16:51:34.000000000 +0000 ++++ include/platform_defs.h.in @@ -50,6 +50,8 @@ #include <xfs/linux.h> #elif defined(__FreeBSD__) diff --git a/sysutils/xfsprogs/patches/patch-libxfs_xfs__bmap__btree.c b/sysutils/xfsprogs/patches/patch-libxfs_xfs__bmap__btree.c new file mode 100644 index 00000000000..c7f4ce44864 --- /dev/null +++ b/sysutils/xfsprogs/patches/patch-libxfs_xfs__bmap__btree.c @@ -0,0 +1,13 @@ +$NetBSD: patch-libxfs_xfs__bmap__btree.c,v 1.1 2012/10/26 20:32:56 joerg Exp $ + +--- libxfs/xfs_bmap_btree.c.orig 2012-10-26 15:06:31.000000000 +0000 ++++ libxfs/xfs_bmap_btree.c +@@ -1552,7 +1552,7 @@ xfs_bmbt_delete( + * xfs_bmbt_get_startblock, xfs_bmbt_get_blockcount and xfs_bmbt_get_state. + */ + +-STATIC __inline__ void ++static void + __xfs_bmbt_get_all( + __uint64_t l0, + __uint64_t l1, diff --git a/sysutils/xfsprogs/patches/patch-libxfs_xfs__ialloc.c b/sysutils/xfsprogs/patches/patch-libxfs_xfs__ialloc.c new file mode 100644 index 00000000000..7245fa81ae2 --- /dev/null +++ b/sysutils/xfsprogs/patches/patch-libxfs_xfs__ialloc.c @@ -0,0 +1,13 @@ +$NetBSD: patch-libxfs_xfs__ialloc.c,v 1.1 2012/10/26 20:32:56 joerg Exp $ + +--- libxfs/xfs_ialloc.c.orig 2012-10-26 15:05:39.000000000 +0000 ++++ libxfs/xfs_ialloc.c +@@ -315,7 +315,7 @@ xfs_ialloc_ag_alloc( + return 0; + } + +-STATIC __inline xfs_agnumber_t ++static xfs_agnumber_t + xfs_ialloc_next_ag( + xfs_mount_t *mp) + { |