1
0
mirror of https://github.com/simh/simh.git synced 2026-01-25 19:56:25 +00:00

Added support for building on Solaris with the Sun C compiler

This commit is contained in:
Mark Pizzolato
2013-03-17 16:50:57 -07:00
parent 97bbd34828
commit 0605b6dff4
7 changed files with 17 additions and 9 deletions

View File

@@ -82,7 +82,7 @@
#define DONT_USE_READER_THREAD
#endif
#if (((defined(__sun__) && defined(__i386__)) || defined(__linux)) && !defined(DONT_USE_READER_THREAD))
#if ((((defined(__sun) || defined(__sun__)) && defined(__i386__)) || defined(__linux)) && !defined(DONT_USE_READER_THREAD))
#define USE_READER_THREAD 1
#endif