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

« back to all changes in this revision

Viewing changes to util/pl/ultrix.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:
17
17
 
18
18
$cflags.=" -std1 -DL_ENDIAN";
19
19
 
20
 
if (!$no_asm)
 
20
if (!$no_asm && !$fips)
21
21
        {
22
22
        $bn_asm_obj='$(OBJ_D)/mips1.o';
23
23
        $bn_asm_src='crypto/bn/asm/mips1.s';
25
25
 
26
26
sub do_link_rule
27
27
        {
28
 
        local($target,$files,$dep_libs,$libs)=@_;
 
28
        local($target,$files,$dep_libs,$libs,$sha1file,$openssl)=@_;
29
29
        local($ret,$_);
30
30
        
31
31
        $file =~ s/\//$o/g if $o ne '/';
32
32
        $n=&bname($target);
33
33
        $ret.="$target: $files $dep_libs\n";
34
 
        $ret.="\t\$(LINK) ${efile}$target \$(LFLAGS) $files $libs\n\n";
 
34
        $ret.="\t\$(LINK) ${efile}$target \$(LFLAGS) $files $libs\n";
 
35
        if (defined $sha1file)
 
36
                {
 
37
                $ret.="\t$openssl sha1 -hmac etaonrishdlcupfm -binary $target > $sha1file";
 
38
                }
 
39
        $ret.="\n";
35
40
        return($ret);
36
41
        }
37
42