| Index: dos/config.h
|
| ===================================================================
|
| --- dos/config.h (revision 50504)
|
| +++ dos/config.h (working copy)
|
| @@ -1,5 +1,5 @@
|
| -/* Define to 1 if using x86 assembler optimizations. */
|
| -#define HAVE_ASM_X86 1
|
| +/* How many MiB of RAM to assume if the real amount cannot be determined. */
|
| +#define ASSUME_RAM 32
|
|
|
| /* Define to 1 if crc32 integrity check is enabled. */
|
| #define HAVE_CHECK_CRC32 1
|
| @@ -10,9 +10,6 @@
|
| /* Define to 1 if sha256 integrity check is enabled. */
|
| #define HAVE_CHECK_SHA256 1
|
|
|
| -/* Define to 1 if decoder components are enabled. */
|
| -#define HAVE_DECODER 1
|
| -
|
| /* Define to 1 if arm decoder is enabled. */
|
| #define HAVE_DECODER_ARM 1
|
|
|
| @@ -37,15 +34,9 @@
|
| /* Define to 1 if sparc decoder is enabled. */
|
| #define HAVE_DECODER_SPARC 1
|
|
|
| -/* Define to 1 if subblock decoder is enabled. */
|
| -/* #undef HAVE_DECODER_SUBBLOCK */
|
| -
|
| /* Define to 1 if x86 decoder is enabled. */
|
| #define HAVE_DECODER_X86 1
|
|
|
| -/* Define to 1 if encoder components are enabled. */
|
| -#define HAVE_ENCODER 1
|
| -
|
| /* Define to 1 if arm encoder is enabled. */
|
| #define HAVE_ENCODER_ARM 1
|
|
|
| @@ -70,24 +61,15 @@
|
| /* Define to 1 if sparc encoder is enabled. */
|
| #define HAVE_ENCODER_SPARC 1
|
|
|
| -/* Define to 1 if subblock encoder is enabled. */
|
| -/* #undef HAVE_ENCODER_SUBBLOCK */
|
| -
|
| /* Define to 1 if x86 encoder is enabled. */
|
| #define HAVE_ENCODER_X86 1
|
|
|
| -/* Define to 1 if the system supports fast unaligned memory access. */
|
| -#define HAVE_FAST_UNALIGNED_ACCESS 1
|
| -
|
| /* Define to 1 if you have the <inttypes.h> header file. */
|
| #define HAVE_INTTYPES_H 1
|
|
|
| /* Define to 1 if you have the <limits.h> header file. */
|
| #define HAVE_LIMITS_H 1
|
|
|
| -/* Define to 1 if you have the <memory.h> header file. */
|
| -#define HAVE_MEMORY_H 1
|
| -
|
| /* Define to 1 to enable bt2 match finder. */
|
| #define HAVE_MF_BT2 1
|
|
|
| @@ -103,9 +85,6 @@
|
| /* Define to 1 to enable hc4 match finder. */
|
| #define HAVE_MF_HC4 1
|
|
|
| -/* Define to 1 if optimizing for size. */
|
| -/* #undef HAVE_SMALL */
|
| -
|
| /* Define to 1 if stdbool.h conforms to C99. */
|
| #define HAVE_STDBOOL_H 1
|
|
|
| @@ -115,15 +94,9 @@
|
| /* Define to 1 if you have the <stdlib.h> header file. */
|
| #define HAVE_STDLIB_H 1
|
|
|
| -/* Define to 1 if you have the <strings.h> header file. */
|
| -#define HAVE_STRINGS_H 1
|
| -
|
| /* Define to 1 if you have the <string.h> header file. */
|
| #define HAVE_STRING_H 1
|
|
|
| -/* Define to 1 if the system has the type `uintptr_t'. */
|
| -#define HAVE_UINTPTR_T 1
|
| -
|
| /* Define to 1 if you have the <sys/time.h> header file. */
|
| #define HAVE_SYS_TIME_H 1
|
|
|
| @@ -137,17 +110,21 @@
|
| /* Define to 1 if the system has the type `_Bool'. */
|
| #define HAVE__BOOL 1
|
|
|
| +/* Define to 1 to disable debugging code. */
|
| +#define NDEBUG 1
|
| +
|
| /* Define to the address where bug reports for this package should be sent. */
|
| #define PACKAGE_BUGREPORT "lasse.collin@tukaani.org"
|
|
|
| -/* Define to the URL of the home page of this package. */
|
| -#define PACKAGE_HOMEPAGE "http://tukaani.org/xz/"
|
| -
|
| /* Define to the full name of this package. */
|
| #define PACKAGE_NAME "XZ Utils"
|
|
|
| +/* Define to the home page for this package. */
|
| +#define PACKAGE_URL "http://tukaani.org/xz/"
|
| +
|
| /* The size of `size_t', as computed by sizeof. */
|
| #define SIZEOF_SIZE_T 4
|
|
|
| -/* Define to 1 if you have the ANSI C header files. */
|
| -#define STDC_HEADERS 1
|
| +/* Define to 1 if the system supports fast unaligned access to 16-bit and
|
| + 32-bit integers. */
|
| +#define TUKLIB_FAST_UNALIGNED_ACCESS 1
|
|
|