diff options
author | mm <mm@FreeBSD.org> | 2011-07-11 14:15:27 +0000 |
---|---|---|
committer | mm <mm@FreeBSD.org> | 2011-07-11 14:15:27 +0000 |
commit | cf995996ab105668883720bd5e270c8494278403 (patch) | |
tree | a2cc3c1778f675303456a23d9922f0e98837006d /lib/liblzma | |
parent | 6425e22b7b2564aacbf2900bc49405df8f170949 (diff) | |
parent | 0fa8e9ee27db12b75ce059f30a011de44966454f (diff) | |
download | FreeBSD-src-cf995996ab105668883720bd5e270c8494278403.zip FreeBSD-src-cf995996ab105668883720bd5e270c8494278403.tar.gz |
Update xz to git snapshot of v5.0 branch as of 20110711 (post-5.0.3)
For architectures with __NO_STRICT_ALIGNMENT
define TUKLIB_FAST_UNALIGNED_ACCESS
MFC after: 2 weeks
Diffstat (limited to 'lib/liblzma')
-rw-r--r-- | lib/liblzma/config.h | 10 |
1 files changed, 7 insertions, 3 deletions
diff --git a/lib/liblzma/config.h b/lib/liblzma/config.h index 374762c..9d97247 100644 --- a/lib/liblzma/config.h +++ b/lib/liblzma/config.h @@ -59,10 +59,10 @@ #define PACKAGE "xz" #define PACKAGE_BUGREPORT "lasse.collin@tukaani.org" #define PACKAGE_NAME "XZ Utils" -#define PACKAGE_STRING "XZ Utils 5.0.0" +#define PACKAGE_STRING "XZ Utils 5.0.3" #define PACKAGE_TARNAME "xz" #define PACKAGE_URL "http://tukaani.org/xz/" -#define PACKAGE_VERSION "5.0.0" +#define PACKAGE_VERSION "5.0.3" #define SIZEOF_SIZE_T 8 #define STDC_HEADERS 1 #define TUKLIB_CPUCORES_SYSCTL 1 @@ -82,8 +82,12 @@ #ifndef __EXTENSIONS__ # define __EXTENSIONS__ 1 #endif -#define VERSION "5.0.0" +#define VERSION "5.0.3" #if defined(__FreeBSD__) +#include <sys/_types.h> +#if defined(__NO_STRICT_ALIGNMENT) +#define TUKLIB_FAST_UNALIGNED_ACCESS 1 +#endif #include <machine/endian.h> #if _BYTE_ORDER == _BIG_ENDIAN # define WORDS_BIGENDIAN 1 |