The Perl Toolchain Summit needs more sponsors. If your company depends on Perl, please support this very important event.
#!/usr/bin/perl -w
###########################################
# Run Configure and answer 'y' on the
# 'Want a threading perl?' question while
# accepting defaults otherwise.
# Mike Schilli, 2006 (m@perlmeister.com)
###########################################
use strict;
use Perl::Configure;

my $cfg = Perl::Configure->new();
$cfg->define(threads => "y");
$cfg->run();