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

« back to all changes in this revision

Viewing changes to util/pl/BC-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:
62
62
$bf_enc_obj='';
63
63
$bf_enc_src='';
64
64
 
65
 
if (!$no_asm)
 
65
if (!$no_asm && !$fips)
66
66
        {
67
67
        $bn_mulw_obj='crypto\bn\asm\bn_win32.obj';
68
68
        $bn_mulw_src='crypto\bn\asm\bn_win32.asm';
122
122
 
123
123
sub do_link_rule
124
124
        {
125
 
        local($target,$files,$dep_libs,$libs)=@_;
 
125
        local($target,$files,$dep_libs,$libs,$sha1file,$openssl)=@_;
126
126
        local($ret,$_);
127
 
        
 
127
 
128
128
        $file =~ s/\//$o/g if $o ne '/';
129
129
        $n=&bname($targer);
130
130
        $ret.="$target: $files $dep_libs\n";
131
 
        $ret.="\t\$(LINK) \$(LFLAGS) $files \$(APP_EX_OBJ), $target,, $libs\n\n";
 
131
        $ret.="\t\$(LINK) \$(LFLAGS) $files \$(APP_EX_OBJ), $target,, $libs\n";
 
132
        if (defined $sha1file)
 
133
                {
 
134
                $ret.="\t$openssl sha1 -hmac etaonrishdlcupfm -binary $target > $sha1file";
 
135
                }
 
136
        $ret.="\n";
132
137
        return($ret);
133
138
        }
134
139