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

NAME

Devel::WantXS - user needs pure perl?

SYNOPSIS

    use Devel::WantXS;

    if (want_xs()) {
        ... # setup to compile
    } else {
        ... # setup to PP version
    }

DESCRIPTION

This module detects the user need to use pure perl version or not.

FUNCTIONS

want_xs() : Bool

Returns true if the user asked for the XS version or pure perl version of the module.

Will return true if <--xs> is explicitly specified as the argument to Makefile.PL, and false if <--pp> is specified. If neither is explicitly specified, will return the value specified by $default. If you do not specify the value of $default, then it will be true.

AUTHORS

Goro Fuji(Original author of Module::Install::XSUtil)

Tokuhiro Matsuno(Port from Module::Install::XSUtil)