Welcome to mirror list, hosted at ThFree Co, Russian Federation.

github.com/openssl/openssl.git - Unnamed repository; edit this file 'description' to name the repository.
summaryrefslogtreecommitdiff
path: root/util
diff options
context:
space:
mode:
authorRichard Levitte <levitte@openssl.org>2002-11-16 01:44:08 +0300
committerRichard Levitte <levitte@openssl.org>2002-11-16 01:44:08 +0300
commit29ca164513f243025ccbc11bade8bfee5b49a543 (patch)
treeb2eea1d839fcb69274ab57b0c371d46e6a399d28 /util
parent97d58eadbf2f05f86451da9a384a82dd73b97dce (diff)
WinCE patches
Diffstat (limited to 'util')
-rwxr-xr-xutil/mk1mf.pl5
1 files changed, 5 insertions, 0 deletions
diff --git a/util/mk1mf.pl b/util/mk1mf.pl
index c9271bbffe..cc65f25d4f 100755
--- a/util/mk1mf.pl
+++ b/util/mk1mf.pl
@@ -24,6 +24,7 @@ $infile="MINFO";
%ops=(
"VC-WIN32", "Microsoft Visual C++ [4-6] - Windows NT or 9X",
+ "VC-CE", "Microsoft eMbedded Visual C++ 3.0 - Windows CE ONLY",
"VC-NT", "Microsoft Visual C++ [4-6] - Windows NT ONLY",
"VC-W31-16", "Microsoft Visual C++ 1.52 - Windows 3.1 - 286",
"VC-WIN16", "Alias for VC-W31-32",
@@ -137,6 +138,10 @@ elsif (($platform eq "VC-WIN32") || ($platform eq "VC-NT"))
$NT = 1 if $platform eq "VC-NT";
require 'VC-32.pl';
}
+elsif ($platform eq "VC-CE")
+ {
+ require 'VC-CE.pl';
+ }
elsif ($platform eq "Mingw32")
{
require 'Mingw32.pl';