summaryrefslogtreecommitdiff
path: root/m4
diff options
context:
space:
mode:
authorRalph Giles <giles@thaumas.net>2014-11-04 12:01:48 -0800
committerErik de Castro Lopo <erikd@mega-nerd.com>2014-11-04 21:18:48 -0800
commit69c2318b7b8afef5c207a600a68a4e251b4ef80d (patch)
tree353a13c23ddcf0943092ef76ecf89d6a36f204f4 /m4
parent87408b366149fc57a5271b884f1069576a6e2cb3 (diff)
downloadflac-69c2318b7b8afef5c207a600a68a4e251b4ef80d.tar.gz
Fix indenting on the bswap32 autoconf macro.
We generally prefer spaces to tabs. Signed-off-by: Erik de Castro Lopo <erikd@mega-nerd.com>
Diffstat (limited to 'm4')
-rw-r--r--m4/bswap.m424
1 files changed, 12 insertions, 12 deletions
diff --git a/m4/bswap.m4 b/m4/bswap.m4
index eec3ee15..e6793d69 100644
--- a/m4/bswap.m4
+++ b/m4/bswap.m4
@@ -37,21 +37,21 @@ dnl is likely to be present for most versions of GCC as well as Clang.
AC_DEFUN([XIPH_C_BSWAP32],
[AC_CACHE_CHECK(for bswap32 instrinsic,
- ac_cv_c_bswap32,
+ ac_cv_c_bswap32,
- # Initialize to no
- ac_cv_c_bswap32=no
- HAVE_BSWAP32=0
+ # Initialize to no
+ ac_cv_c_bswap32=no
+ HAVE_BSWAP32=0
- [AC_TRY_LINK([],
- return __builtin_bswap32 (0) ;,
- ac_cv_c_bswap32=yes
- HAVE_BSWAP32=1
- )]
- AC_DEFINE_UNQUOTED(HAVE_BSWAP32, ${HAVE_BSWAP32},
- [Compiler has the __builtin_bswap32 intrinsic])
+ [AC_TRY_LINK([],
+ return __builtin_bswap32 (0) ;,
+ ac_cv_c_bswap32=yes
+ HAVE_BSWAP32=1
+ )]
+ AC_DEFINE_UNQUOTED(HAVE_BSWAP32, ${HAVE_BSWAP32},
+ [Compiler has the __builtin_bswap32 intrinsic])
- )]
+ )]
)# XIPH_C_BSWAP32