Skip to content

Instantly share code, notes, and snippets.

@shiumachi
Created February 8, 2011 16:29
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save shiumachi/816693 to your computer and use it in GitHub Desktop.
Save shiumachi/816693 to your computer and use it in GitHub Desktop.
make and install apache (and APR)
#!/bin/bash
DEVEL_DIR=${HOME}/devel
cd srclib/apr
./buildconf
./configure --prefix=${DEVEL_DIR}/apr
make
make install
cd ../..
./buildconf
./configure --with-apr=${DEVEL_DIR}/apr --prefix=${DEVEL_DIR}/apache2
make
make install
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment