From 8f98be7db303bc3db650054efb86843c70114451 Mon Sep 17 00:00:00 2001 From: Eric Anholt Date: Thu, 24 May 2007 11:00:04 -0700 Subject: [PATCH] Fix bswap detection on BSD (mis-added '_' in function names). --- configure.ac | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/configure.ac b/configure.ac index d7d00e267..37199cf26 100644 --- a/configure.ac +++ b/configure.ac @@ -123,19 +123,19 @@ b = __swap16(a); ], [SYS_ENDIAN__SWAP='yes'], [SYS_ENDIAN__SWAP='no']) AC_MSG_RESULT([$SYS_ENDIAN__SWAP]) - AC_MSG_CHECKING([for bswap_16 variant of byteswapping macros]) + AC_MSG_CHECKING([for bswap16 variant of byteswapping macros]) AC_LINK_IFELSE([AC_LANG_PROGRAM([ #include ], [ int a = 1, b; -b = bswap_16(a); +b = bswap16(a); ]) ], [SYS_ENDIAN_BSWAP='yes'], [SYS_ENDIAN_BSWAP='no']) AC_MSG_RESULT([$SYS_ENDIAN_BSWAP]) if test "$SYS_ENDIAN_BSWAP" = "yes" ; then USE_SYS_ENDIAN_H=yes - BSWAP=bswap_ + BSWAP=bswap else if test "$SYS_ENDIAN__SWAP" = "yes" ; then USE_SYS_ENDIAN_H=yes