Hello all,

I found that mk1mf.pl in OpenSSL-0.9.8 doesn't generate a correct
makefile for Windows CE. It uses VC-32.pl instead of VC-CE.pl.

Here is a patch to fix this problem.

Although there still are some problems to be solved to compile, it is a
good starting point, I think.

-- 
Satoshi Nakamura <[EMAIL PROTECTED]>


--- openssl-0.9.8.orig/util/mk1mf.pl    2005-07-05 08:24:12.000000000 +0900
+++ openssl-0.9.8/util/mk1mf.pl 2005-07-24 15:53:31.761420800 +0900
@@ -122,16 +122,16 @@
 $NT=0;
 
 push(@INC,"util/pl","pl");
-if (($platform =~ /VC-(.+)/))
+if ($platform eq "VC-CE")
+       {
+       require 'VC-CE.pl';
+       }
+elsif (($platform =~ /VC-(.+)/))
        {
        $FLAVOR=$1;
        $NT = 1 if $1 eq "NT";
        require 'VC-32.pl';
        }
-elsif ($platform eq "VC-CE")
-       {
-       require 'VC-CE.pl';
-       }
 elsif ($platform eq "Mingw32")
        {
        require 'Mingw32.pl';
______________________________________________________________________
OpenSSL Project                                 http://www.openssl.org
Development Mailing List                       openssl-dev@openssl.org
Automated List Manager                           [EMAIL PROTECTED]

Reply via email to