mod_mp3 install -------------------------------------- Do you use DSO? If so just type configure, then make and as long as apxs is in your path all things should go smoothly. If you are not using DSO you should be :) What follows are an outdated set of instructions for installing mod_mp3 as a non-DSO. Buyer beware and all of that. This will only build a very generic version. If for some reason you need to compile apache try the following: 1. Copy the contents of src/ into a directory under your treee so that you have: src/modules/mp3/ 2. Now copy the file Makefile.STATIC into src/modules/mp3/. 3. Call the configure script as you normally would and add the switch: --activate-module=src/modules/mp3/libmp3.a 4. Make sure the build environment is clean by issuing the following command: > make clean 5. Build the new httpd binary with: > make 6. Install the new httpd binary with: > make install 7. Restart apache. Make sure you do a: > apachectl stop > apachectl start See the README file for more on how to configure mod_mp3. -Brian