Change 20042 by [EMAIL PROTECTED] on 2003/07/07 04:29:35
MPE/iX tweak from Mark Bixby.
Affected files ...
... //depot/perl/ext/Time/HiRes/Makefile.PL#14 edit
Differences ...
==== //depot/perl/ext/Time/HiRes/Makefile.PL#14 (text) ====
Index: perl/ext/Time/HiRes/Makefile.PL
--- perl/ext/Time/HiRes/Makefile.PL#13~19898~ Mon Jun 30 22:54:58 2003
+++ perl/ext/Time/HiRes/Makefile.PL Sun Jul 6 21:29:35 2003
@@ -129,7 +129,9 @@
$cccmd = "$Config{'cc'} -o $tmp $ccflags $tmp.c @$LIBS $errornull"
unless defined $cccmd;
- if ($^O eq 'VMS') {
+ if ($^O eq 'mpeix') {
+ $cccmd = 'MPEAUTOCONF=1 '.$cccmd;
+ } elsif ($^O eq 'VMS') {
open( CMDFILE, ">$tmp.com" );
print CMDFILE "\$ SET MESSAGE/NOFACILITY/NOSEVERITY/NOIDENT/NOTEXT\n";
print CMDFILE "\$ $cccmd\n";
End of Patch.