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

« back to all changes in this revision

Viewing changes to util/pl/VC-16.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:
61
61
else
62
62
        { $mlflags=''; }
63
63
 
64
 
$app_ex_obj="setargv.obj";
 
64
$app_ex_obj="";
65
65
 
66
66
$obj='.obj';
67
67
$ofile="/Fo";
90
90
$bf_enc_obj='';
91
91
$bf_enc_src='';
92
92
 
93
 
if (!$no_asm)
 
93
if (!$no_asm && !$fips)
94
94
        {
95
95
        if ($asmbits == 32)
96
96
                {
147
147
 
148
148
sub do_link_rule
149
149
        {
150
 
        local($target,$files,$dep_libs,$libs)=@_;
 
150
        local($target,$files,$dep_libs,$libs,$sha1file,$openssl)=@_;
151
151
        local($ret,$f,$_,@f);
152
152
        
153
153
        $file =~ s/\//$o/g if $o ne '/';
165
165
                }
166
166
        else
167
167
                { $ret.="  \$(APP_EX_OBJ) $files"; }
168
 
        $ret.="\n  $target\n\n  $libs\n\n<<\n\n";
 
168
        $ret.="\n  $target\n\n  $libs\n\n<<\n";
 
169
        if (defined $sha1file)
 
170
                {
 
171
                $ret.="  $openssl sha1 -hmac etaonrishdlcupfm -binary $target > $sha1file";
 
172
                }
 
173
        $ret.="\n";
169
174
        return($ret);
170
175
        }
171
176