Previous commit broke everything
This commit is contained in:
parent
cbd77cd71b
commit
4dd236d025
1 changed files with 2 additions and 1 deletions
|
@ -15,9 +15,10 @@ sub debugf {
|
||||||
}
|
}
|
||||||
|
|
||||||
# load threads before Moo as required by it
|
# load threads before Moo as required by it
|
||||||
|
our $have_threads;
|
||||||
BEGIN {
|
BEGIN {
|
||||||
use Config;
|
use Config;
|
||||||
our $have_threads = $Config{useithreads} && eval "use threads; use Thread::Queue; 1";
|
$have_threads = $Config{useithreads} && eval "use threads; use Thread::Queue; 1";
|
||||||
}
|
}
|
||||||
|
|
||||||
use Moo;
|
use Moo;
|
||||||
|
|
Loading…
Reference in a new issue