extensions.pm

来自「视频监控网络部分的协议ddns,的模块的实现代码,请大家大胆指正.」· PM 代码 · 共 64 行

PM
64
字号
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 + =
减小字号Ctrl + -
显示快捷键?