Actually check if stdbool.h exists when BOOTSTRAPPING.

This commit is contained in:
Ruslan Ermilov 2002-11-13 13:47:48 +00:00
parent 26ffc9613f
commit b448dd2f9e
2 changed files with 2 additions and 2 deletions

View File

@ -25,7 +25,7 @@ BROKEN_LINKER= 0
BUILTIN_BOOL= 1
BOOL_TYPE= 0
HAVE_VSSCANF= 1
.if defined(BOOTSTRAPPING)
.if defined(BOOTSTRAPPING) && !exists(/usr/include/stdbool.h)
HEADER_STDBOOL= 0
.else
HEADER_STDBOOL= 1

View File

@ -25,7 +25,7 @@ BROKEN_LINKER= 0
BUILTIN_BOOL= 1
BOOL_TYPE= 0
HAVE_VSSCANF= 1
.if defined(BOOTSTRAPPING)
.if defined(BOOTSTRAPPING) && !exists(/usr/include/stdbool.h)
HEADER_STDBOOL= 0
.else
HEADER_STDBOOL= 1