diff options
author | Brad King <brad.king@kitware.com> | 2012-01-04 14:37:54 (GMT) |
---|---|---|
committer | Brad King <brad.king@kitware.com> | 2012-01-04 14:39:28 (GMT) |
commit | b6ca96ec95145b453790f519abbbae91cd6c9771 (patch) | |
tree | 67ad66d4f5d464246673f6c1652b87503c7cf522 /Utilities/cmlibarchive/build | |
parent | f293b73d71c5dbbf053a864b2c2f285ef0834630 (diff) | |
download | CMake-b6ca96ec95145b453790f519abbbae91cd6c9771.zip CMake-b6ca96ec95145b453790f519abbbae91cd6c9771.tar.gz CMake-b6ca96ec95145b453790f519abbbae91cd6c9771.tar.bz2 |
libarchive: Include linux/types.h before linux/fiemap.h
Some Linux API versions do not perform this inclusion automatically,
so types like __u64 needed by the latter are not available.
Diffstat (limited to 'Utilities/cmlibarchive/build')
-rw-r--r-- | Utilities/cmlibarchive/build/cmake/config.h.in | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/Utilities/cmlibarchive/build/cmake/config.h.in b/Utilities/cmlibarchive/build/cmake/config.h.in index 71a7801..ff97cbd 100644 --- a/Utilities/cmlibarchive/build/cmake/config.h.in +++ b/Utilities/cmlibarchive/build/cmake/config.h.in @@ -603,6 +603,9 @@ typedef uint64_t uintmax_t; /* Define to 1 if you have the `link' function. */ #cmakedefine HAVE_LINK 1 +/* Define to 1 if you have the <linux/types.h> header file. */ +#cmakedefine HAVE_LINUX_TYPES_H 1 + /* Define to 1 if you have the <linux/fiemap.h> header file. */ #cmakedefine HAVE_LINUX_FIEMAP_H 1 |