On Fri, 12 Oct 2001, Jens-Uwe Mager wrote: > I am just starting with modperl-2.0 and I have checked out httpd-2.0 > (including apr and apr-util) and I have also rsynced the current > bleedperl. I have configured perl with ithread support (is this > correct?) and I am now wondering how to configure httpd-2.0. The > configure script does not say anything about threading, is there any > special option to say to configure?
welcome jens! ithreads is required for threaded mpms, vanilla perl can still be used with the prefork mpm. modperl-2.0/pod/modperl_dev.pod has some tips on getting started: % ./configure --prefix=$HOME/apache-2.0 --enable-so --with-mpm=threaded where --with-mpm= value could also be 'prefork' or 'worker' (worker is supposed to replace the threaded mpm). --with-mpm is all that is needed to turn on threading. on the modperl side, all you need is an ithreads perl. modperl_dev.pod also has some detail on modperl config options. --------------------------------------------------------------------- To unsubscribe, e-mail: [EMAIL PROTECTED] For additional commands, e-mail: [EMAIL PROTECTED]
