test/*.sh : Fix MALLOC_PERTURB initialization.
[platform/upstream/flac.git] / m4 / bswap.m4
1 dnl Copyright (C) 2012  Xiph.org Foundation
2 dnl
3 dnl Redistribution and use in source and binary forms, with or without
4 dnl modification, are permitted provided that the following conditions
5 dnl are met:
6 dnl
7 dnl - Redistributions of source code must retain the above copyright
8 dnl notice, this list of conditions and the following disclaimer.
9 dnl
10 dnl - Redistributions in binary form must reproduce the above copyright
11 dnl notice, this list of conditions and the following disclaimer in the
12 dnl documentation and/or other materials provided with the distribution.
13 dnl
14 dnl - Neither the name of the Xiph.org Foundation nor the names of its
15 dnl contributors may be used to endorse or promote products derived from
16 dnl this software without specific prior written permission.
17 dnl
18 dnl THIS SOFTWARE IS PROVIDED BY THE COPYRIGHT HOLDERS AND CONTRIBUTORS
19 dnl ``AS IS'' AND ANY EXPRESS OR IMPLIED WARRANTIES, INCLUDING, BUT NOT
20 dnl LIMITED TO, THE IMPLIED WARRANTIES OF MERCHANTABILITY AND FITNESS FOR
21 dnl A PARTICULAR PURPOSE ARE DISCLAIMED.  IN NO EVENT SHALL THE FOUNDATION OR
22 dnl CONTRIBUTORS BE LIABLE FOR ANY DIRECT, INDIRECT, INCIDENTAL, SPECIAL,
23 dnl EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT NOT LIMITED TO,
24 dnl PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE, DATA, OR
25 dnl PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY THEORY OF
26 dnl LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT (INCLUDING
27 dnl NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF THIS
28 dnl SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
29
30
31 dnl @synopsis XIPH_C_BSWAP32
32 dnl
33 dnl @author Erik de Castro Lopo <erikd@mega-nerd.com>
34 dnl
35 dnl Dtermine whether the compiler has the __builtin_bswap32() intrinsic which
36 dnl is likely to be present for most versions of GCC as well as Clang.
37
38 AC_DEFUN([XIPH_C_BSWAP32],
39 [AC_CACHE_CHECK(has bswap32 instrinsic,
40         ac_cv_c_bswap,
41
42         # Initialize to no
43         ac_cv_c_bswap=no
44         HAVE_BSWAP32=0
45
46         [AC_TRY_LINK([],
47                 return __builtin_bswap32 (0) ;,
48                         ac_cv_c_bswap=yes
49                         HAVE_BSWAP32=1
50                         )]
51         AC_DEFINE_UNQUOTED(HAVE_BSWAP32, ${HAVE_BSWAP32},
52                                         [Compiler has the __builtin_bswap32 intrinsic])
53
54         )]
55 )# XIPH_C_BSWAP32