diff options
Diffstat (limited to 'Build/source/extra/xz/config.h.in')
-rw-r--r-- | Build/source/extra/xz/config.h.in | 14 |
1 files changed, 9 insertions, 5 deletions
diff --git a/Build/source/extra/xz/config.h.in b/Build/source/extra/xz/config.h.in index 3f0ae116bfa..f9fc57f628f 100644 --- a/Build/source/extra/xz/config.h.in +++ b/Build/source/extra/xz/config.h.in @@ -125,7 +125,7 @@ /* Define if the GNU gettext() function is already present or preinstalled. */ #undef HAVE_GETTEXT -/* Define if you have the iconv() function. */ +/* Define if you have the iconv() function and it works. */ #undef HAVE_ICONV /* Define to 1 if you have the <inttypes.h> header file. */ @@ -161,6 +161,9 @@ /* Define if you have POSIX threads libraries and header files. */ #undef HAVE_PTHREAD +/* Have PTHREAD_PRIO_INHERIT. */ +#undef HAVE_PTHREAD_PRIO_INHERIT + /* Define to 1 if optimizing for size. */ #undef HAVE_SMALL @@ -241,9 +244,6 @@ /* Define to 1 to disable debugging code. */ #undef NDEBUG -/* Define to 1 if your C compiler doesn't accept -c and -o together. */ -#undef NO_MINUS_C_MINUS_O - /* Name of package */ #undef PACKAGE @@ -356,6 +356,11 @@ # endif #endif +/* Enable large inode numbers on Mac OS X 10.5. */ +#ifndef _DARWIN_USE_64_BIT_INODE +# define _DARWIN_USE_64_BIT_INODE 1 +#endif + /* Number of bits in a file offset, on hosts where this is settable. */ #undef _FILE_OFFSET_BITS @@ -418,4 +423,3 @@ /* Define to the type of an unsigned integer type wide enough to hold a pointer, if such a type exists, and if the system does not define it. */ #undef uintptr_t - |