CentOS6.3下apache与svn整合安装
########安装apr######### #tar zxvf apr-1.3.6.tar.gz #cd apr-1.3.6 #./configure--prefix=/usr/local/apr #make&&makeinstall #cd.. ########安装apr-util######## #tar zxvf apr-util-1.3.8.tar.gz #cd apr-util-1.3.8 #./configure--with-apr=/usr/local/apr #make&&makeinstall #cd.. ########如果已经安装过apache,则需要重新编译安装apache######## tarzxvf httpd-2.2.9.tar.gz cd httpd-2.2.9 # ./configure --prefix=/usr/local/apache --with-apr=/usr/local/apr/bin/apr-1-config --with-apr-util=/usr/local/apr/bin/apu-1-config --enable-modules=so /* DSO模式安装apache (或 --enable-so) --enable-dav --enable-maintainer-mode -- enable-rewrite #