aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authordec05eba <dec05eba@protonmail.com>2018-10-30 11:58:32 +0100
committerdec05eba <dec05eba@protonmail.com>2020-08-18 22:56:48 +0200
commita684368d5545488602a29fa2122a22398f650f7f (patch)
tree6dcf2c488410584d2c82b4dd63ea978c0b1c5988
parent0b8f250676a3eec8f9ed8e46f56962ba1324c7f9 (diff)
Fix for emscripten and other platforms
-rw-r--r--include/env.hpp28
1 files changed, 0 insertions, 28 deletions
diff --git a/include/env.hpp b/include/env.hpp
index 57ae068..1e10280 100644
--- a/include/env.hpp
+++ b/include/env.hpp
@@ -3,9 +3,6 @@
#define OS_FAMILY_WINDOWS 0
#define OS_FAMILY_POSIX 1
-#define OS_TYPE_WINDOWS 0
-#define OS_TYPE_LINUX 1
-
#if defined(_WIN32) || defined(_WIN64)
#if defined(_WIN64)
#define SYS_ENV_64BIT
@@ -13,7 +10,6 @@
#define SYS_ENV_32BIT
#endif
#define OS_FAMILY OS_FAMILY_WINDOWS
- #define OS_TYPE OS_TYPE_WINDOWS
#ifndef UNICODE
#define UNICODE
@@ -33,27 +29,3 @@
#if defined(__linux__) || defined(__unix__) || defined(__APPLE__) || defined(_POSIX_VERSION)
#define OS_FAMILY OS_FAMILY_POSIX
#endif
-
-#ifdef __linux__
- #define OS_TYPE OS_TYPE_LINUX
-#endif
-
-#if defined(__GNUC__)
- #if defined(__x86_64__) || defined(__pc64__)
- #define SYS_ENV_64BIT
- #else
- #define SYS_ENV_32BIT
- #endif
-#endif
-
-#if !defined(SYS_ENV_32BIT) && !defined(SYS_ENV_64BIT)
- #error "System is not detected as either 32-bit or 64-bit"
-#endif
-
-#if !defined(OS_FAMILY)
- #error "System not supported. Only Windows and Posix systems supported right now"
-#endif
-
-#if !defined(OS_TYPE)
- #error "System not supported. Only Windows and linux systems supported right now"
-#endif