Upgrade to memcached 1.4.5, postgresql 9.0.1 and gae 1.3.7.
git-svn-id: http://svn.us.apache.org/repos/asf/tuscany@1024520 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
9558dae78c
commit
86c8643e95
2 changed files with 28 additions and 28 deletions
|
@ -62,7 +62,7 @@ with included libapr and libaprutil
|
|||
built with OpenSSL libssl-0.9.8g
|
||||
|
||||
Memcached:
|
||||
memcached-1.4.4 (http://memcached.org/)
|
||||
memcached-1.4.5 (http://memcached.org/)
|
||||
built with libevent-1.4.11
|
||||
|
||||
XML:
|
||||
|
@ -74,7 +74,7 @@ libcurl4-openssl-7.19.5
|
|||
|
||||
JSON:
|
||||
Mozilla TraceMonkey libmozjs (https://wiki.mozilla.org/JavaScript:TraceMonkey)
|
||||
also included in xulrunner-1.9.1.8
|
||||
also included in xulrunner-1.9.2
|
||||
|
||||
Key/value store:
|
||||
tinycdb-0.77 (http://www.corpit.ru/mjt/tinycdb.html)
|
||||
|
@ -91,7 +91,7 @@ libboost-filesystem-1.38.1
|
|||
|
||||
Python:
|
||||
Python 2.6.4 (http://www.python.org/)
|
||||
Google AppEngine 1.3.2 (http://code.google.com/appengine/)
|
||||
Google AppEngine 1.3.7 (http://code.google.com/appengine/)
|
||||
|
||||
Java:
|
||||
a Java 5+ JDK (http://openjdk.java.net/, http://harmony.apache.org/)
|
||||
|
@ -114,7 +114,7 @@ build it from source at git://github.com/jsdelfino/libstrophe.git
|
|||
requires Expat 2.0.1 (http://sourceforge.net/projects/expat/)
|
||||
|
||||
SQL Database:
|
||||
postgresql-9.0 (http://www.postgresql.org/)
|
||||
postgresql-9.0.1 (http://www.postgresql.org/)
|
||||
|
||||
Logging:
|
||||
Facebook Scribe 2.2 (http://github.com/facebook/scribe/downloads)
|
||||
|
@ -180,11 +180,11 @@ 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-memcached=$HOME/memcached-1.4.4-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 \
|
||||
--with-js-include=/usr/include/xulrunner-1.9.1.8/unstable \
|
||||
--with-js-lib=/usr/lib/xulrunner-1.9.1.8 \
|
||||
--with-js-include=/usr/include/xulrunner-1.9.2 \
|
||||
--with-js-lib=/usr/lib/xulrunner-1.9.2 \
|
||||
--enable-libcloud \
|
||||
--with-libcloud=$HOME/libcloud-0.3.1-bin \
|
||||
--enable-threads \
|
||||
|
@ -196,7 +196,7 @@ dependencies installed under $HOME:
|
|||
--enable-queue --with-qpidc=$HOME/qpidc-0.6-bin \
|
||||
--enable-chat --with-libstrophe=$HOME/libstrophe-bin \
|
||||
--with-vysper=$HOME/vysper-0.5 \
|
||||
--enable-sqldb --with-pgsql=$HOME/postgresql-9.0-bin \
|
||||
--enable-sqldb --with-pgsql=$HOME/postgresql-9.0.1-bin \
|
||||
--enable-log --with-thrift=$HOME/thrift-0.2.0-bin \
|
||||
--with-scribe=$HOME/scribe-2.2-bin \
|
||||
--enable-openid --with-mod-auth-openid=$HOME/mod-auth-openid-bin \
|
||||
|
@ -243,10 +243,10 @@ make install
|
|||
export PATH=$HOME/httpd-2.2.16-bin/bin:$PATH
|
||||
|
||||
Memcached:
|
||||
wget http://memcached.googlecode.com/files/memcached-1.4.4.tar.gz
|
||||
tar xzf memcached-1.4.4.tar.gz
|
||||
cd memcached-1.4.4
|
||||
./configure --prefix=$HOME/memcached-1.4.4-bin
|
||||
wget http://memcached.googlecode.com/files/memcached-1.4.5.tar.gz
|
||||
tar xzf memcached-1.4.5.tar.gz
|
||||
cd memcached-1.4.5
|
||||
./configure --prefix=$HOME/memcached-1.4.5-bin
|
||||
make
|
||||
make install
|
||||
|
||||
|
@ -342,10 +342,10 @@ make
|
|||
make install
|
||||
|
||||
PostgreSQL:
|
||||
wget http://wwwmaster.postgresql.org/download/mirrors-ftp/source/9.0alpha5/postgresql-9.0alpha5.tar.gz
|
||||
tar xzf postgresql-9.0alpha5.tar.gz
|
||||
cd postgresql-9.0alpha5
|
||||
./configure --prefix=$HOME/postgresql-9.0-bin
|
||||
wget ftp://ftp9.us.postgresql.org/pub/mirrors/postgresql/source/v9.0.1/postgresql-9.0.1.tar.gz
|
||||
tar xzf postgresql-9.0.1.tar.gz
|
||||
cd postgresql-9.0.1
|
||||
./configure --prefix=$HOME/postgresql-9.0.1-bin
|
||||
make
|
||||
make install
|
||||
|
||||
|
|
|
@ -60,10 +60,10 @@ sudo apt-get -y install libevent-dev
|
|||
if [ "$?" != "0" ]; then
|
||||
exit $?
|
||||
fi
|
||||
wget http://memcached.googlecode.com/files/memcached-1.4.4.tar.gz
|
||||
tar xzf memcached-1.4.4.tar.gz
|
||||
cd memcached-1.4.4
|
||||
./configure --prefix=$build/memcached-1.4.4-bin
|
||||
wget http://memcached.googlecode.com/files/memcached-1.4.5.tar.gz
|
||||
tar xzf memcached-1.4.5.tar.gz
|
||||
cd memcached-1.4.5
|
||||
./configure --prefix=$build/memcached-1.4.5-bin
|
||||
make
|
||||
make install
|
||||
if [ "$?" != "0" ]; then
|
||||
|
@ -124,8 +124,8 @@ fi
|
|||
cd $build
|
||||
|
||||
# Install Google AppEngine SDK
|
||||
wget http://googleappengine.googlecode.com/files/google_appengine_1.3.2.zip
|
||||
unzip google_appengine_1.3.2.zip
|
||||
wget http://googleappengine.googlecode.com/files/google_appengine_1.3.7.zip
|
||||
unzip google_appengine_1.3.7.zip
|
||||
|
||||
# Build Apache Axis2/C
|
||||
sudo apt-get -y install pkg-config
|
||||
|
@ -263,10 +263,10 @@ sudo apt-get -y install libreadline-dev
|
|||
if [ "$?" != "0" ]; then
|
||||
exit $?
|
||||
fi
|
||||
wget ftp://ftp9.us.postgresql.org/pub/mirrors/postgresql/source/v9.0beta4/postgresql-9.0beta4.tar.gz
|
||||
tar xzf postgresql-9.0beta4.tar.gz
|
||||
cd postgresql-9.0beta4
|
||||
./configure --prefix=$build/postgresql-9.0-bin
|
||||
wget ftp://ftp9.us.postgresql.org/pub/mirrors/postgresql/source/v9.0.1/postgresql-9.0.1.tar.gz
|
||||
tar xzf postgresql-9.0.1.tar.gz
|
||||
cd postgresql-9.0.1
|
||||
./configure --prefix=$build/postgresql-9.0.1-bin
|
||||
make
|
||||
make install
|
||||
if [ "$?" != "0" ]; then
|
||||
|
@ -336,7 +336,7 @@ git clone git://git.apache.org/tuscany-sca-cpp.git
|
|||
cd tuscany-sca-cpp
|
||||
cp etc/git-exclude .git/info/exclude
|
||||
./bootstrap
|
||||
./configure --prefix=$build/tuscany-sca-cpp-bin --with-curl=$build/curl-7.19.5-bin --with-apr=$build/httpd-2.2.16-bin --with-httpd=$build/httpd-2.2.16-bin --with-memcached=$build/memcached-1.4.4-bin --with-tinycdb=$build/tinycdb-0.77-bin --with-js-include=$build/tracemonkey-bin/include/js --with-js-lib=$build/tracemonkey-bin/lib --with-libcloud=$build/libcloud-0.3.1-bin --enable-threads --enable-python --enable-gae --with-gae=$build/google_appengine --enable-java --with-java=/usr/lib/jvm/java-6-openjdk --enable-webservice --with-libxml2=$build/libxml2-2.7.7-bin --with-axis2c=$build/axis2c-1.6.0-bin --enable-queue --with-qpidc=$build/qpidc-0.6-bin --enable-chat --with-libstrophe=$build/libstrophe-bin --with-vysper=$build/vysper-0.5 --enable-sqldb --with-pgsql=$build/postgresql-9.0-bin --enable-log --with-thrift=$build/thrift-0.2.0-bin --with-scribe=$build/scribe-2.2-bin --enable-openid --with-mod-auth-openid=$build/mod-auth-openid-bin --enable-oauth --with-liboauth=$build/liboauth-0.9.1-bin
|
||||
./configure --prefix=$build/tuscany-sca-cpp-bin --with-curl=$build/curl-7.19.5-bin --with-apr=$build/httpd-2.2.16-bin --with-httpd=$build/httpd-2.2.16-bin --with-memcached=$build/memcached-1.4.5-bin --with-tinycdb=$build/tinycdb-0.77-bin --with-js-include=$build/tracemonkey-bin/include/js --with-js-lib=$build/tracemonkey-bin/lib --with-libcloud=$build/libcloud-0.3.1-bin --enable-threads --enable-python --enable-gae --with-gae=$build/google_appengine --enable-java --with-java=/usr/lib/jvm/java-6-openjdk --enable-webservice --with-libxml2=$build/libxml2-2.7.7-bin --with-axis2c=$build/axis2c-1.6.0-bin --enable-queue --with-qpidc=$build/qpidc-0.6-bin --enable-chat --with-libstrophe=$build/libstrophe-bin --with-vysper=$build/vysper-0.5 --enable-sqldb --with-pgsql=$build/postgresql-9.0.1-bin --enable-log --with-thrift=$build/thrift-0.2.0-bin --with-scribe=$build/scribe-2.2-bin --enable-openid --with-mod-auth-openid=$build/mod-auth-openid-bin --enable-oauth --with-liboauth=$build/liboauth-0.9.1-bin
|
||||
make
|
||||
make install
|
||||
if [ "$?" != "0" ]; then
|
||||
|
@ -345,5 +345,5 @@ fi
|
|||
cd $build
|
||||
|
||||
# Create bin archive
|
||||
tar czf tuscany-sca-cpp-all-1.0.tar.gz tuscany-sca-cpp tuscany-sca-cpp-bin axis2c-1.6.0-bin libxml2-2.7.7-bin curl-7.19.5-bin httpd-2.2.16-bin tracemonkey-bin google_appengine libstrophe-bin memcached-1.4.4-bin tinycdb-0.77-bin qpidc-0.6-bin vysper-0.5 postgresql-9.0-bin thrift-0.2.0-bin scribe-2.2-bin libcloud-0.3.1-bin htmltidy-bin libopkele-bin mod-auth-openid-bin liboauth-0.9.1-bin
|
||||
tar czf tuscany-sca-cpp-all-1.0.tar.gz tuscany-sca-cpp tuscany-sca-cpp-bin axis2c-1.6.0-bin libxml2-2.7.7-bin curl-7.19.5-bin httpd-2.2.16-bin tracemonkey-bin google_appengine libstrophe-bin memcached-1.4.5-bin tinycdb-0.77-bin qpidc-0.6-bin vysper-0.5 postgresql-9.0.1-bin thrift-0.2.0-bin scribe-2.2-bin libcloud-0.3.1-bin htmltidy-bin libopkele-bin mod-auth-openid-bin liboauth-0.9.1-bin
|
||||
|
||||
|
|
Loading…
Add table
Reference in a new issue