The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.

NAME

Parrot::Configure::Options::Conf::Shared - Configuration options shared by both Command-Line and Configuration-File configuration modes

SYNOPSIS

    use Parrot::Configure::Options::Conf::Shared qw(
        @shared_valid_options
    );
    our @valid_options = ( 'ask', @shared_valid_options );

DESCRIPTION

This package exports a single variable, @shared_valid_options(), which holds the list of options which may be used either on:

  • the Configure.pl command-line (corresponding to use of mode => configure in Parrot::Configure::Options::process_options()); or

  • inside a configuration file where Configure.pl is called with the --file=path/to/configfile option (corresponding to use of mode => file in Parrot::Configure::Options::process_options()).

AUTHOR

Refactored from earlier code by James E Keenan.

Parrot::Configure::Options. Parrot::Configure::Options::Conf::CLI. Parrot::Configure::Options::Conf::File. Configure.pl.

SEE ALSO