Actually check if stdbool.h exists when BOOTSTRAPPING.

This commit is contained in:
ru 2002-11-13 13:47:48 +00:00
parent 239c92ba3c
commit 7f2358cbe3
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