Fix unterminated #if (pointy hat to me ^^)

This commit is contained in:
rconty@il4p.fr 2011-10-17 15:18:06 +00:00
parent 21678c9260
commit a895841b09
2 changed files with 9 additions and 6 deletions

View File

@ -36,6 +36,8 @@ AC_CHECK_FUNCS([memset strchr])
AC_CHECK_HEADERS([endian.h sys/endian.h CoreFoundation/CoreFoundation.h])
AC_CHECK_HEADERS([byteswap.h])
AC_DEFINE([_XOPEN_SOURCE], [600], [Define to 500 if Single Unix conformance is wanted, 600 for sixth revision.])
# Help us to write great code ;-)
CFLAGS="$CFLAGS -Wall -pedantic -Wextra -std=c99"

View File

@ -149,6 +149,7 @@
# undef bswap_64
# define bswap_64 __builtin_bswap64
# endif
#endif
// Fallback...
#if !defined (bswap_16) || !defined (bswap_32) || !defined (bswap_64)