Skip to content
Projects
Groups
Snippets
Help
This project
Loading...
Sign in / Register
Toggle navigation
W
wine-winehq
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-winehq
Commits
d03f4d2a
Commit
d03f4d2a
authored
Apr 06, 2008
by
Reece Dunn
Committed by
Alexandre Julliard
Apr 07, 2008
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
tools/msvcmaker: Suppress deprecation warnings on VC8 and above.
parent
1bf824e0
Hide whitespace changes
Inline
Side-by-side
Showing
1 changed file
with
5 additions
and
5 deletions
+5
-5
msvcmaker
tools/winapi/msvcmaker
+5
-5
No files found.
tools/winapi/msvcmaker
View file @
d03f4d2a
...
...
@@ -603,22 +603,22 @@ sub _generate_dsp($$) {
print
OUT
" /c"
;
print
OUT
"\r\n"
;
my
@defines2
;
my
@defines2
=
qw(_CRT_SECURE_NO_DEPRECATE _CRT_NONSTDC_NO_DEPRECATE)
;
if
(
$debug
)
{
if
(
$lib
)
{
print
OUT
"# ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od"
;
@defines2
=
qw(WINVER=0x0600 _WIN32_WINNT=0x0600 _WIN32_IE=0x0700 WIN32 _DEBUG _WINDOWS _MBCS _LIB)
;
push
@defines2
,
qw(WINVER=0x0600 _WIN32_WINNT=0x0600 _WIN32_IE=0x0700 WIN32 _DEBUG _WINDOWS _MBCS _LIB)
;
}
else
{
print
OUT
"# ADD CPP /nologo /MDd /W3 /Gm /GX /Zi /Od"
;
@defines2
=
qw(WINVER=0x0600 _WIN32_WINNT=0x0600 _WIN32_IE=0x700 _DEBUG WIN32 _WINDOWS _MBCS _USRDLL)
;
push
@defines2
,
qw(WINVER=0x0600 _WIN32_WINNT=0x0600 _WIN32_IE=0x700 _DEBUG WIN32 _WINDOWS _MBCS _USRDLL)
;
}
}
else
{
if
(
$lib
)
{
print
OUT
"# ADD CPP /nologo /MD /W3 /GX /O2"
;
@defines2
=
qw(WINVER=0x0600 _WIN32_WINNT=0x0600 _WIN32_IE=0x0700 WIN32 NDEBUG _WINDOWS _MBCS _LIB)
;
push
@defines2
,
qw(WINVER=0x0600 _WIN32_WINNT=0x0600 _WIN32_IE=0x0700 WIN32 NDEBUG _WINDOWS _MBCS _LIB)
;
}
else
{
print
OUT
"# ADD CPP /nologo /MD /W3 /GX /O2"
;
@defines2
=
qw(WINVER=0x0600 _WIN32_WINNT=0x0600 _WIN32_IE=0x0700 NDEBUG WIN32 _WINDOWS _MBCS _USRDLL)
;
push
@defines2
,
qw(WINVER=0x0600 _WIN32_WINNT=0x0600 _WIN32_IE=0x0700 NDEBUG WIN32 _WINDOWS _MBCS _USRDLL)
;
}
}
...
...
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