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

Re: --with-zlib seems to have no effect on libsvn_delta

From: Philip Martin <philip.martin_at_wandisco.com>
Date: Tue, 06 Jan 2015 09:27:01 +0000

亚男(Timandes) <timands_at_gmail.com> writes:

> This is my configuration options:
>
> # ./configure --prefix=/usr/local/subversion-1.8.11 \
> --with-apr=/usr/local/apr-1.4.6/bin/apr-1-config \
> --with-apr-util=/usr/local/apr-util-1.5.1/bin/apu-1-config 、
> --with-sqlite=/usr/local/sqlite-autoconf-3071501 、
> --with-zlib=/usr/local/zlib-1.2.8
>
> after that, is:
> # make && make install
>
> But when i try to use it, i found this warning:
> # /usr/local/subversion-1.8.11/bin/svn --version
> /usr/local/subversion-1.8.11/bin/svn: /lib64/libz.so.1: no version
> information available (required by
> /usr/local/subversion-1.8.11/lib/libsvn_delta-1.so.0)
> svn, version 1.8.11 (r1643975)
> ...

--with-zlib has caused configure to find the local zlib however it has
not arranged for RPATH to be set in the shared libraries to find zlib in
the non-standard location. You have two options:

  - run your current build using something like:

     LD_LIBRARY_PATH=/usr/local/zlib-1.2.8/lib

  - build again using something like

     LD_FLAGS=-Wl,-rpath,/usr/local/zlib-1.2.8/lib

-- 
Philip Martin | Subversion Committer
WANdisco // *Non-Stop Data*
Received on 2015-01-06 10:27:33 CET

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.