The Perl and Raku Conference 2025: Greenville, South Carolina - June 27-29 Learn more

#!/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;
my $cfg = Perl::Configure->new();
$cfg->define(threads => "y");
$cfg->run();