summaryrefslogtreecommitdiff
path: root/Configure
diff options
context:
space:
mode:
authorSteve Hay <SteveHay@planit.com>2009-11-14 00:17:00 +0000
committerSteve Hay <SteveHay@planit.com>2009-11-14 00:17:00 +0000
commit88a6f4fc380d30c405f82eb0f2962237fd771fea (patch)
tree36d1654c13cd4bbf8c0dcba747b9f348332b489e /Configure
parent1725f55ba78fb58489ea39e2bc0cc1faffd32275 (diff)
downloadperl-88a6f4fc380d30c405f82eb0f2962237fd771fea.tar.gz
Revert core fixes for IO-Compress following IO-Compress update
With commit 1725f55ba78fb58489ea39e2bc0cc1faffd32275 IO-Compress now puts its .pm files in lib rather than archlib for perls later than 5.11.1, so the core can now do likewise given that blead will next be released as 5.11.2, i.e. revert the Configure part of 4cc80fc4cbbd82e20f7b14b68abb53d552076022 and revert f4a6a713802da1b781d7108503156fa3a0fe219e. This change should not be merged into 5.10.x because IO-Compress will continue to put its .pm files into archlib for the sake of anyone upgrading a 5.10.x installation in-place.
Diffstat (limited to 'Configure')
-rwxr-xr-xConfigure6
1 files changed, 1 insertions, 5 deletions
diff --git a/Configure b/Configure
index e67b461005..bc789979e6 100755
--- a/Configure
+++ b/Configure
@@ -21733,9 +21733,7 @@ nonxs_extensions=''
: Function to recursively find available extensions, ignoring DynaLoader
: NOTE: recursion limit of 10 to prevent runaway in case of symlink madness
: In 5.10.1 and later, extensions are stored in directories
-: like File-Glob instead of the older File/Glob/. In this scheme,
-: IO-Compress does not appear to be an XS extension, but we want
-: to install it as one. A.D. 8/2009.
+: like File-Glob instead of the older File/Glob/.
find_extensions='
for xxx in *; do
case "$xxx" in
@@ -21763,8 +21761,6 @@ find_extensions='
known_extensions="$known_extensions $this_ext";
elif $contains "\.c$" $$.tmp > /dev/null 2>&1; then
known_extensions="$known_extensions $this_ext";
- elif $test "$this_ext" = "IO/Compress"; then
- known_extensions="$known_extensions $this_ext";
elif $test -d $xxx; then
nonxs_extensions="$nonxs_extensions $this_ext";
fi;