mirror of
https://github.com/moparisthebest/wget
synced 2024-07-03 16:38:41 -04:00
Gisle's OpenWacom 1.7 _Bool fix.
This commit is contained in:
parent
6a03aa891e
commit
f9b8427e1f
@ -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.
|
||||
|
@ -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
|
||||
|
Loading…
Reference in New Issue
Block a user