public inbox for linux-xfs@vger.kernel.org
 help / color / mirror / Atom feed
* [PATCH v3 00/11] xfsprogs: OS X partial support
@ 2015-08-03 14:39 Jan Tulak
  2015-08-03 14:39 ` [PATCH v2 01/11] xfsprogs: Don't Make .po files with gettext disabled Jan Tulak
                   ` (10 more replies)
  0 siblings, 11 replies; 36+ messages in thread
From: Jan Tulak @ 2015-08-03 14:39 UTC (permalink / raw)
  To: xfs; +Cc: hch, Jan Tulak

Hi folks.

All right, this is a third iteration of fixing the out-of-date
OS X code in xfsprogs (4 years since the last touch).

Against v2, I made these changes:

- Patch 4/4 was broken to 8 smaller patches
- Issues in that patch were addressed
- Greatly enhanced commit message about LIST_ macros renaming

The last point is still open and may change, so I moved it
into the last commit. First two commits were already reviewed,
but I include them to keep their trace in this new numbering of
the patchset.

Cheers,
Jan

Jan Tulak (11):
  xfsprogs: Don't Make .po files with gettext disabled
  xfsprogs: Use glibtoolize on osx
  xfsprogs: undefined variable fix
  xfsprogs: Add ifdef dirent checks where it was missing
  xfsprogs: Change OS X-specific CFLAGS/LDFLAGS
  xfsprogs: Add includes required for OS X builds
  xfsprogs: missing and dummy calls for OS X support
  xfsprogs: Add fls check into autoconf
  xfsprogs: Add mntent.h check into autoconf
  xfsprogs: replace obsolete memalign with posix_memalign
  xfsprogs: Prefix LIST_... macros to XFS_LIST_...

 Makefile              |  19 +++++-
 configure.ac          |   2 +
 copy/xfs_copy.c       |   2 +-
 db/attrset.c          |   2 +-
 fsr/xfs_fsr.c         |  17 ++++--
 include/bitops.h      |   2 +
 include/builddefs.in  |  10 +++-
 include/darwin.h      | 159 ++++++++++++++++++++++++++++++++++++++++++++------
 include/freebsd.h     |   1 -
 include/gnukfreebsd.h |   1 -
 include/linux.h       |   1 -
 include/list.h        |   6 +-
 io/pread.c            |   4 +-
 io/readdir.c          |   4 ++
 libdisk/fstype.c      |   1 +
 libhandle/Makefile    |   4 ++
 libxcmd/paths.c       |   2 +-
 libxfs/rdwr.c         |  19 ++++--
 m4/package_libcdev.m4 |  26 +++++++++
 mkfs/xfs_mkfs.c       |   6 +-
 repair/incore.c       |   2 +-
 repair/incore_ino.c   |  13 ++++-
 repair/phase1.c       |   2 +-
 repair/phase6.c       |   2 +-
 repair/prefetch.c     |   7 +--
 repair/sb.c           |  10 ++--
 rtcp/xfs_rtcp.c       |   7 ++-
 27 files changed, 274 insertions(+), 57 deletions(-)

-- 
2.4.3

_______________________________________________
xfs mailing list
xfs@oss.sgi.com
http://oss.sgi.com/mailman/listinfo/xfs

^ permalink raw reply	[flat|nested] 36+ messages in thread

end of thread, other threads:[~2015-08-17 15:15 UTC | newest]

Thread overview: 36+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-08-03 14:39 [PATCH v3 00/11] xfsprogs: OS X partial support Jan Tulak
2015-08-03 14:39 ` [PATCH v2 01/11] xfsprogs: Don't Make .po files with gettext disabled Jan Tulak
2015-08-03 14:39 ` [PATCH v2 02/11] xfsprogs: Use glibtoolize on osx Jan Tulak
2015-08-03 14:39 ` [PATCH v3 03/11] xfsprogs: undefined variable fix Jan Tulak
2015-08-04  8:41   ` Christoph Hellwig
2015-08-03 14:39 ` [PATCH v3 04/11] xfsprogs: Add ifdef dirent checks where it was missing Jan Tulak
2015-08-04  8:46   ` Christoph Hellwig
2015-08-04  9:21     ` Jan Tulak
2015-08-04  9:25   ` [PATCH v4 " Jan Tulak
2015-08-04 11:18     ` Christoph Hellwig
2015-08-04 14:19       ` Jan Tulak
2015-08-04 23:00         ` Dave Chinner
2015-08-05  9:49           ` Jan Tulak
2015-08-05  9:48     ` [PATCH v5 " Jan Tulak
2015-08-03 14:39 ` [PATCH v3 05/11] xfsprogs: Change OS X-specific CFLAGS/LDFLAGS Jan Tulak
2015-08-04 11:17   ` Christoph Hellwig
2015-08-03 14:39 ` [PATCH v3 06/11] xfsprogs: Add includes required for OS X builds Jan Tulak
2015-08-04 11:18   ` Christoph Hellwig
2015-08-13 14:07     ` [PATCH " Jan Tulak
2015-08-03 14:39 ` [PATCH v3 07/11] xfsprogs: missing and dummy calls for OS X support Jan Tulak
2015-08-03 14:39 ` [PATCH v3 08/11] xfsprogs: Add fls check into autoconf Jan Tulak
2015-08-04 11:21   ` Christoph Hellwig
2015-08-04 12:12     ` Jan Tulak
2015-08-14 12:59       ` Jan Tulak
2015-08-17 15:02       ` [PATCH v4 03/11] " Jan Tulak
2015-08-03 14:39 ` [PATCH v3 09/11] xfsprogs: Add mntent.h " Jan Tulak
2015-08-04 11:21   ` Christoph Hellwig
2015-08-17 15:01     ` [PATCH v4 " Jan Tulak
2015-08-17 15:04       ` Christoph Hellwig
2015-08-17 15:15         ` Jan Tulak
2015-08-03 14:39 ` [PATCH v3 10/11] xfsprogs: replace obsolete memalign with posix_memalign Jan Tulak
2015-08-05 22:57   ` Dave Chinner
2015-08-13 14:08     ` [PATCH " Jan Tulak
2015-08-03 14:39 ` [PATCH v2 11/11] xfsprogs: Prefix LIST_... macros to XFS_LIST_ Jan Tulak
2015-08-04  9:01   ` [PATCH v4 11/11] xfsprogs: prevent LIST_ macros conflicts Jan Tulak
2015-08-04 11:22     ` Christoph Hellwig

This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox