Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-cw
Project
Project
Details
Activity
Cycle Analytics
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Charts
Issues
0
Issues
0
List
Board
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Charts
Registry
Registry
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Charts
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
wine
wine-cw
Commits
a3f42116
Commit
a3f42116
authored
Jul 22, 2008
by
Alexandre Julliard
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winebuild: Add Solaris as a separate platform.
parent
60a1e20b
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
4 additions
and
1 deletion
+4
-1
build.h
tools/winebuild/build.h
+1
-1
main.c
tools/winebuild/main.c
+3
-0
No files found.
tools/winebuild/build.h
View file @
a3f42116
...
...
@@ -116,7 +116,7 @@ enum target_cpu
enum
target_platform
{
PLATFORM_UNSPECIFIED
,
PLATFORM_APPLE
,
PLATFORM_WINDOWS
PLATFORM_UNSPECIFIED
,
PLATFORM_APPLE
,
PLATFORM_
SOLARIS
,
PLATFORM_
WINDOWS
};
extern
enum
target_cpu
target_cpu
;
...
...
tools/winebuild/main.c
View file @
a3f42116
...
...
@@ -65,6 +65,8 @@ enum target_cpu target_cpu = CPU_POWERPC;
#ifdef __APPLE__
enum
target_platform
target_platform
=
PLATFORM_APPLE
;
#elif defined(__sun)
enum
target_platform
target_platform
=
PLATFORM_SOLARIS
;
#elif defined(_WINDOWS)
enum
target_platform
target_platform
=
PLATFORM_WINDOWS
;
#else
...
...
@@ -124,6 +126,7 @@ static const struct
{
{
"macos"
,
PLATFORM_APPLE
},
{
"darwin"
,
PLATFORM_APPLE
},
{
"solaris"
,
PLATFORM_SOLARIS
},
{
"windows"
,
PLATFORM_WINDOWS
},
{
"winnt"
,
PLATFORM_WINDOWS
}
};
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment