⭐ 欢迎来到虫虫下载站! | 📦 资源下载 📁 资源专辑 ℹ️ 关于我们
⭐ 虫虫下载站

📄 mm_beos.pm

📁 视频监控网络部分的协议ddns,的模块的实现代码,请大家大胆指正.
💻 PM
字号:
package ExtUtils::MM_BeOS;use strict;=head1 NAMEExtUtils::MM_BeOS - methods to override UN*X behaviour in ExtUtils::MakeMaker=head1 SYNOPSIS use ExtUtils::MM_BeOS;	# Done internally by ExtUtils::MakeMaker if needed=head1 DESCRIPTIONSee ExtUtils::MM_Unix for a documentation of the methods providedthere. This package overrides the implementation of these methods, notthe semantics.=over 4=cutuse ExtUtils::MakeMaker::Config;use File::Spec;require ExtUtils::MM_Any;require ExtUtils::MM_Unix;use vars qw(@ISA $VERSION);@ISA = qw( ExtUtils::MM_Any ExtUtils::MM_Unix );$VERSION = '6.42';=item os_flavorBeOS is BeOS.=cutsub os_flavor {    return('BeOS');}=item init_linkerlibperl.a equivalent to be linked to dynamic extensions.=cutsub init_linker {    my($self) = shift;    $self->{PERL_ARCHIVE} ||=       File::Spec->catdir('$(PERL_INC)',$Config{libperl});    $self->{PERL_ARCHIVE_AFTER} ||= '';    $self->{EXPORT_LIST}  ||= '';}=back1;__END__

⌨️ 快捷键说明

复制代码 Ctrl + C
搜索代码 Ctrl + F
全屏模式 F11
切换主题 Ctrl + Shift + D
显示快捷键 ?
增大字号 Ctrl + =
减小字号 Ctrl + -