1 # Check for stdbool.h that conforms to C99.
3 # Copyright (C) 2002-2003 Free Software Foundation, Inc.
5 # This program is free software; you can redistribute it and/or modify
6 # it under the terms of the GNU General Public License as published by
7 # the Free Software Foundation; either version 2, or (at your option)
10 # This program is distributed in the hope that it will be useful,
11 # but WITHOUT ANY WARRANTY; without even the implied warranty of
12 # MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13 # GNU General Public License for more details.
15 # You should have received a copy of the GNU General Public License
16 # along with this program; if not, write to the Free Software
17 # Foundation, Inc., 59 Temple Place - Suite 330, Boston, MA
20 # Prepare for substituting <stdbool.h> if it is not supported.
22 AC_DEFUN([AM_STDBOOL_H],
24 AC_REQUIRE([AC_HEADER_STDBOOL])
26 # Define two additional variables used in the Makefile substitution.
28 if test "$ac_cv_header_stdbool_h" = yes; then
35 if test "$ac_cv_type__Bool" = yes; then
40 AC_SUBST([HAVE__BOOL])
43 # This macro is only needed in autoconf <= 2.54. Newer versions of autoconf
44 # have this macro built-in.
46 AC_DEFUN([AC_HEADER_STDBOOL],
47 [AC_CACHE_CHECK([for stdbool.h that conforms to C99],
48 [ac_cv_header_stdbool_h],
53 "error: bool is not defined"
56 "error: false is not defined"
59 "error: false is not 0"
62 "error: false is not defined"
65 "error: true is not 1"
67 #ifndef __bool_true_false_are_defined
68 "error: __bool_true_false_are_defined is not defined"
71 struct s { _Bool s: 1; _Bool t; } s;
73 char a[true == 1 ? 1 : -1];
74 char b[false == 0 ? 1 : -1];
75 char c[__bool_true_false_are_defined == 1 ? 1 : -1];
76 char d[(bool) -0.5 == true ? 1 : -1];
78 char f[(_Bool) -0.0 == false ? 1 : -1];
80 char h[sizeof (_Bool)];
83 [ return !a + !b + !c + !d + !e + !f + !g + !h + !i; ],
84 [ac_cv_header_stdbool_h=yes],
85 [ac_cv_header_stdbool_h=no])])
86 AC_CHECK_TYPES([_Bool])
87 if test $ac_cv_header_stdbool_h = yes; then
88 AC_DEFINE(HAVE_STDBOOL_H, 1, [Define to 1 if stdbool.h conforms to C99.])