diff -Naur ode-0.12/include/ode/odeconfig.h ode-0.12-haiku/include/ode/odeconfig.h
|
old
|
new
|
|
| 1 | 1 | #ifndef ODECONFIG_H |
| 2 | 2 | #define ODECONFIG_H |
| | 3 | #endif |
| 3 | 4 | |
| 4 | 5 | /* Pull in the standard headers */ |
| 5 | 6 | #include <stddef.h> |
| … |
… |
|
| 11 | 12 | #include <string.h> |
| 12 | 13 | #include <float.h> |
| 13 | 14 | |
| | 15 | #ifndef ODE_API |
| | 16 | #define ODE_API |
| 14 | 17 | |
| 15 | 18 | #if defined(ODE_DLL) || defined(ODE_LIB) |
| 16 | 19 | #define __ODE__ |
| … |
… |
|
| 25 | 28 | #endif |
| 26 | 29 | #endif |
| 27 | 30 | |
| 28 | | #if !defined(ODE_API) |
| 29 | | #define ODE_API |
| 30 | | #endif |
| 31 | | |
| 32 | 31 | #if defined(_MSC_VER) |
| 33 | 32 | # define ODE_API_DEPRECATED __declspec(deprecated) |
| 34 | 33 | #elif defined (__GNUC__) && ( (__GNUC__ > 3) || ((__GNUC__ == 3) && (__GNUC_MINOR__ >= 1)) ) |