blob: 74e3f7773baa04851d311fe4e8c3cb5fede240f5 (
plain) (
tree)
|
|
--- torcs-1.3.7/src/linux/osspec.h.old 2003-03-23 19:43:13.000000000 +0000
+++ torcs-1.3.7/src/linux/osspec.h 2018-10-23 22:59:19.520000000 +0000
@@ -26,6 +26,10 @@
#define TRKEXT "xml"
#define PARAMEXT ".xml"
+#ifndef __GLIBC__
+typedef unsigned int uint;
+#endif
+
#endif /* __OSSPEC__H__ */
--- torcs-1.3.7/src/modules/simu/simuv2/SOLID-2.0/src/C-api.cpp.old 2012-05-31 23:44:35.000000000 +0000
+++ torcs-1.3.7/src/modules/simu/simuv2/SOLID-2.0/src/C-api.cpp 2018-10-23 23:04:24.590000000 +0000
@@ -59,7 +59,7 @@
typedef map<DtObjectRef, Object *> ObjectList;
typedef set<Encounter> ProxList;
-#ifdef WIN32
+#if defined(WIN32) || (defined(__linux__) && !defined(__GLIBC__))
#define uint unsigned int
#endif
|