parrotcode: Configuration Step Utilities | |
Contents | Perl Modules |
Parrot::Configure::Step - Configuration Step Utilities
The Parrot::Configure::Step
module contains utility functions for steps to use.
Note that the actual configuration step itself is NOT an instance of this class,
rather it is defined to be in the package
Configure::Step
.
See docs/configuration.pod for more information on how to create new configuration steps.
integrate($orig, $new)
$new
into $orig
.
Returns $orig
if $new
is undefined.prompt($message, $value)
ENTER
.file_checksum($filename, $ignorePattern)
$ignorePattern
are not included in the checksum.copy_if_diff($from, $to, $ignorePattern)
$from
to the location specified by $to
if it's contents have changed.$ignorePattern
is passed to file_checksum()
when comparing the files.move_if_diff($from, $to, $ignorePattern)
$from
to the location specified by $to
if it's contents have changed.genfile($source, $target, %options)
/\$\{\w+\}/
for the given key's value in the configuration system's data,
and writes the results to specified target file._run_command($command, $out, $err)
$out
,
warnings and errors are directed to the file specified by $err
.cc_gen($source)
cc_build($cc_args, $link_args)
$cc, $ccflags, $ldout, $o, $link, $linkflags, $cc_exe_out, $exe, $libs
cc_run()
cc_run_capture()
cc_run()
except that warnings and errors are also directed to test.out.cc_clean()
capture_output($command)
check_progs([$programs])
$programs
may be either a scalar with the name of a single program or an array ref of programs to search the current PATH
for. The first matching program name is returned or undef
on failure. Note: this function only returns the name of the program and not its complete path.autoconf
's AC_CHECK_PROGS
macro._slurp($filename)
$filename
into memory and returns it as a string.
|