diff options
author | Andy Polyakov <appro@openssl.org> | 2005-05-21 15:19:27 +0200 |
---|---|---|
committer | Andy Polyakov <appro@openssl.org> | 2005-05-21 15:19:27 +0200 |
commit | e476f9421288aedee52a65ec813c7683ff0ccf5f (patch) | |
tree | 05d8d5a11805f4e738d4eaf15d025dda2860024a /util/pl/VC-32.pl | |
parent | fix typo, add prototype (diff) | |
download | openssl-e476f9421288aedee52a65ec813c7683ff0ccf5f.tar.xz openssl-e476f9421288aedee52a65ec813c7683ff0ccf5f.zip |
Move _WIN32_WINNT definition from command line to e_os.h. The change is
inspired by VC6 failure report. In addition abstain from taking screen
snapshots when running in NT service context.
Diffstat (limited to '')
-rw-r--r-- | util/pl/VC-32.pl | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/pl/VC-32.pl b/util/pl/VC-32.pl index 5888dcbfef..710c4cd129 100644 --- a/util/pl/VC-32.pl +++ b/util/pl/VC-32.pl @@ -11,7 +11,7 @@ $rm='del'; # C compiler stuff $cc='cl'; -$cflags=' /MD /W3 /WX /G5 /Ox /O2 /Ob2 /Gs0 /GF /Gy /nologo -DOPENSSL_SYSNAME_WIN32 -DWIN32_LEAN_AND_MEAN -D_WIN32_WINNT=0x0333 -DL_ENDIAN -DDSO_WIN32'; +$cflags=' /MD /W3 /WX /G5 /Ox /O2 /Ob2 /Gs0 /GF /Gy /nologo -DOPENSSL_SYSNAME_WIN32 -DWIN32_LEAN_AND_MEAN -DL_ENDIAN -DDSO_WIN32'; $lflags="/nologo /subsystem:console /machine:I386 /opt:ref"; $mlflags=''; |