jconfig.h 964 B

123456789101112131415161718192021222324252627282930313233343536373839
  1. //--------------------------------------------------------------------------
  2. //
  3. //
  4. //
  5. //--------------------------------------------------------------------------
  6. #ifndef _H_JCONFIG_
  7. #define _H_JCONFIG_
  8. #if (defined(__MWERKS__) && !defined(macintosh))
  9. #include "jconfig.cw.win.h"
  10. #define JCONFIG_INCLUDED
  11. #endif
  12. #if (defined(__MWERKS__) && defined(macintosh)) || defined(__APPLE__)
  13. #include "jconfig.cw.mac.h"
  14. #define JCONFIG_INCLUDED
  15. #endif
  16. #if (defined(_MSC_VER) && !defined(__MWERKS__) && !defined(macintosh))
  17. #include "jconfig.vc.win.h"
  18. #define JCONFIG_INCLUDED
  19. #endif
  20. #if (( __GNUC__ >= 2 ) && (defined (__CYGWIN32__) || defined (__linux__) || defined(__OpenBSD__) || defined(__FreeBSD__) || defined(__WIN32__) || defined(SN_TARGET_PS3)) )
  21. #include "jconfig.gcc.linux.h"
  22. #define JCONFIG_INCLUDED
  23. #endif
  24. #ifndef JCONFIG_INCLUDED
  25. #error No jconfig.h file was included!
  26. #endif
  27. #undef JCONFIG_INCLUDED
  28. #endif // _H_JCONFIG_