mirror of
https://github.com/Shpoike/Quakespasm.git
synced 2024-11-10 15:31:39 +00:00
118 lines
2.9 KiB
C
118 lines
2.9 KiB
C
|
/*
|
||
|
arch_def.h
|
||
|
platform specific definitions
|
||
|
|
||
|
Copyright (C) 2007 O.Sezer <sezero@users.sourceforge.net>
|
||
|
|
||
|
This program is free software; you can redistribute it and/or
|
||
|
modify it under the terms of the GNU General Public License
|
||
|
as published by the Free Software Foundation; either version 2
|
||
|
of the License, or (at your option) any later version.
|
||
|
|
||
|
This program is distributed in the hope that it will be useful,
|
||
|
but WITHOUT ANY WARRANTY; without even the implied warranty of
|
||
|
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE.
|
||
|
|
||
|
See the GNU General Public License for more details.
|
||
|
|
||
|
You should have received a copy of the GNU General Public License
|
||
|
along with this program; if not, write to:
|
||
|
|
||
|
Free Software Foundation, Inc.
|
||
|
51 Franklin St, Fifth Floor,
|
||
|
Boston, MA 02110-1301 USA
|
||
|
*/
|
||
|
|
||
|
#ifndef __ARCH_DEFS__
|
||
|
#define __ARCH_DEFS__
|
||
|
|
||
|
|
||
|
#if defined(__APPLE__) && defined(__MACH__)
|
||
|
# if !defined(__MACOSX__)
|
||
|
# define __MACOSX__ 1
|
||
|
# endif
|
||
|
#elif defined(macintosh) /* MacOS Classic */
|
||
|
# if !defined(__MACOS__)
|
||
|
# define __MACOS__ 1
|
||
|
# endif
|
||
|
#elif (defined(__sun) || defined(sun)) && \
|
||
|
(defined(__svr4__) || defined(__SVR4))
|
||
|
# if !defined(__SOLARIS__)
|
||
|
# define __SOLARIS__ 1
|
||
|
# endif
|
||
|
#elif defined(__sun) || defined(sun)
|
||
|
# if !defined(__SUNOS__)
|
||
|
# define __SUNOS__ 1
|
||
|
# endif
|
||
|
#elif defined(__sgi) || defined(sgi) || defined(__sgi__) || defined(_SGI_SOURCE)
|
||
|
# if !defined(__IRIX__)
|
||
|
# define __IRIX__ 1
|
||
|
# endif
|
||
|
#elif defined(__QNXNTO__)
|
||
|
# if !defined(__QNX__)
|
||
|
# define __QNX__ 1
|
||
|
# endif
|
||
|
#elif defined(__amigados__) || defined(__amigaos4__) || \
|
||
|
defined(__AMIGA) || defined(__amigaos__)
|
||
|
# if !defined(__AMIGA__)
|
||
|
# define __AMIGA__ 1
|
||
|
# endif
|
||
|
#endif /* end of custom definitions */
|
||
|
|
||
|
|
||
|
#if defined(__DJGPP__) || defined(MSDOS) || defined(__MSDOS__) || defined(__DOS__)
|
||
|
|
||
|
# if !defined(PLATFORM_DOS)
|
||
|
# define PLATFORM_DOS 1
|
||
|
# endif
|
||
|
|
||
|
#elif defined(_WIN32) || defined(_WIN64)
|
||
|
|
||
|
# if !defined(PLATFORM_WINDOWS)
|
||
|
# define PLATFORM_WINDOWS 1
|
||
|
# endif
|
||
|
|
||
|
#elif defined(__MACOS__) || defined(__MACOSX__)
|
||
|
|
||
|
# if !defined(PLATFORM_MAC)
|
||
|
# define PLATFORM_MAC 1
|
||
|
# endif
|
||
|
|
||
|
#elif defined(__MORPHOS__) || defined(__AMIGA__)
|
||
|
|
||
|
# if !defined(PLATFORM_AMIGA)
|
||
|
# define PLATFORM_AMIGA 1
|
||
|
# endif
|
||
|
|
||
|
#else /* here goes the unix platforms */
|
||
|
|
||
|
#if defined(__unix) || defined(__unix__) || defined(unix) || \
|
||
|
defined(__linux__) || defined(__linux) || \
|
||
|
defined(__FreeBSD__) || defined(__DragonFly__) || \
|
||
|
defined(__OpenBSD__) || defined(__NetBSD__) || \
|
||
|
defined(__hpux) || defined(__hpux__) || defined(_hpux) || \
|
||
|
defined(__sun) || defined(sun) || defined(__IRIX__) || \
|
||
|
defined(__QNX__)
|
||
|
# if !defined(PLATFORM_UNIX)
|
||
|
# define PLATFORM_UNIX 1
|
||
|
# endif
|
||
|
#endif
|
||
|
|
||
|
#endif /* end of PLATFORM_ definitions */
|
||
|
|
||
|
|
||
|
/* Hack section: Platforms that are mostly fine when
|
||
|
* classified under PLATFORM_UNIX :
|
||
|
*/
|
||
|
#if defined(__MACOSX__)
|
||
|
|
||
|
# if !defined(PLATFORM_UNIX)
|
||
|
# define PLATFORM_UNIX 2
|
||
|
# endif
|
||
|
|
||
|
#endif /* end of PLATFORM_UNIX hacks */
|
||
|
|
||
|
|
||
|
#endif /* __ARCH_DEFS__ */
|
||
|
|