summaryrefslogtreecommitdiff
path: root/ext/Digest/MD5/hints
diff options
context:
space:
mode:
authorJarkko Hietaniemi <jhi@iki.fi>2001-03-23 13:20:34 +0000
committerJarkko Hietaniemi <jhi@iki.fi>2001-03-23 13:20:34 +0000
commit3357b1b1dc05eb65c7266f1983048cb27893b96c (patch)
tree9568e90ba7537be2a7cb318819ff5eb50af2fbd2 /ext/Digest/MD5/hints
parent02ccb3c85a7cea3122c550296088fd52ce24537b (diff)
downloadperl-3357b1b1dc05eb65c7266f1983048cb27893b96c.tar.gz
Integrate Digest-1.00 and Digest-MD5-2.13, from Gisle Aas.
- bump the version to 2.14 - drop the base64 tests since they require MIME::Base64 - drop the rfc1321.txt - drop the hints/dec_osf.pl since it's only needed for pre-5.005_03 Perls Todo: - the U32 alignment testing is now removed; it needs to be reintroduced as as a Config variable (meaning also as a Configure test) - get the new EBCDIC md5sum for MD5.pm - test in Win32 to see how badly I botched the makefiles p4raw-id: //depot/perl@9308
Diffstat (limited to 'ext/Digest/MD5/hints')
-rw-r--r--ext/Digest/MD5/hints/irix_6.pl6
1 files changed, 6 insertions, 0 deletions
diff --git a/ext/Digest/MD5/hints/irix_6.pl b/ext/Digest/MD5/hints/irix_6.pl
new file mode 100644
index 0000000000..e38ae14951
--- /dev/null
+++ b/ext/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";
+}