
no-reply at lighthouseapp
Jul 12, 2010, 9:18 AM
Post #4 of 8
(584 views)
Permalink
|
|
[Bricolage #188] bricolage & apache-itk_2.2.15
[In reply to]
|
|
// Add your reply above here ================================================== theory updated this ticket at July 12th, 2010 @ 04:18 PM * Milestone changed from "" to "2.1.0" * Tag changed from "" to "apache mod_perl prefork" * State changed from "new" to "open" * Assigned user changed from "Bugs (at bricolage)" to "theory" I don't remember why we required prefork, other than the fact that it's the best supported way to run mod_perl2. But try this patch: --- a/inst/required.pl +++ b/inst/required.pl @@ -370,13 +370,13 @@ sub find_apache2 { print "Found acceptable version of Apache: $x.$y.$z.\n"; $REQ{APACHE_VERSION} = [$x,$y,$z]; - print "Checking for preforking apache2 ... \n"; - my $compiled_modules = `$REQ{APACHE_EXE} -l`; - return hard_fail("Bricolage and mod_perl should be run under the prefork ". - "version of Apache2,\nrather than the threaded worker version. Please ". - "re-compile or install\nthe preforked version. \n" - ) unless ($compiled_modules =~ /prefork\.c/); - print "Found prefork built in module\n"; + # print "Checking for preforking apache2 ... \n"; + # my $compiled_modules = `$REQ{APACHE_EXE} -l`; + # return hard_fail("Bricolage and mod_perl should be run under the prefork ". + # "version of Apache2,\nrather than the threaded worker version. Please ". + # "re-compile or install\nthe preforked version. \n" + # ) unless ($compiled_modules =~ /prefork\.c/); + # print "Found prefork built in module\n"; return 1; } That should disable the prefork requirement. Install Bricolage, get it running, and see if it doesn't work. David -------------------------------------------------------------------------------- Assigned: theory State: open Milestone: 2.1.0 View this ticket online: http://bricolage.lighthouseapp.com/projects/29601/tickets/188-bricolage-apache-itk_2215 Stop being notified of this ticket's changes: http://bricolage.lighthouseapp.com/projects/29601/tickets/188-bricolage-apache-itk_2215/watch Update your Profile: http://bricolage.lighthouseapp.com/profile Support: support [at] lighthouseapp or http://help.lighthouseapp.com
|