Samuel Progin wrote:
> Hello,
>
> I'm trying to compile SVN 1.4.0 on a tru64 5.1a Unix system. I found
> Thomas Hemmer's workaround, sounding like:
>
> # cd /users/local/operator/delivery_svn/subversion-1.4.0/zlib/
> # ./configure --prefix=/usr/local/bin
> # make install
> # cd ..
> # ./configure --prefix=/usr/local/bin
>
> It works perfectly on a Linux Slackware, but returns the same error
> under Tru64. Did anyone compile SVN on a Unix system?
>
You don't say if you are using gcc or the native compiler.
gcc automatically searches /usr/local/include, so if you are using the
native compiler and not gcc,
I just set the CC and CXX environment variables to include the
appropriate options. i.e.
setenv CC "cc -std1 -I/usr/local/include"
setenv CXX "cxx -I/usr/local/include"
or
export CC="cc -std1 -I/usr/local/include"
export CXX="cxx -I/usr/local/include"
before running configure. You can also set them on the configure
command line.
Assuming that zlib was installed in /usr/local, that is.
Also, your --prefix options should be /usr/local, not /usr/local/bin.
Dean
---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org
Received on Mon Oct 2 21:50:29 2006