diff options
author | jsdelfino <jsdelfino@13f79535-47bb-0310-9956-ffa450edef68> | 2010-08-14 18:46:26 +0000 |
---|---|---|
committer | jsdelfino <jsdelfino@13f79535-47bb-0310-9956-ffa450edef68> | 2010-08-14 18:46:26 +0000 |
commit | d6451b81703c809abcd0f51e74abdba7c732b513 (patch) | |
tree | fab2013702ae33a07e5bb43abad606e0201b485b /sca-cpp/trunk/INSTALL | |
parent | d090bd129574458379aa9997345e7ca5b2c24886 (diff) |
Some refactoring of the HTTP support, tunnel Memcached requests over HTTPS and add HTTPS config to store-cluster sample.
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@985561 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'sca-cpp/trunk/INSTALL')
-rw-r--r-- | sca-cpp/trunk/INSTALL | 16 |
1 files changed, 8 insertions, 8 deletions
diff --git a/sca-cpp/trunk/INSTALL b/sca-cpp/trunk/INSTALL index df48099740..cd8b24d9c1 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-15 (http://httpd.apache.org/) +httpd-2.2.16 (http://httpd.apache.org/) with included libapr and libaprutil built with OpenSSL libssl-0.9.8g @@ -223,14 +223,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://www.apache.org/dist/httpd/httpd-2.2.15.tar.gz -tar xzf httpd-2.2.15.tar.gz -cd httpd-2.2.15 +wget http://www.apache.org/dist/httpd/httpd-2.2.16.tar.gz +tar xzf httpd-2.2.16.tar.gz +cd httpd-2.2.16 ./configure --enable-ssl --enable-proxy --enable-mods-shared=most \ ---with-included-apr --with-mpm=prefork --prefix=$HOME/httpd-2.2.15-bin +--with-included-apr --with-mpm=prefork --prefix=$HOME/httpd-2.2.16-bin make make install -export PATH=$HOME/httpd-2-2.15-bin/bin:$PATH +export PATH=$HOME/httpd-2.2.16-bin/bin:$PATH Memcached: wget http://memcached.googlecode.com/files/memcached-1.4.4.tar.gz @@ -277,7 +277,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.15-bin/include --prefix=$HOME/axis2c-1.6.0-bin +--with-apache2=$HOME/httpd-2.2.16-bin/include --prefix=$HOME/axis2c-1.6.0-bin make make install export AXIS2C_HOME=$HOME/axis2c-1.6.0-bin @@ -326,7 +326,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.15-bin --with-httpd=$HOME/httpd-2.2.15-bin \ +--with-apr=$HOME/httpd-2.2.16-bin --with-httpd=$HOME/httpd-2.2.16-bin \ --with-curl=$HOME/curl-7.19.5-bin --with-libopkele=$HOME/libopkele-bin make make install |