From: Craig A. Berry Date: Sat, 8 Jun 2002 23:01:11 +0000 (-0500) Subject: fix stuck MD5 compile on VAX X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=614d5782dc850ab9e056943cabc21f93f8af995a;p=p5sagit%2Fp5-mst-13.2.git fix stuck MD5 compile on VAX From: "Craig A. Berry" Message-Id: p4raw-id: //depot/perl@17128 --- diff --git a/ext/Digest/MD5/Makefile.PL b/ext/Digest/MD5/Makefile.PL index 8e11355..3a6450c 100644 --- a/ext/Digest/MD5/Makefile.PL +++ b/ext/Digest/MD5/Makefile.PL @@ -13,7 +13,8 @@ unless ($Config{d_u32align}) { my @optimize = (); if ($^O eq 'VMS') { if (defined($Config{ccname})) { - if ($Config{ccversion} <= 50390006 && grep(/VMS_VAX/, @INC) && ($Config{ccname} eq 'DEC')) { + if (grep(/VMS_VAX/, @INC) && ($Config{ccname} eq 'DEC')) { + # VAX compiler optimizer even as late as v6.4 gets stuck @optimize = ("OPTIMIZE","/Optimize=(NODISJOINT)"); } }