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

« back to all changes in this revision

Viewing changes to util/pl/OS2-EMX.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:
48
48
$bf_enc_obj="";
49
49
$bf_enc_src="";
50
50
 
51
 
if (!$no_asm)
 
51
if (!$no_asm && !$fips)
52
52
        {
53
53
        $bn_asm_obj="crypto/bn/asm/bn-os2$obj crypto/bn/asm/co-os2$obj";
54
54
        $bn_asm_src="crypto/bn/asm/bn-os2.asm crypto/bn/asm/co-os2.asm";
106
106
 
107
107
sub do_link_rule
108
108
        {
109
 
        local($target,$files,$dep_libs,$libs)=@_;
 
109
        local($target,$files,$dep_libs,$libs,$sha1file,$openssl)=@_;
110
110
        local($ret,$_);
111
111
        
112
112
        $file =~ s/\//$o/g if $o ne '/';
113
113
        $n=&bname($target);
114
114
        $ret.="$target: $files $dep_libs\n";
115
 
        $ret.="\t\$(LINK) ${efile}$target \$(CFLAG) \$(LFLAGS) $files $libs\n\n";
 
115
        $ret.="\t\$(LINK) ${efile}$target \$(CFLAG) \$(LFLAGS) $files $libs\n";
 
116
        if (defined $sha1file)
 
117
                {
 
118
                $ret.="\t$openssl sha1 -hmac etaonrishdlcupfm -binary $target > $sha1file";
 
119
                }
 
120
        $ret.="\n";
116
121
        return($ret);
117
122
        }
118
123