Commit fd281b2f authored by Ryan Bloom's avatar Ryan Bloom
Browse files

Don't disable threads just because we are using the prefork MPM.

If somebody wants to compile without threads, they must now add
--disable-threads to the configure command line.  [Ryan Bloom]


git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@88127 13f79535-47bb-0310-9956-ffa450edef68
parent d417b2be
Loading
Loading
Loading
Loading
+4 −0
Original line number Diff line number Diff line
Changes with Apache 2.0b1

  *) Don't disable threads just because we are using the prefork MPM.
     If somebody wants to compile without threads, they must now add
     --disable-threads to the configure command line.  [Ryan Bloom]

  *) Begin to move the calls to update_child_status into common code, so
     that each individual MPM does not need to update the scoreboard itself.
     [Ryan Bloom]
+0 −4
Original line number Diff line number Diff line
if test "$MPM_NAME" = "prefork" ; then
dnl Turn off all threading functions in APR
    apache_apr_flags="--disable-threads"

    APACHE_FAST_OUTPUT(server/mpm/$MPM_NAME/Makefile)

fi