#!/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();