summaryrefslogtreecommitdiff
path: root/ext/PerlIO-encoding
diff options
context:
space:
mode:
authorNicholas Clark <nick@ccl4.org>2013-12-09 22:18:22 +0100
committerNicholas Clark <nick@ccl4.org>2013-12-27 13:25:27 +0100
commit97cb92d6c0700e9454bd4ae6d4ab867918bf7861 (patch)
tree10561dae89b7f045ad79ba75d925943dde99ecb8 /ext/PerlIO-encoding
parentb122cba11755f8bed9555c4070f718e5321f3c79 (diff)
downloadperl-97cb92d6c0700e9454bd4ae6d4ab867918bf7861.tar.gz
Purge sfio support, which has been broken for a decade.
The last Perl release that built with -Dusesfio was v5.8.0, and even that failed many regression tests. Every subsequent release fails to build, and in the decade that has passed we have had no bug reports about this. So it's safe to delete all the code. The Configure related code will be purged in a subsequent commit. 2 references to sfio intentionally remain in fakesdio.h and nostdio.h, as these appear to be for using its stdio API-compatibility layer.
Diffstat (limited to 'ext/PerlIO-encoding')
-rw-r--r--ext/PerlIO-encoding/encoding.pm2
-rw-r--r--ext/PerlIO-encoding/encoding.xs2
2 files changed, 2 insertions, 2 deletions
diff --git a/ext/PerlIO-encoding/encoding.pm b/ext/PerlIO-encoding/encoding.pm
index e3291a54b0..8d39ed9a20 100644
--- a/ext/PerlIO-encoding/encoding.pm
+++ b/ext/PerlIO-encoding/encoding.pm
@@ -1,7 +1,7 @@
package PerlIO::encoding;
use strict;
-our $VERSION = '0.17';
+our $VERSION = '0.18';
our $DEBUG = 0;
$DEBUG and warn __PACKAGE__, " called by ", join(", ", caller), "\n";
diff --git a/ext/PerlIO-encoding/encoding.xs b/ext/PerlIO-encoding/encoding.xs
index f522ef101c..fababd1d70 100644
--- a/ext/PerlIO-encoding/encoding.xs
+++ b/ext/PerlIO-encoding/encoding.xs
@@ -6,7 +6,7 @@
#define OUR_DEFAULT_FB "Encode::PERLQQ"
-#if defined(USE_PERLIO) && !defined(USE_SFIO)
+#if defined(USE_PERLIO)
/* Define an encoding "layer" in the perliol.h sense.