~ubuntu-branches/ubuntu/maverick/openssl/maverick

« back to all changes in this revision

Viewing changes to util/pl/VC-32.pl

  • Committer: Bazaar Package Importer
  • Author(s): Christoph Martin
  • Date: 2004-12-16 18:41:29 UTC
  • mto: (11.1.1 lenny)
  • mto: This revision was merged to the branch mainline in revision 3.
  • Revision ID: james.westby@ubuntu.com-20041216184129-z7xjkul57mh1jiha
Tags: upstream-0.9.7e
ImportĀ upstreamĀ versionĀ 0.9.7e

Show diffs side-by-side

added added

removed removed

Lines of Context:
47
47
$lfile='/out:';
48
48
 
49
49
$shlib_ex_obj="";
50
 
$app_ex_obj="setargv.obj";
 
50
$app_ex_obj="";
51
51
if ($nasm) {
52
52
        $asm='nasmw -f win32';
53
53
        $afile='-o ';
64
64
$bf_enc_obj='';
65
65
$bf_enc_src='';
66
66
 
67
 
if (!$no_asm)
 
67
if (!$no_asm && !$fips)
68
68
        {
69
69
        $bn_asm_obj='crypto\bn\asm\bn_win32.obj';
70
70
        $bn_asm_src='crypto\bn\asm\bn_win32.asm';
126
126
 
127
127
sub do_link_rule
128
128
        {
129
 
        local($target,$files,$dep_libs,$libs)=@_;
 
129
        local($target,$files,$dep_libs,$libs,$sha1file,$openssl)=@_;
130
130
        local($ret,$_);
131
131
        
132
132
        $file =~ s/\//$o/g if $o ne '/';
133
133
        $n=&bname($targer);
134
134
        $ret.="$target: $files $dep_libs\n";
135
135
        $ret.="  \$(LINK) \$(LFLAGS) $efile$target @<<\n";
136
 
        $ret.="  \$(APP_EX_OBJ) $files $libs\n<<\n\n";
 
136
        $ret.="  \$(APP_EX_OBJ) $files $libs\n<<\n";
 
137
        if (defined $sha1file)
 
138
                {
 
139
                $ret.="  $openssl sha1 -hmac etaonrishdlcupfm -binary $target > $sha1file";
 
140
                }
 
141
        $ret.="\n";
137
142
        return($ret);
138
143
        }
139
144