parrotcode: Introduce and conclude Parrot configuration process | |
Contents | Perl Modules |
Parrot::Configure::Messages - Introduce and conclude Parrot configuration process
use Parrot::Configure::Messages qw(
print_introduction
print_conclusion
);
print_introduction($parrot_version);
print_conclusion($make_version);
Parrot::Configure::Messages exports on demand two subroutines which print messages to STDOUT when Configure.pl is run.
print_introduction()
Print the Parrot version, the version of Configure.pl, the copyright notice and a message introducing the Parrot configuration process.
One argument: String holding the Parrot version number (currently supplied by Parrot::BuildUtil::parrot_version()
).
Implicit true value when print
returns successfully.
print_conclusion()
Prints a message announcing the conclusion of the Parrot configuration process and instructing the user to run make.
One argument: String holding the version of make located by the configuration process.
Implicit true value when print
returns successfully.
The functionality in this package was transferred from Configure.pl by Jim Keenan.
|