At 01:38 AM 11/4/2002 +0100, Richard Levitte - VMS Whacker wrote:
Try the attached patch.

--
Richard Levitte   \ Spannvägen 38, II \ [EMAIL PROTECTED]
Redakteur@Stacken  \ S-168 35  BROMMA  \ T: +46-8-26 52 47
                    \      SWEDEN       \ or +46-708-26 53 44
Procurator Odiosus Ex Infernis                -- [EMAIL PROTECTED]
Member of the OpenSSL development team: http://www.openssl.org/

Unsolicited commercial email is subject to an archival fee of $400.
See <http://www.stacken.kth.se/~levitte/mail/> for more info.
Index: util/pl/BC-32.pl
===================================================================
RCS file: /e/openssl/cvs/openssl/util/pl/BC-32.pl,v
retrieving revision 1.9.2.1
diff -u -u -r1.9.2.1 BC-32.pl
--- util/pl/BC-32.pl    2002/06/27 15:55:40     1.9.2.1
+++ util/pl/BC-32.pl    2002/11/04 00:37:58
@@ -52,9 +52,9 @@
 $shlib_ex_obj="";
 $app_ex_obj="c0x32.obj";

-$asm='n_o_T_a_s_m';
+$asm='nasmw';
 $asm.=" /Zi" if $debug;
-$afile='/Fo';
+$afile='-f obj -o';

 $bn_mulw_obj='';
 $bn_mulw_src='';
The above works but the following might be slightly better only because the "-f obj"
designation goes with the nasmw compiler option as opposed to being part of the
object file designation. And maybe for consistency with how the VC-32.pl file seems
to have it.

$shlib_ex_obj="";
$app_ex_obj="c0x32.obj";

-$asm='nasmw';
+$asm='nasmw -f obj';
$asm.=" /Zi" if $debug;
-$afile='-f obj -o';
+$afile='-o ';

$bn_mulw_obj='';
$bn_mulw_src='';

The patch for the second file works fine. Thanks for the quick work.

Cheers,
Keary Phillips

______________________________________________________________________
OpenSSL Project http://www.openssl.org
User Support Mailing List [EMAIL PROTECTED]
Automated List Manager [EMAIL PROTECTED]

Reply via email to