summaryrefslogtreecommitdiff
path: root/src/interface
diff options
context:
space:
mode:
authorntoskrnl <ntoskrnl11@yahoo.com>2012-08-02 20:04:35 (GMT)
committer Simon Robertshaw <simon@hardwired.org.uk>2012-08-04 10:32:48 (GMT)
commitbaf07e470e50905148784eb6008cf69878440dfa (patch)
treefa0d35c746585bbd5a24a52a3fe7565aeaccb73e /src/interface
parentd6e384e1ecbe4b2610277f22ff30286a4620b990 (diff)
downloadpowder-baf07e470e50905148784eb6008cf69878440dfa.zip
powder-baf07e470e50905148784eb6008cf69878440dfa.tar.gz
Build fixes for FreeBSD
Diffstat (limited to 'src/interface')
-rw-r--r--src/interface/Platform.h37
1 files changed, 0 insertions, 37 deletions
diff --git a/src/interface/Platform.h b/src/interface/Platform.h
index f9119f1..5940303 100644
--- a/src/interface/Platform.h
+++ b/src/interface/Platform.h
@@ -1,43 +1,6 @@
#pragma once
typedef unsigned short Uint16;
-/* ***** Platform-ness ***** */
-
-#if defined(_WIN32) || defined(__WIN32__) || defined(WIN32_LEAN_AND_MEAN)
-# define IEF_PLATFORM_WIN32
-# ifndef WIN32_LEAN_AND_MEAN
-# define WIN32_LEAN_AND_MEAN
-# endif
-#elif defined(linux) || defined(_linux) || defined(__linux)
-# define IEF_PLATFORM_LINUX
-
-#elif defined(__APPLE__) || defined(MACOSX) || defined(macintosh) || defined(Macintosh)
-# define IEF_PLATFORM_MACOSX
-
-//#elif defined(__FreeBSD__) || define(__FreeBSD_kernel__)
-//# define IEF_PLATFORM_FREEBSD
-
-#else
-# error Operating System not supported.
-#endif
-
-
-/* ***** Endian-ness ***** */
-
-#if defined(__m68k__) || defined(mc68000) || defined(_M_M68K) || (defined(__MIPS__) && defined(__MISPEB__)) || defined(__ppc__) || defined(__POWERPC__) || defined(_M_PPC) || defined(__sparc__) || defined(__hppa__)
-# define IEF_ENDIAN_BIG
-
-#else
-# define IEF_ENDIAN_LITTLE
-#endif
-
-
-/* ***** Debug-ness ***** */
-
-#if !defined(NDEBUG) || defined(_DEBUG)
-# define IEF_DEBUG
-#endif
-
/* ***** Primitive Types ***** */