diff options
author | Paul Green <Paul.Green@stratus.com> | 2002-02-28 10:05:00 -0500 |
---|---|---|
committer | Jarkko Hietaniemi <jhi@iki.fi> | 2002-02-28 21:25:23 +0000 |
commit | 6153ba32057a328a592593d0d7dc89a3745702e2 (patch) | |
tree | 0b0b62fc00da335d280d4104afc435be6673dc5a /Configure | |
parent | 977e4b84b53748ef9b12f9212931c185ba771712 (diff) | |
download | perl-6153ba32057a328a592593d0d7dc89a3745702e2.tar.gz |
Configure to correctly recognize Amiga OS
Message-Id: <200202282007.PAA11412@mailhub1.stratus.com>
p4raw-id: //depot/perl@14915
Diffstat (limited to 'Configure')
-rwxr-xr-x | Configure | 19 |
1 files changed, 10 insertions, 9 deletions
@@ -20,7 +20,7 @@ # $Id: Head.U,v 3.0.1.9 1997/02/28 15:02:09 ram Exp $ # -# Generated on Mon Feb 25 17:50:42 EET 2002 [metaconfig 3.0 PL70] +# Generated on Thu Feb 28 23:59:38 EET 2002 [metaconfig 3.0 PL70] # (with additional metaconfig patches by perlbug@perl.org) cat >c1$$ <<EOF @@ -1037,16 +1037,17 @@ if test -f /etc/unixtovms.exe; then fi : Set executable suffix now -- needed before hints available -: maybe Stratus VOS -if test -f "/system/gnu_library/bin/ar.pm"; then +if test -f "/libs/version.library"; then +: Amiga OS + _exe="" +elif test -f "/system/gnu_library/bin/ar.pm"; then +: Stratus VOS _exe=".pm" -fi -: maybe dos djgpp -if test -n "$DJGPP"; then +elif test -n "$DJGPP"; then +: DOS DJGPP _exe=".exe" -fi -: maybe os/2 -if test -d c:/. ; then +elif test -d c:/. ; then +: OS/2 _exe=".exe" fi |