rse 99/07/04 02:15:47
Modified: mpm 00README_FIRST_REALLY Log: Some hints Revision Changes Path 1.2 +23 -1 apache-2.0/mpm/00README_FIRST_REALLY Index: 00README_FIRST_REALLY =================================================================== RCS file: /home/cvs/apache-2.0/mpm/00README_FIRST_REALLY,v retrieving revision 1.1 retrieving revision 1.2 diff -u -r1.1 -r1.2 --- 00README_FIRST_REALLY 1999/06/18 19:00:16 1.1 +++ 00README_FIRST_REALLY 1999/07/04 09:15:45 1.2 @@ -3,4 +3,26 @@ Save yourself a headache and "cd src" and start working there. -Dean +- Dean + +You can build for 1.3 preforking via: + +$ MPM_METHOD=prefork \ + ./configure \ + --enable-rule=MPM" + --disable-module=status" + --disable-module=include" + --disable-module=cgi" + +and for the MPM pthreading stuff via: + +$ MPM_METHOD=mpmt_pthread \ + ./configure \ + --enable-rule=MPM" + --disable-module=status" + --disable-module=include" + --disable-module=cgi" + +(on some systems you also need ``CFLAGS=-pthread LDFLAGS=-pthread'' !!) + +- Ralf