Hear us Roar
Article:
 |
|
Custom-Compiling Apache and Subversion
|
| Subject: |
|
OS X changes |
| Date: |
|
2005-07-10 20:01:48 |
| From: |
|
jrh05
|
|
|
|
I made three minor changes to run under 10.4.
1. Change the Apache runconfig to this:
ac_cv_func_poll=no ./configure \ --enable-mods-shared="most ssl dav" \ --disable-status --disable-userdir
2. Add these lines to httpd.conf
AcceptMutex flock
LockFile /usr/local/apache2/logs/httpd.lock
3. Modify the subversion runconfig to this:
#!/bin/sh
# runconfigure.sh -- wrapper script for ./configure
GXX=yes ./configure \
--with-apr=/usr/local/apache2 \
--with-apr-util=/usr/local/apache2 \
--without-berkeley-db \
--without-zlib \
--without-jdk \
--without-jikes \
--without-swig \
--without-junit
|
|
| |