Linux and UNIX Man Pages

Linux & Unix Commands - Search Man Pages

module::build::platform::vms(3) [centos man page]

Module::Build::Platform::VMS(3) 			User Contributed Perl Documentation			   Module::Build::Platform::VMS(3)

NAME
Module::Build::Platform::VMS - Builder class for VMS platforms DESCRIPTION
This module inherits from "Module::Build::Base" and alters a few minor details of its functionality. Please see Module::Build for the general docs. Overridden Methods _set_defaults Change $self->{build_script} to 'Build.com' so @Build works. cull_args '@Build foo' on VMS will not preserve the case of 'foo'. Rather than forcing people to write '@Build "foo"' we'll dispatch case- insensitively. manpage_separator Use '__' instead of '::'. prefixify Prefixify taking into account VMS' filepath syntax. _quote_args Command-line arguments (but not the command itself) must be quoted to ensure case preservation. have_forkpipe There is no native fork(), so some constructs depending on it are not available. _backticks Override to ensure that we quote the arguments but not the command. find_command Local an executable program _maybe_command (override) Follows VMS naming conventions for executable files. If the name passed in doesn't exactly match an executable file, appends .Exe (or equivalent) to check for executable image, and .Com to check for DCL procedure. If this fails, checks directories in DCL$PATH and finally Sys$System: for an executable file having the name specified, with or without the .Exe-equivalent suffix. do_system Override to ensure that we quote the arguments but not the command. oneliner Override to ensure that we do not quote the command. _infer_xs_spec Inherit the standard version but tweak the library file name to be something Dynaloader can find. rscan_dir Inherit the standard version but remove dots at end of name. If the extended character set is in effect, do not remove dots from filenames with Unix path delimiters. dist_dir Inherit the standard version but replace embedded dots with underscores because a dot is the directory delimiter on VMS. man3page_name Inherit the standard version but chop the extra manpage delimiter off the front if there is one. The VMS version of splitdir('[.foo]') returns '', 'foo'. expand_test_dir Inherit the standard version but relativize the paths as the native glob() doesn't do that for us. _detildefy The home-grown glob() does not currently handle tildes, so provide limited support here. Expect only UNIX format file specifications for now. find_perl_interpreter On VMS, $^X returns the fully qualified absolute path including version number. It's logically impossible to improve on it for getting the perl we're currently running, and attempting to manipulate it is usually lossy. localize_file_path Convert the file path to the local syntax localize_dir_path Convert the directory path to the local syntax ACTION_clean The home-grown glob() expands a bit too aggressively when given a bare name, so default in a zero-length extension. AUTHOR
Michael G Schwern <schwern@pobox.com> Ken Williams <kwilliams@cpan.org> Craig A. Berry <craigberry@mac.com> SEE ALSO
perl(1), Module::Build(3), ExtUtils::MakeMaker(3) perl v5.16.3 2014-06-10 Module::Build::Platform::VMS(3)

Check Out this Related Man Page

Module::Build::ConfigData(3pm)				 Perl Programmers Reference Guide			    Module::Build::ConfigData(3pm)

NAME
Module::Build::ConfigData - Configuration for Module::Build SYNOPSIS
use Module::Build::ConfigData; $value = Module::Build::ConfigData->config('foo'); $value = Module::Build::ConfigData->feature('bar'); @names = Module::Build::ConfigData->config_names; @names = Module::Build::ConfigData->feature_names; Module::Build::ConfigData->set_config(foo => $new_value); Module::Build::ConfigData->set_feature(bar => $new_value); Module::Build::ConfigData->write; # Save changes DESCRIPTION
This module holds the configuration data for the "Module::Build" module. It also provides a programmatic interface for getting or setting that configuration data. Note that in order to actually make changes, you'll have to have write access to the "Module::Build::ConfigData" module, and you should attempt to understand the repercussions of your actions. METHODS
config($name) Given a string argument, returns the value of the configuration item by that name, or "undef" if no such item exists. feature($name) Given a string argument, returns the value of the feature by that name, or "undef" if no such feature exists. set_config($name, $value) Sets the configuration item with the given name to the given value. The value may be any Perl scalar that will serialize correctly using "Data::Dumper". This includes references, objects (usually), and complex data structures. It probably does not include transient things like filehandles or sockets. set_feature($name, $value) Sets the feature with the given name to the given boolean value. The value will be converted to 0 or 1 automatically. config_names() Returns a list of all the names of config items currently defined in "Module::Build::ConfigData", or in scalar context the number of items. feature_names() Returns a list of all the names of features currently defined in "Module::Build::ConfigData", or in scalar context the number of features. auto_feature_names() Returns a list of all the names of features whose availability is dynamically determined, or in scalar context the number of such features. Does not include such features that have later been set to a fixed value. write() Commits any changes from "set_config()" and "set_feature()" to disk. Requires write access to the "Module::Build::ConfigData" module. AUTHOR
"Module::Build::ConfigData" was automatically created using "Module::Build". "Module::Build" was written by Ken Williams, but he holds no authorship claim or copyright claim to the contents of "Module::Build::ConfigData". perl v5.16.2 2012-10-11 Module::Build::ConfigData(3pm)
Man Page