diff options
author | jsdelfino <jsdelfino@13f79535-47bb-0310-9956-ffa450edef68> | 2010-11-13 07:53:10 +0000 |
---|---|---|
committer | jsdelfino <jsdelfino@13f79535-47bb-0310-9956-ffa450edef68> | 2010-11-13 07:53:10 +0000 |
commit | 3ac22b097d9a9e829ec45963a7c3a40dd12b40a1 (patch) | |
tree | ae26d54d061b8f61a1ee2513aa913e8a5e3a1277 /sca-cpp/trunk/INSTALL | |
parent | 1b5f778e514d74d86eee83932b9d5948d7e6e316 (diff) |
Port to HTTPD 2.3.8. Add an auth module to make OpenID, OAuth 1/2 and HTTPD 2.3 Form auth modules play nice together.
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1034693 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to '')
-rw-r--r-- | sca-cpp/trunk/INSTALL | 19 |
1 files changed, 9 insertions, 10 deletions
diff --git a/sca-cpp/trunk/INSTALL b/sca-cpp/trunk/INSTALL index 46ee5dee9a..c8d1c23270 100644 --- a/sca-cpp/trunk/INSTALL +++ b/sca-cpp/trunk/INSTALL @@ -57,7 +57,7 @@ http://svn.apache.org/repos/asf/tuscany/sca-cpp/trunk/ubuntu/ubuntu-gcc-4.5 Then install the following development dependencies: Apache HTTP server and APR: -httpd-2.2.16 (http://httpd.apache.org/) +httpd-2.3.8 (http://httpd.apache.org/) with included libapr and libaprutil built with OpenSSL libssl-0.9.8g @@ -179,7 +179,7 @@ dependencies installed in the standard system directories and some of the dependencies installed under $HOME: ./configure --prefix=$HOME/tuscany-sca-cpp-bin \ ---with-apr=$HOME/httpd-2.2.16-bin --with-httpd=$HOME/httpd-2.2.16-bin \ +--with-apr=$HOME/httpd-2.3.8-bin --with-httpd=$HOME/httpd-2.3.8-bin \ --with-memcached=$HOME/memcached-1.4.5-bin \ --with-tinycdb=$HOME/tinycdb-0.77-bin \ --with-curl=$HOME/curl-7.19.5-bin --with-libxml2=/usr \ @@ -233,15 +233,14 @@ Building dependencies from source Here are example build and install steps for some of the dependencies. Apache HTTPD, including APR, using the HTTP prefork MPM (recommended): -wget http://archive.apache.org/dist/httpd/httpd-2.2.16.tar.gz -tar xzf httpd-2.2.16.tar.gz -cd httpd-2.2.16 +wget http://archive.apache.org/dist/httpd/httpd-2.3.8.tar.gz +tar xzf httpd-2.3.8.tar.gz +cd httpd-2.3.8 ./configure --enable-ssl --enable-proxy --enable-usertrack \ ---enable-mods-shared=most --with-included-apr --with-mpm=prefork \ ---prefix=$HOME/httpd-2.2.16-bin +--with-included-apr --with-mpm=prefork --prefix=$HOME/httpd-2.3.8-bin make make install -export PATH=$HOME/httpd-2.2.16-bin/bin:$PATH +export PATH=$HOME/httpd-2.3.8-bin/bin:$PATH Memcached: wget http://memcached.googlecode.com/files/memcached-1.4.5.tar.gz @@ -288,7 +287,7 @@ wget http://www.apache.org/dist/ws/axis2-c/1_6_0/axis2c-src-1.6.0.tar.gz tar xzf axis2c-src-1.6.0.tar.gz cd axis2c-src-1.6.0 ./configure --enable-libxml2 --enable-openssl \ ---with-apache2=$HOME/httpd-2.2.16-bin/include --prefix=$HOME/axis2c-1.6.0-bin +--with-apache2=$HOME/httpd-2.3.8-bin/include --prefix=$HOME/axis2c-1.6.0-bin make make install export AXIS2C_HOME=$HOME/axis2c-1.6.0-bin @@ -337,7 +336,7 @@ git clone git://github.com/jsdelfino/mod_auth_openid.git cd mod_auth_openid ./autogen.sh ./configure --prefix=$HOME/mod-auth-openid-bin \ ---with-apr=$HOME/httpd-2.2.16-bin --with-httpd=$HOME/httpd-2.2.16-bin \ +--with-apr=$HOME/httpd-2.3.8-bin --with-httpd=$HOME/httpd-2.3.8-bin \ --with-curl=$HOME/curl-7.19.5-bin --with-libopkele=$HOME/libopkele-bin make make install |