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
d222e8ed
Commit
d222e8ed
authored
Oct 05, 2009
by
Gerald Pfeifer
Committed by
Alexandre Julliard
Oct 05, 2009
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
winebuild: Add support for PLATFORM_FREEBSD.
parent
b16fc0e1
Show whitespace changes
Inline
Side-by-side
Showing
2 changed files
with
8 additions
and
1 deletion
+8
-1
build.h
tools/winebuild/build.h
+5
-1
main.c
tools/winebuild/main.c
+3
-0
No files found.
tools/winebuild/build.h
View file @
d222e8ed
...
...
@@ -124,7 +124,11 @@ enum target_cpu
enum
target_platform
{
PLATFORM_UNSPECIFIED
,
PLATFORM_APPLE
,
PLATFORM_SOLARIS
,
PLATFORM_WINDOWS
PLATFORM_UNSPECIFIED
,
PLATFORM_APPLE
,
PLATFORM_FREEBSD
,
PLATFORM_SOLARIS
,
PLATFORM_WINDOWS
};
extern
char
*
target_alias
;
...
...
tools/winebuild/main.c
View file @
d222e8ed
...
...
@@ -64,6 +64,8 @@ enum target_cpu target_cpu = CPU_POWERPC;
#ifdef __APPLE__
enum
target_platform
target_platform
=
PLATFORM_APPLE
;
#elif defined(__FreeBSD__)
enum
target_platform
target_platform
=
PLATFORM_FREEBSD
;
#elif defined(__sun)
enum
target_platform
target_platform
=
PLATFORM_SOLARIS
;
#elif defined(_WIN32)
...
...
@@ -111,6 +113,7 @@ static const struct
{
{
"macos"
,
PLATFORM_APPLE
},
{
"darwin"
,
PLATFORM_APPLE
},
{
"freebsd"
,
PLATFORM_FREEBSD
},
{
"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