This is a live mirror of the Perl 5 development currently hosted at https://github.com/perl/perl5
Backport 88a6f4fc380d30c405f82eb0f2962237fd771fea
authorH.Merijn Brand <merijn@nb09.procura.nl>
Tue, 5 Jan 2010 08:33:53 +0000 (09:33 +0100)
committerH.Merijn Brand <merijn@nb09.procura.nl>
Tue, 5 Jan 2010 08:33:53 +0000 (09:33 +0100)
U/perl/Extensions.U

index be4b448..28c3329 100644 (file)
@@ -74,9 +74,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
@@ -104,8 +102,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;