diff --git a/component/perl/buildout.cfg b/component/perl/buildout.cfg
index d4b4da4edd99b9b1ba799b5f9815765e03908c96..6c8252f38a3252fa8cf8cde00085ca6d68f07382 100644
--- a/component/perl/buildout.cfg
+++ b/component/perl/buildout.cfg
@@ -40,7 +40,8 @@ configure-command =
     -Dcflags=-I${gdbm:location}/include \
     -Dldflags="-L${gdbm:location}/lib -Wl,-rpath=${gdbm:location}/lib" \
     -Ui_db \
-    -Dnoextensions=ODBM_File
+    -Dnoextensions=ODBM_File \
+    -Dusethreads
 environment =
   PATH=${patch:location}/bin:%(PATH)s
   CFLAGS='-m64 -mtune=nocona'
diff --git a/slapos/recipe/apacheperl/template/apache.in b/slapos/recipe/apacheperl/template/apache.in
index 42e6940bc3f85494bc91ab61ef48201572f222af..de71fe9812285bd39485a5c71b8142a71649445b 100644
--- a/slapos/recipe/apacheperl/template/apache.in
+++ b/slapos/recipe/apacheperl/template/apache.in
@@ -36,6 +36,7 @@ CustomLog "%(access_log)s" common
 
   use Apache2::Request;
   use Date::Calc ();
+  use Image::Magick;
 
   sub test_handler {
     my ($r) = @_;
@@ -54,6 +55,11 @@ CustomLog "%(access_log)s" common
       my $hello = $apreq->param('hello');
       $r->print("Testing Apache2::Request: The parameter 'hello' is '$hello'\n");
     }
+    {
+      my $im = new Image::Magick;
+      $r->print("Testing Image::Magick: PerlMagick success: "
+                . Image::Magick->Success . "\n");
+    }
     return Apache2::Const::OK;
   }
 </Perl>
diff --git a/software/mioga/software.cfg b/software/mioga/software.cfg
index d2800bfdc7c236c9425e2ced28ee23f0ad8dfaee..8104427eecf0e752fba46e94cd08753103f6469b 100644
--- a/software/mioga/software.cfg
+++ b/software/mioga/software.cfg
@@ -76,8 +76,13 @@ modules =
   K/KE/KEN/XML-XML2JSON-0.06.tar.gz
   A/AR/ARISTOTLE/XML-Atom-SimpleFeed-0.86.tar.gz
   P/PE/PETDANCE/Test-WWW-Mechanize-1.44.tar.gz
+  G/GR/GRANTM/XML-Simple-2.20.tar.gz
+  A/AD/ADAMK/Archive-Zip-1.30.tar.gz
+  D/DU/DURIST/Proc-ProcessTable-0.45.tar.gz
 perl = perl
-cpan-configuration = 
+cpan-configuration =
+  makepl_arg=''
+  make_arg=''
 
 [perl-String-Checker-mioga]
 recipe = hexagonit.recipe.cmmi