From: Eric Blake Date: Wed, 19 Jan 2011 15:20:56 +0000 (-0700) Subject: stdbool-tests: accomodate Haiku X-Git-Tag: v0.1~3337 X-Git-Url: http://erislabs.org.uk/gitweb/?a=commitdiff_plain;h=2f3c99763b7a6aa0fefa9cbf22bd5f65991d2f12;p=gnulib.git stdbool-tests: accomodate Haiku * tests/test-stdbool.c: Haiku's gcc 2.95 lacks native _Bool. Signed-off-by: Eric Blake --- diff --git a/ChangeLog b/ChangeLog index 6cf52b793..a9f6fb1e4 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,8 @@ 2011-01-19 Eric Blake + stdbool-tests: accomodate Haiku + * tests/test-stdbool.c: Haiku's gcc 2.95 lacks native _Bool. + binary-io: fix O_TEXT on Haiku * modules/binary-io (Depends-on): Add fcntl-h. * lib/binary-io.h (O_TEXT): Rely on replacement rather diff --git a/tests/test-stdbool.c b/tests/test-stdbool.c index 12b4fe833..e115ba294 100644 --- a/tests/test-stdbool.c +++ b/tests/test-stdbool.c @@ -52,14 +52,14 @@ /* Several tests cannot be guaranteed with gnulib's , at least, not for all compilers and compiler options. */ -#if HAVE_STDBOOL_H || defined __GNUC__ +#if HAVE_STDBOOL_H || 3 <= __GNUC__ struct s { _Bool s: 1; _Bool t; } s; #endif char a[true == 1 ? 1 : -1]; char b[false == 0 ? 1 : -1]; char c[__bool_true_false_are_defined == 1 ? 1 : -1]; -#if HAVE_STDBOOL_H || defined __GNUC__ /* See above. */ +#if HAVE_STDBOOL_H || 3 <= __GNUC__ /* See above. */ char d[(bool) 0.5 == true ? 1 : -1]; # ifdef ADDRESS_CHECK_OKAY /* Avoid gcc warning. */ /* C99 may plausibly be interpreted as not requiring support for a cast from @@ -73,7 +73,7 @@ char f[(_Bool) 0.0 == false ? 1 : -1]; #endif char g[true]; char h[sizeof (_Bool)]; -#if HAVE_STDBOOL_H || defined __GNUC__ /* See above. */ +#if HAVE_STDBOOL_H || 3 <= __GNUC__ /* See above. */ char i[sizeof s.t]; #endif enum { j = false, k = true, l = false * true, m = true * 256 }; @@ -92,7 +92,7 @@ main () { int error = 0; -#if HAVE_STDBOOL_H || defined __GNUC__ /* See above. */ +#if HAVE_STDBOOL_H || 3 <= __GNUC__ /* See above. */ # ifdef ADDRESS_CHECK_OKAY /* Avoid gcc warning. */ /* A cast from a variable's address to bool is valid in expressions. */ {