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

« back to all changes in this revision

Viewing changes to util/pl/Mingw32.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:
21
21
else
22
22
        { $cflags="-DL_ENDIAN -DDSO_WIN32 -fomit-frame-pointer -O3 -mcpu=i486 -Wall"; }
23
23
 
24
 
if ($gaswin and !$no_asm)
 
24
if ($gaswin and !$no_asm and !$fips)
25
25
        {
26
26
        $bn_asm_obj='$(OBJ_D)\bn-win32.o';
27
27
        $bn_asm_src='crypto/bn/asm/bn-win32.s';
92
92
 
93
93
sub do_link_rule
94
94
        {
95
 
        local($target,$files,$dep_libs,$libs)=@_;
 
95
        local($target,$files,$dep_libs,$libs,$sha1file,$openssl)=@_;
96
96
        local($ret,$_);
97
97
        
98
98
        $file =~ s/\//$o/g if $o ne '/';
99
99
        $n=&bname($target);
100
100
        $ret.="$target: $files $dep_libs\n";
101
 
        $ret.="\t\$(LINK) ${efile}$target \$(LFLAGS) $files $libs\n\n";
 
101
        $ret.="\t\$(LINK) ${efile}$target \$(LFLAGS) $files $libs\n";
 
102
        if (defined $sha1file)
 
103
                {
 
104
                $ret.="\t$openssl sha1 -hmac etaonrishdlcupfm -binary $target > $sha1file";
 
105
                }
 
106
        $ret.="\n";
102
107
        return($ret);
103
108
        }
104
109
1;