Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
T
TLMSP OpenSSL
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Snippets
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Container Registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
CYBER - Cyber Security
TS 103 523 MSP
TLMSP
TLMSP OpenSSL
Commits
b7cc9dff
Commit
b7cc9dff
authored
17 years ago
by
Andy Polyakov
Browse files
Options
Downloads
Patches
Plain Diff
Addendum to commit #16651.
parent
e1b81fed
No related branches found
No related tags found
No related merge requests found
Changes
2
Hide whitespace changes
Inline
Side-by-side
Showing
2 changed files
e_os.h
+8
-0
8 additions, 0 deletions
e_os.h
util/pl/VC-32.pl
+4
-3
4 additions, 3 deletions
util/pl/VC-32.pl
with
12 additions
and
3 deletions
e_os.h
+
8
−
0
View file @
b7cc9dff
...
...
@@ -293,6 +293,14 @@ static unsigned int _strlen31(const char *str)
}
# endif
# include <malloc.h>
# if defined(_MSC_VER) && _MSC_VER<=1200 && defined(_MT) && defined(isspace)
/* compensate for bug is VC6 ctype.h */
# undef isspace
# undef isdigit
# undef isalnum
# undef isupper
# undef isxdigit
# endif
# endif
# include <io.h>
# include <fcntl.h>
...
...
This diff is collapsed.
Click to expand it.
util/pl/VC-32.pl
+
4
−
3
View file @
b7cc9dff
...
...
@@ -31,7 +31,8 @@ if ($FLAVOR =~ /WIN64/)
$base_cflags
=
'
/W3 /Gs0 /GF /Gy /nologo -DWIN32_LEAN_AND_MEAN -DL_ENDIAN -DDSO_WIN32 -DOPENSSL_SYSNAME_WIN32 -DOPENSSL_SYSNAME_WINNT -DUNICODE -D_UNICODE
';
$base_cflags
.=
'
-D_CRT_SECURE_NO_DEPRECATE
';
# shut up VC8
$base_cflags
.=
'
-D_CRT_NONSTDC_NO_DEPRECATE
';
# shut up VC8
my
$f
=
$shlib
?'
/MD
':'
/Zl /MT
';
my
$f
=
$shlib
?'
/MD
':'
/MT
';
$lib_cflag
=
'
/Zl
'
if
(
!
$shlib
);
# remove /DEFAULTLIBs from static lib
$opt_cflags
=
$f
.
'
/Ox
';
$dbg_cflags
=
$f
.
'
d /Od -DDEBUG -D_DEBUG
';
$lflags
=
"
/nologo /subsystem:console /opt:ref
";
...
...
@@ -97,7 +98,8 @@ else # Win32
$base_cflags
=
'
/W3 /WX /Gs0 /GF /Gy /nologo -DOPENSSL_SYSNAME_WIN32 -DWIN32_LEAN_AND_MEAN -DL_ENDIAN -DDSO_WIN32
';
$base_cflags
.=
'
-D_CRT_SECURE_NO_DEPRECATE
';
# shut up VC8
$base_cflags
.=
'
-D_CRT_NONSTDC_NO_DEPRECATE
';
# shut up VC8
my
$f
=
$shlib
?'
/MD
':'
/Zl /MT
';
my
$f
=
$shlib
?'
/MD
':'
/MT
';
$lib_cflag
=
'
/Zl
'
if
(
!
$shlib
);
# remove /DEFAULTLIBs from static lib
$opt_cflags
=
$f
.
'
/Ox /O2 /Ob2
';
$dbg_cflags
=
$f
.
'
d /Od -DDEBUG -D_DEBUG
';
$lflags
=
"
/nologo /subsystem:console /opt:ref
";
...
...
@@ -206,7 +208,6 @@ if (!$no_asm)
if
(
$shlib
&&
$FLAVOR
!~
/CE/
)
{
$mlflags
.=
"
$lflags
/dll
";
# $cflags =~ s| /MD| /MT|;
$lib_cflag
=
"
-D_WINDLL
";
$out_def
=
"
out32dll
";
$tmp_def
=
"
tmp32dll
";
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment