Fixed USE_ definitions

This commit is contained in:
Pali Rohár 2011-03-26 23:32:47 +01:00
parent c9c69a0a7e
commit 5315f5694d
3 changed files with 22 additions and 8 deletions

View file

@ -412,7 +412,7 @@ if(APPLE)
endif()
if(BSD)
add_definitions(-DBSD)
add_definitions(-DUSE_BSD)
endif()
if(BEOS)

View file

@ -10,7 +10,7 @@
//
/**@name myendian.h - The endian-specific headerfile. */
//
// (c) Copyright 2000-2004 by Lutz Sammer
// (c) Copyright 2000-2011 by Lutz Sammer and Pali Rohár
//
// 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
@ -142,11 +142,11 @@ extern unsigned inline _FetchLE32(unsigned char **pp) {
----------------------------------------------------------------------------*/
#if !defined(__CYGWIN__) && !defined(__MINGW32__) && !defined(_MSC_VER)
#if defined(BSD)
#if defined(USE_BSD)
#include <sys/types.h>
#else
#include <endian.h>
#endif // BSD
#endif // USE_BSD
#if defined(__BYTE_ORDER) && __BYTE_ORDER == __BIG_ENDIAN
#include <byteswap.h>

View file

@ -782,14 +782,28 @@ int main(int argc, char **argv)
#ifdef USE_MNG
"MNG "
#endif
#ifdef USE_MAEMO
"MAEMO "
#ifdef USE_OPENGL
"OPENGL "
#endif
#ifdef USE_GLES
"GLES "
#endif
""
;
#ifdef USE_WIN32
"WIN32 "
#endif
#ifdef USE_BSD
"BSD "
#endif
#ifdef USE_BEOS
"BEOS "
#endif
#ifdef USE_MAC
"MAC "
#endif
#ifdef USE_MAEMO
"MAEMO "
#endif
"";
#ifdef USE_BEOS
//