diff options
author | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2020-01-12 09:08:07 +0000 |
---|---|---|
committer | A. Wilcox <AWilcox@Wilcox-Tech.com> | 2020-01-12 09:08:07 +0000 |
commit | e43c6ac7e6a5d054e6bbd47650f4b2531df91017 (patch) | |
tree | 15ef27c72b46256c95aca12b49ca10e3b117ee26 /user/ode/stdint.patch | |
parent | a659f1f6d9acf841ab364e2b031a56dc1b630698 (diff) | |
download | packages-e43c6ac7e6a5d054e6bbd47650f4b2531df91017.tar.gz packages-e43c6ac7e6a5d054e6bbd47650f4b2531df91017.tar.bz2 packages-e43c6ac7e6a5d054e6bbd47650f4b2531df91017.tar.xz packages-e43c6ac7e6a5d054e6bbd47650f4b2531df91017.zip |
user/*: Modernise / fix syntax / deps / code
Diffstat (limited to 'user/ode/stdint.patch')
-rw-r--r-- | user/ode/stdint.patch | 44 |
1 files changed, 44 insertions, 0 deletions
diff --git a/user/ode/stdint.patch b/user/ode/stdint.patch new file mode 100644 index 000000000..f3674335e --- /dev/null +++ b/user/ode/stdint.patch @@ -0,0 +1,44 @@ +--- ode-0.16/include/ode/odeconfig.h.old 2018-12-09 20:04:03.000000000 +0000 ++++ ode-0.16/include/ode/odeconfig.h 2020-01-12 08:36:16.664428956 +0000 +@@ -32,6 +32,7 @@ + #include <math.h> + #include <string.h> + #include <float.h> ++#include <stdint.h> + + + #include <ode/precision.h> +@@ -128,20 +129,20 @@ + typedef __int64 dint64; + typedef unsigned __int64 duint64; + #else +- typedef long long dint64; +- typedef unsigned long long duint64; ++ typedef int64_t dint64; ++ typedef uint64_t duint64; + #endif +- typedef int dint32; +- typedef unsigned int duint32; +- typedef short dint16; +- typedef unsigned short duint16; +- typedef signed char dint8; +- typedef unsigned char duint8; +- +- typedef dint32 dintptr; +- typedef duint32 duintptr; +- typedef dint32 ddiffint; +- typedef duint32 dsizeint; ++ typedef int32_t dint32; ++ typedef uint32_t duint32; ++ typedef int16_t dint16; ++ typedef uint16_t duint16; ++ typedef int8_t dint8; ++ typedef uint8_t duint8; ++ ++ typedef intptr_t dintptr; ++ typedef uintptr_t duintptr; ++ typedef ptrdiff_t ddiffint; ++ typedef size_t dsizeint; + + #endif + |