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

my($conf_file, $taint_clean) = (shift, shift);

my %config;

Parse::PerlConfig::parse(
    File        =>  $conf_file,
    Handler     =>  \%config,
    Taint_Clean =>  $taint_clean,
);


die("Parse apparently failed.\n") unless $config{'success'};