summaryrefslogtreecommitdiff
path: root/ext
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2010-06-21 21:10:40 +0100
committerNicholas Clark <nick@ccl4.org>2010-06-23 08:52:45 +0100
commit862f843bac3434c2861e482369451dae9f8ce17c (patch)
treeb763a30a1f5d968ec79ac0db3e005a2748e3f1ca /ext
parente713b73750eb9e684a6d14dcca1a22d55ce2226d (diff)
downloadperl-862f843bac3434c2861e482369451dae9f8ce17c.tar.gz
Remove MacOS classic support from File::{Copy,DosGlob,Find,Glob,stat}.
ExtUtils::MakeMaker removed MacOS support in 6.25, merged to blead in December 2004, so this code is vestigial, and a small runtime penalty.
Diffstat (limited to 'ext')
-rw-r--r--ext/File-Glob/Glob.pm4
1 files changed, 2 insertions, 2 deletions
diff --git a/ext/File-Glob/Glob.pm b/ext/File-Glob/Glob.pm
index 7c6b92cf41..240e0a5218 100644
--- a/ext/File-Glob/Glob.pm
+++ b/ext/File-Glob/Glob.pm
@@ -56,7 +56,7 @@ use XSLoader ();
) ],
);
-$VERSION = '1.07';
+$VERSION = '1.08';
sub import {
require Exporter;
@@ -110,7 +110,7 @@ sub GLOB_CSH () {
}
$DEFAULT_FLAGS = GLOB_CSH();
-if ($^O =~ /^(?:MSWin32|VMS|os2|dos|riscos|MacOS)$/) {
+if ($^O =~ /^(?:MSWin32|VMS|os2|dos|riscos)$/) {
$DEFAULT_FLAGS |= GLOB_NOCASE();
}