liblzma: Omit CRC tables when not needed with ARM64 optimizations.
[xz.git] / dos / config.h
blob797f63302ea99cbdd508edd6eaa878021cfb2180
1 /* How many MiB of RAM to assume if the real amount cannot be determined. */
2 #define ASSUME_RAM 32
4 /* Define to 1 if crc32 integrity check is enabled. */
5 #define HAVE_CHECK_CRC32 1
7 /* Define to 1 if crc64 integrity check is enabled. */
8 #define HAVE_CHECK_CRC64 1
10 /* Define to 1 if sha256 integrity check is enabled. */
11 #define HAVE_CHECK_SHA256 1
13 /* Define to 1 if any of HAVE_DECODER_foo have been defined. */
14 #define HAVE_DECODERS 1
16 /* Define to 1 if arm decoder is enabled. */
17 #define HAVE_DECODER_ARM 1
19 /* Define to 1 if arm64 decoder is enabled. */
20 #define HAVE_DECODER_ARM64 1
22 /* Define to 1 if armthumb decoder is enabled. */
23 #define HAVE_DECODER_ARMTHUMB 1
25 /* Define to 1 if delta decoder is enabled. */
26 #define HAVE_DECODER_DELTA 1
28 /* Define to 1 if ia64 decoder is enabled. */
29 #define HAVE_DECODER_IA64 1
31 /* Define to 1 if lzma1 decoder is enabled. */
32 #define HAVE_DECODER_LZMA1 1
34 /* Define to 1 if lzma2 decoder is enabled. */
35 #define HAVE_DECODER_LZMA2 1
37 /* Define to 1 if powerpc decoder is enabled. */
38 #define HAVE_DECODER_POWERPC 1
40 /* Define to 1 if sparc decoder is enabled. */
41 #define HAVE_DECODER_SPARC 1
43 /* Define to 1 if x86 decoder is enabled. */
44 #define HAVE_DECODER_X86 1
46 /* Define to 1 if any of HAVE_ENCODER_foo have been defined. */
47 #define HAVE_ENCODERS 1
49 /* Define to 1 if arm encoder is enabled. */
50 #define HAVE_ENCODER_ARM 1
52 /* Define to 1 if arm64 encoder is enabled. */
53 #define HAVE_ENCODER_ARM64 1
55 /* Define to 1 if armthumb encoder is enabled. */
56 #define HAVE_ENCODER_ARMTHUMB 1
58 /* Define to 1 if delta encoder is enabled. */
59 #define HAVE_ENCODER_DELTA 1
61 /* Define to 1 if ia64 encoder is enabled. */
62 #define HAVE_ENCODER_IA64 1
64 /* Define to 1 if lzma1 encoder is enabled. */
65 #define HAVE_ENCODER_LZMA1 1
67 /* Define to 1 if lzma2 encoder is enabled. */
68 #define HAVE_ENCODER_LZMA2 1
70 /* Define to 1 if powerpc encoder is enabled. */
71 #define HAVE_ENCODER_POWERPC 1
73 /* Define to 1 if sparc encoder is enabled. */
74 #define HAVE_ENCODER_SPARC 1
76 /* Define to 1 if x86 encoder is enabled. */
77 #define HAVE_ENCODER_X86 1
79 /* Define to 1 if you have the <inttypes.h> header file. */
80 #define HAVE_INTTYPES_H 1
82 /* Define to 1 if you have the <limits.h> header file. */
83 #define HAVE_LIMITS_H 1
85 /* Define to 1 if .lz (lzip) decompression support is enabled. */
86 #define HAVE_LZIP_DECODER 1
88 /* Define to 1 to enable bt2 match finder. */
89 #define HAVE_MF_BT2 1
91 /* Define to 1 to enable bt3 match finder. */
92 #define HAVE_MF_BT3 1
94 /* Define to 1 to enable bt4 match finder. */
95 #define HAVE_MF_BT4 1
97 /* Define to 1 to enable hc3 match finder. */
98 #define HAVE_MF_HC3 1
100 /* Define to 1 to enable hc4 match finder. */
101 #define HAVE_MF_HC4 1
103 /* Define to 1 if stdbool.h conforms to C99. */
104 #define HAVE_STDBOOL_H 1
106 /* Define to 1 if you have the <stdint.h> header file. */
107 #define HAVE_STDINT_H 1
109 /* Define to 1 if you have the <stdlib.h> header file. */
110 #define HAVE_STDLIB_H 1
112 /* Define to 1 if you have the <string.h> header file. */
113 #define HAVE_STRING_H 1
115 /* Define to 1 if you have the <sys/time.h> header file. */
116 #define HAVE_SYS_TIME_H 1
118 /* Define to 1 if you have the 'utimes' function. */
119 #define HAVE_UTIMES 1
121 /* Define to 1 or 0, depending whether the compiler supports simple visibility
122 declarations. */
123 #define HAVE_VISIBILITY 0
125 /* Define to 1 if the system has the type '_Bool'. */
126 #define HAVE__BOOL 1
128 /* Define to 1 if the GNU C extension __builtin_assume_aligned is supported.
130 #define HAVE___BUILTIN_ASSUME_ALIGNED 1
132 /* Define to 1 if the GNU C extensions __builtin_bswap16/32/64 are supported.
134 #define HAVE___BUILTIN_BSWAPXX 1
136 /* Define to 1 to disable debugging code. */
137 #define NDEBUG 1
139 /* Define to the address where bug reports for this package should be sent. */
140 #define PACKAGE_BUGREPORT "xz@tukaani.org"
142 /* Define to the full name of this package. */
143 #define PACKAGE_NAME "XZ Utils"
145 /* Define to the home page for this package. */
146 #define PACKAGE_URL "https://xz.tukaani.org/xz-utils/"
148 /* The size of 'size_t', as computed by sizeof. */
149 #define SIZEOF_SIZE_T 4
151 /* Define to 1 if the system supports fast unaligned access to 16-bit and
152 32-bit integers. */
153 #define TUKLIB_FAST_UNALIGNED_ACCESS 1