Commit a3f42116 authored by Alexandre Julliard's avatar Alexandre Julliard

winebuild: Add Solaris as a separate platform.

parent 60a1e20b
...@@ -116,7 +116,7 @@ enum target_cpu ...@@ -116,7 +116,7 @@ enum target_cpu
enum target_platform enum target_platform
{ {
PLATFORM_UNSPECIFIED, PLATFORM_APPLE, PLATFORM_WINDOWS PLATFORM_UNSPECIFIED, PLATFORM_APPLE, PLATFORM_SOLARIS, PLATFORM_WINDOWS
}; };
extern enum target_cpu target_cpu; extern enum target_cpu target_cpu;
......
...@@ -65,6 +65,8 @@ enum target_cpu target_cpu = CPU_POWERPC; ...@@ -65,6 +65,8 @@ enum target_cpu target_cpu = CPU_POWERPC;
#ifdef __APPLE__ #ifdef __APPLE__
enum target_platform target_platform = PLATFORM_APPLE; enum target_platform target_platform = PLATFORM_APPLE;
#elif defined(__sun)
enum target_platform target_platform = PLATFORM_SOLARIS;
#elif defined(_WINDOWS) #elif defined(_WINDOWS)
enum target_platform target_platform = PLATFORM_WINDOWS; enum target_platform target_platform = PLATFORM_WINDOWS;
#else #else
...@@ -124,6 +126,7 @@ static const struct ...@@ -124,6 +126,7 @@ static const struct
{ {
{ "macos", PLATFORM_APPLE }, { "macos", PLATFORM_APPLE },
{ "darwin", PLATFORM_APPLE }, { "darwin", PLATFORM_APPLE },
{ "solaris", PLATFORM_SOLARIS },
{ "windows", PLATFORM_WINDOWS }, { "windows", PLATFORM_WINDOWS },
{ "winnt", PLATFORM_WINDOWS } { "winnt", PLATFORM_WINDOWS }
}; };
......
Markdown is supported
0% or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment