From: Craig A. Berry Date: Thu, 1 Apr 2004 14:16:32 +0000 (-0600) Subject: archname salad on VMS X-Git-Url: http://git.shadowcat.co.uk/gitweb/gitweb.cgi?a=commitdiff_plain;h=86da1428d0acc5b74c6a86a5139bb65b2e487828;p=p5sagit%2Fp5-mst-13.2.git archname salad on VMS From: "Craig A. Berry" Message-Id: <406C78A0.2070009@mac.com> sort out architecture-specific directory names for OpenVMS Itanium port p4raw-id: //depot/perl@22636 --- diff --git a/configure.com b/configure.com index 479af18..c86d682 100644 --- a/configure.com +++ b/configure.com @@ -6476,7 +6476,8 @@ $ WRITE CONFIG "$ define/translation=concealed ''vms_prefix' ''prefix'" $ WRITE CONFIG "$ ext = "".exe""" $ IF sharedperl $ THEN -$ WRITE CONFIG "$ if f$getsyi(""HW_MODEL"") .ge. 1024 then ext = "".AXE""" +$ WRITE CONFIG "$ if f$getsyi(""ARCH_TYPE"") .eq. 2 then ext = "".AXE""" +$ WRITE CONFIG "$ if f$getsyi(""ARCH_TYPE"") .eq. 3 then ext = "".IXE""" $ ENDIF $ IF (perl_symbol) $ THEN diff --git a/vms/descrip_mms.template b/vms/descrip_mms.template index 43a09c4..ec14738 100644 --- a/vms/descrip_mms.template +++ b/vms/descrip_mms.template @@ -33,6 +33,11 @@ ~FLAGS~ #: >>>>> Architecture-specific options <<<<< +.ifdef IXE +O = .ibj +OLB = .ilb +E = .ixe +.else .ifdef AXE # File type to use for object files O = .abj @@ -48,7 +53,12 @@ OLB = .olb # File type to use for executable images E = .exe .endif +.endif +.ifdef __IA64__ +ARCH = VMS_IA64 +OBJVAL = $(O) +.else .ifdef __AXP__ ARCH = VMS_AXP OBJVAL = $(O) @@ -56,6 +66,7 @@ OBJVAL = $(O) ARCH = VMS_VAX OBJVAL = $(MMS$TARGET_NAME)$(O) .endif +.endif PERL_VERSION = ~PV~