diff options
author | Brad King <brad.king@kitware.com> | 2011-02-07 15:06:50 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2011-02-07 15:06:50 (GMT) |
commit | 41b7b3efa4e2684085be7c7dd76baea17f269988 (patch) | |
tree | 61fad6e68bf7c9bdf21557f86d53323074dac0ae /Utilities/cmlibarchive/libarchive/archive_windows.h | |
parent | cf5ad18340f1d775e47c7aa9afde7deb0482027e (diff) | |
download | CMake-41b7b3efa4e2684085be7c7dd76baea17f269988.zip CMake-41b7b3efa4e2684085be7c7dd76baea17f269988.tar.gz CMake-41b7b3efa4e2684085be7c7dd76baea17f269988.tar.bz2 |
libarchive: Define major/minor/makedev only where needed (#11648)
If neither MAJOR_IN_MKDEV or MAJOR_IN_SYSMACROS is defined then provide
our own implementation of these macros locally. This complements the
change in commit cf5ad183 (Fix major() check for LSB 4.0, 2011-01-12).
This patch is based on upstream libarchive SVN commit 1553 (Shuffle the
major/minor/makedev support a bit; this should work on both Windows and
Haiku, 2009-10-31).
Inspired-by: Tim Kientzle <kientzle@freebsd.org>
Diffstat (limited to 'Utilities/cmlibarchive/libarchive/archive_windows.h')
-rw-r--r-- | Utilities/cmlibarchive/libarchive/archive_windows.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/Utilities/cmlibarchive/libarchive/archive_windows.h b/Utilities/cmlibarchive/libarchive/archive_windows.h index 17f5698..f85f3f0 100644 --- a/Utilities/cmlibarchive/libarchive/archive_windows.h +++ b/Utilities/cmlibarchive/libarchive/archive_windows.h @@ -94,11 +94,6 @@ #endif #endif -/* Replacement for major/minor/makedev. */ -#define major(x) ((int)(0x00ff & ((x) >> 8))) -#define minor(x) ((int)(0xffff00ff & (x))) -#define makedev(maj,min) ((0xff00 & ((maj)<<8))|(0xffff00ff & (min))) - /* Alias the Windows _function to the POSIX equivalent. */ #define access _access #define chdir __la_chdir |