📄 extensions.pm
字号:
package Config::Extensions;use strict;use vars qw(%Extensions $VERSION @ISA @EXPORT_OK);use Config;require Exporter;$VERSION = '0.01';@ISA = 'Exporter';@EXPORT_OK = '%Extensions';foreach my $type (qw(static dynamic nonxs)) { foreach (split /\s+/, $Config{$type . '_ext'}) { s!/!::!g; $Extensions{$_} = $type; }}1;__END__=head1 NAMEConfig::Extensions - hash lookup of which core extensions were built.=head1 SYNOPSIS use Config::Extensions '%Extensions'; if ($Extensions{PerlIO::via}) { # This perl has PerlIO::via built }=head1 DESCRIPTIONThe Config::Extensions module provides a hash C<%Extensions> containing allthe core extensions that were enabled for this perl. The hash is keyed byextension name, with each entry having one of 3 possible values:=over 4=item dynamicThe extension is dynamically linked=item nonxsThe extension is pure perl, so doesn't need linking to the perl executable=item staticThe extension is statically linked to the perl binary=backAs all values evaluate to true, a simple C<if> test is good enough to determinewhether an extension is present.All the data uses to generate the C<%Extensions> hash is already present inthe C<Config> module, but not in such a convenient format to quickly reference.=head1 AUTHORNicholas Clark <nick@ccl4.org>=cut
⌨️ 快捷键说明
复制代码
Ctrl + C
搜索代码
Ctrl + F
全屏模式
F11
切换主题
Ctrl + Shift + D
显示快捷键
?
增大字号
Ctrl + =
减小字号
Ctrl + -