diff options
Diffstat (limited to 'lib/liblzma/config.h')
-rw-r--r-- | lib/liblzma/config.h | 18 |
1 files changed, 15 insertions, 3 deletions
diff --git a/lib/liblzma/config.h b/lib/liblzma/config.h index 3e51b0b92463..963d08c93e7a 100644 --- a/lib/liblzma/config.h +++ b/lib/liblzma/config.h @@ -68,6 +68,12 @@ /* Define to 1 if you have the <cpuid.h> header file. */ #define HAVE_CPUID_H 1 +/* Define to 1 if the 32-bit x86 CRC assembly files are used. */ +/* FreeBSD - only enabled for i386 */ +#if defined(__FreeBSD__) && defined(__i386__) +#define HAVE_CRC_X86_ASM 1 +#endif + /* Define if the GNU dcgettext() function is already present or preinstalled. */ /* FreeBSD - disabled intentionally */ @@ -193,6 +199,9 @@ */ /* #undef HAVE_LINUX_LANDLOCK */ +/* Define to 1 if 64-bit LoongArch CRC32 instructions are supported. */ +/* #undef HAVE_LOONGARCH_CRC32 */ + /* Define to 1 if .lz (lzip) decompression support is enabled. */ #define HAVE_LZIP_DECODER 1 @@ -335,6 +344,9 @@ /* Define to 1 if you have the 'utimes' function. */ /* #undef HAVE_UTIMES */ +/* Define to 1 if you have the 'vasprintf' function. */ +#define HAVE_VASPRINTF 1 + /* Define to 1 or 0, depending whether the compiler supports simple visibility declarations. */ #define HAVE_VISIBILITY 1 @@ -391,7 +403,7 @@ #define PACKAGE_NAME "XZ Utils" /* Define to the full name and version of this package. */ -#define PACKAGE_STRING "XZ Utils 5.6.3" +#define PACKAGE_STRING "XZ Utils 5.8.1" /* Define to the one symbol short name of this package. */ #define PACKAGE_TARNAME "xz" @@ -400,7 +412,7 @@ #define PACKAGE_URL "https://tukaani.org/xz/" /* Define to the version of this package. */ -#define PACKAGE_VERSION "5.6.3" +#define PACKAGE_VERSION "5.8.1" /* Define to necessary symbol if this constant uses a non-standard name on your system. */ @@ -565,7 +577,7 @@ /* Version number of package */ -#define VERSION "5.6.3" +#define VERSION "5.8.1" /* Define WORDS_BIGENDIAN to 1 if your processor stores words with the most significant byte first (like Motorola and SPARC, unlike Intel). */ |