From: Jarkko Hietaniemi Date: Mon, 7 Jul 2003 04:29:35 +0000 (+0000) Subject: MPE/iX tweak from Mark Bixby. X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=5e8fe3dafb1eaefbb197895ad52c8e176e1b9d02;p=p5sagit%2Fp5-mst-13.2.git MPE/iX tweak from Mark Bixby. p4raw-id: //depot/perl@20042 --- diff --git a/ext/Time/HiRes/Makefile.PL b/ext/Time/HiRes/Makefile.PL index f93a5b1..e221208 100644 --- a/ext/Time/HiRes/Makefile.PL +++ b/ext/Time/HiRes/Makefile.PL @@ -129,7 +129,9 @@ sub try_compile_and_link { $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";