diff options
Diffstat (limited to 'include/config.h.in')
| -rw-r--r-- | include/config.h.in | 8 | 
1 files changed, 6 insertions, 2 deletions
| diff --git a/include/config.h.in b/include/config.h.in index 460ac04..fe6beb2 100644 --- a/include/config.h.in +++ b/include/config.h.in @@ -8,12 +8,14 @@  #elif defined(__linux__)  #define OMC_OS_LINUX +#include "os_linux.h"  #elif defined(unix) || defined(__unix__) || defined(__unix)  #define OMC_OS_UNIX -#elif defined(__APPLE__) && defined(__MACH__) +#elif defined(__APPLE__)  #define OMC_OS_DARWIN +#include "os_darwin.h"  #else  #define OMC_OS_UNKNOWN @@ -21,4 +23,6 @@  #endif // OS detection -#endif // OMC_CONFIG_H
\ No newline at end of file + + +#endif // OMC_CONFIG_H | 
