[svn.haxx.se] · SVN Dev · SVN Users · SVN Org · TSVN Dev · TSVN Users · Subclipse Dev · Subclipse Users · this month's index

RE: compile svn-1.6.1 on aix 5.3 error

From: <webpost_at_tigris.org>
Date: Mon, 27 Apr 2009 20:18:34 -0700 (PDT)

This is my compile process in compile subversion-1.5.3, I just use fsfs, and not use http. Read INSTALL & README first before compile!

Uncompress & untar all the source file. Make sure include subversion-dep-1.5.3. All the tools can download from http://www.gnu.org

I just install in $HOME/local, so all configure use parameter "--prefix=$HOME/local"

1. compile libtool, I use libtool-1.5.22
./configure --prefix=$HOME/local
Make
Make install

2. compile python, I use python 2.4.5
./configure --prefix=$HOME/local --with-gcc="xlc_r -q64" --with-cxx="xlC_r -q64" --disable-ipv6 AR="ar -X64"
Make
Make install

afte compile & install, set the envirment PATH
export PATH=$HOME/local/bin:$PATH

3.compile m4, I use m4-1.4.10
./configure --prefix=$HOME/local
make
make install

4.compile autoconf, I use autoconf 2.61
./configure --prefix=$HOME/local
make
make install

5.compile zlib
cd subversion-1.5.3/zlib
./configure --prefix=$HOME/local
Make
Make install

6.compile svn, (Because i dont use http server & openssl, I delete serf directry in subversion-1.5.3, or configrue will make error)
cd subversion-1.5.3
rm -rf serf
./autogen.sh
./configure --prefix=$HOME/local --with-zlib=$HOME/local
make
make install

------------------------------------------------------
http://subversion.tigris.org/ds/viewMessage.do?dsForumId=1065&dsMessageId=1956943

To unsubscribe from this discussion, e-mail: [users-unsubscribe_at_subversion.tigris.org].
Received on 2009-04-28 06:11:59 CEST

This is an archived mail posted to the Subversion Users mailing list.

This site is subject to the Apache Privacy Policy and the Apache Public Forum Archive Policy.