# HG changeset patch # User diego # Date 1233354424 0 # Node ID 4e0196e827dba68f8ae6da34ba8fa28c9aae7d8f # Parent 255f4c172937694d1eeffd15a61cfc04ce8f4b13 HAVE_ARMV6 is defined to 0/1, use the preprocessor directive accordingly. diff -r 255f4c172937 -r 4e0196e827db liba52/bitstream.h --- a/liba52/bitstream.h Fri Jan 30 21:45:54 2009 +0000 +++ b/liba52/bitstream.h Fri Jan 30 22:27:04 2009 +0000 @@ -37,7 +37,7 @@ #define ALT_BITSTREAM_READER /* used to avoid misaligned exceptions on some archs (alpha, ...) */ -#if ARCH_X86 || defined(HAVE_ARMV6) +#if ARCH_X86 || HAVE_ARMV6 # define unaligned32(a) (*(uint32_t*)(a)) #else # ifdef __GNUC__