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

« back to all changes in this revision

Viewing changes to util/pl/BC-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:
64
64
 
65
65
$asm='bcc -c -B -Tml';
66
66
$afile='/o';
67
 
if ($no_asm)
 
67
if ($no_asm || $fips)
68
68
        {
69
69
        $bn_asm_obj='';
70
70
        $bn_asm_src='';
119
119
 
120
120
sub do_link_rule
121
121
        {
122
 
        local($target,$files,$dep_libs,$libs)=@_;
 
122
        local($target,$files,$dep_libs,$libs,$sha1file,$openssl)=@_;
123
123
        local($ret,$f,$_,@f);
124
 
        
 
124
 
125
125
        $file =~ s/\//$o/g if $o ne '/';
126
 
        $n=&bname($targer);
 
126
        $n=&bname($target);
127
127
        $ret.="$target: $files $dep_libs\n";
128
128
        $ret.="  \$(LINK) @&&|";
129
129
        
139
139
                }
140
140
        else
141
141
                { $ret.="\n $r \$(APP_EX_OBJ) $files\n"; }
142
 
        $ret.="  $target\n\n  $libs\n\n|\n\n";
 
142
        $ret.="  $target\n\n  $libs\n\n|\n";
 
143
        if (defined $sha1file)
 
144
                {
 
145
                $ret.="  $openssl sha1 -hmac etaonrishdlcupfm -binary $target > $sha1file";
 
146
                }
 
147
        $ret.="\n";
143
148
        return($ret);
144
149
        }
145
150