Gisle's OpenWacom 1.7 _Bool fix.

This commit is contained in:
Micah Cowan 2007-10-15 12:10:37 -07:00
parent 6a03aa891e
commit f9b8427e1f
2 changed files with 11 additions and 2 deletions

View File

@ -1,3 +1,7 @@
2007-10-15 Gisle Vanem <giva@bgnett.no>
* config-compiler.h: Adjust for OpenWacom 1.7's _Bool fix.
2007-10-05 Ralf Wildenhues <Ralf.Wildenhues@gmx.de>
* Makefile.in: Removed, replaced by Makefile.am.

View File

@ -205,8 +205,13 @@ so, delete this exception statement from your version. */
#define HAVE_STDINT_H 1
#define HAVE_INTTYPES_H 1
/* Watcom 1.6 do have <stdbool.h>, but definition of '_Bool' is missing! */
/* #define HAVE_STDBOOL_H 1 */
/* OpenWatcom 1.6 do have <stdbool.h>, but definition of '_Bool' is missing! */
/* This was fixed in OpenWatcom 1.7 */
#if __WATCOMC__ >= 1270
#define HAVE_STDBOOL_H 1
#define HAVE__BOOL 1
#endif
#define HAVE_STRTOLL 1
#define HAVE_UINT32_T 1
#undef HAVE_UTIME_H