Change 14915 by jhi@alpha on 2002/02/28 21:25:23
Subject: [PATCH] Configure to correctly recognize Amiga OS
From: [EMAIL PROTECTED]
Date: Thu, 28 Feb 02 15:05 est
Message-Id: <[EMAIL PROTECTED]>
Affected files ...
.... //depot/perl/Configure#417 edit
Differences ...
==== //depot/perl/Configure#417 (xtext) ====
Index: perl/Configure
--- perl/Configure.~1~ Thu Feb 28 14:30:05 2002
+++ perl/Configure Thu Feb 28 14:30:05 2002
@@ -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 [EMAIL PROTECTED])
cat >c1$$ <<EOF
@@ -1037,16 +1037,17 @@
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
End of Patch.