One more attempt at fixing the build bustage.

git-svn-id: svn://10.0.0.236/trunk@159095 18797224-902f-48f8-a5cc-f745e15eee43
This commit is contained in:
jst%mozilla.jstenback.com
2004-07-12 19:35:47 +00:00
parent 5bdf3ec315
commit 868d830e59

View File

@@ -47,11 +47,18 @@ typedef unsigned int uint32_t;
#else
#include <stdint.h>
#if !defined(__GNUC__) || (__GNUC__ > 2 && __GNUC_MINOR__ > 91)
#if !defined(__GNUC__) || (__GNUC__ > 2 || __GNUC_MINOR__ > 91)
#ifndef __cplusplus
#ifndef bool
typedef int bool;
#endif /* bool */
#endif /* __cplusplus */
#endif /* !defined(__GNUC__) || (__GNUC__ > 2 && __GNUC_MINOR__ > 96) */
#else
#define bool int
#endif
#endif