diff options
author | Lasse Collin <lasse.collin@tukaani.org> | 2010-10-09 19:28:49 +0300 |
---|---|---|
committer | Lasse Collin <lasse.collin@tukaani.org> | 2010-10-09 19:28:49 +0300 |
commit | 5629c4be07b6c67e79842b2569da1cedc9c0d69a (patch) | |
tree | 5bad7e5c6db9ac9dbed4987810952184dbe33271 /dos/config.h | |
parent | Windows: Put some license info into README-Windows.txt. (diff) | |
download | xz-5629c4be07b6c67e79842b2569da1cedc9c0d69a.tar.xz |
DOS: Update the Makefile, config.h and README.
This is now simpler and builds only xz.exe.
Diffstat (limited to 'dos/config.h')
-rw-r--r-- | dos/config.h | 45 |
1 files changed, 11 insertions, 34 deletions
diff --git a/dos/config.h b/dos/config.h index dfd6f797..1ed81f67 100644 --- a/dos/config.h +++ b/dos/config.h @@ -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 |