diff options
author | Nicholas Clark <nick@ccl4.org> | 2009-10-01 15:14:37 +0100 |
---|---|---|
committer | Nicholas Clark <nick@ccl4.org> | 2009-10-01 15:14:37 +0100 |
commit | ecc8f9b5bd267d61a5123473b7adecf7b311b530 (patch) | |
tree | 7501bef1bb4090693a3e8d42a43f3badcee06cd3 /cpan/Digest-MD5/hints/irix_6.pl | |
parent | d2369d0b6913709d85b3c192d66d4bb758cc434a (diff) | |
download | perl-ecc8f9b5bd267d61a5123473b7adecf7b311b530.tar.gz |
Move Digest::MD5 from ext/ to cpan/
Diffstat (limited to 'cpan/Digest-MD5/hints/irix_6.pl')
-rw-r--r-- | cpan/Digest-MD5/hints/irix_6.pl | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/cpan/Digest-MD5/hints/irix_6.pl b/cpan/Digest-MD5/hints/irix_6.pl new file mode 100644 index 0000000000..e38ae14951 --- /dev/null +++ b/cpan/Digest-MD5/hints/irix_6.pl @@ -0,0 +1,6 @@ +# The Mongoose v7.1 compiler freezes up somewhere in the optimization of +# MD5Transform() in MD5.c with optimization -O3. This is a workaround: + +if ($Config{cc} =~ /64|n32/ && `$Config{cc} -version 2>&1` =~ /\s7\.1/) { + $self->{OPTIMIZE} = "-O1"; +} |