You are viewing a plain text version of this content. The canonical link for it is here.
Posted to users@subversion.apache.org by Samuel Progin <sa...@gmail.com> on 2006/10/02 14:47:50 UTC

zlib dependancy broken on Unix

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?

Thanks a lot!

Sam

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org

Re: zlib dependancy broken on Unix

Posted by Garrett Rooney <ro...@electricjellyfish.net>.
On 10/2/06, Samuel Progin <sa...@gmail.com> 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?

Uhh, you'd be a lot more likely to get a useful response if you
included the actual error you're seeing.  As for "Did anyone compile
SVN on a Unix system", I think you mean "Did anyone compile SVN on a
tru64 system", there are many types of Unix systems out there, and SVN
builds on a great many of them (I've personally built 1.4 on Linux,
BSD and Solaris, FWIW).

-garrett

---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe@subversion.tigris.org
For additional commands, e-mail: users-help@subversion.tigris.org

Re: zlib dependancy broken on Unix

Posted by Dean Bennett <de...@gbtn.net>.
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