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

Re: [Fwd: Re: 1.1.1 make fails on solaris 5.8 (expat)]

From: anton <anton_at_nezzwerk.com>
Date: 2004-12-01 05:54:25 CET

Ben Reser wrote:
> On Tue, Nov 30, 2004 at 12:45:12PM -0500, anton wrote:
>
>>any comments on this?
>
>
> Yes.
>
>
>>seems like the issue is described in these bug reports:
>>http://subversion.tigris.org/issues/show_bug.cgi?id=699
>>http://subversion.tigris.org/issues/show_bug.cgi?id=1016
>>
>>should i append the info below to one of the bug reports above?
>
>
> No completely unrelated
>
> You say you have
>
>>>libtool-1.5
>
> installed.
>
> And that you're running:
>
>>>./autogen.sh && \
>>>./configure \
>>>--with-apxs=$APACHE_HOME/bin/apxs \
>>>--without-berkeley-db \
>>>--prefix=/opt/Svn \
>>>--with-zlib \
>>>--enable-shared \
>>>--disable-mod-activation \
>>>--with-ssl \
>>>--with-libs=$SSL_HOME:$Z_LIB && \
>>>make && \
>>>make check
>
>
> Remove the ./autogen.sh. You shouldn't be running it with that version
> of libtool, since it has some known issues on Solaris. Basically you're
> following the wrong instructions. You need to follow section II. A. not
> II. B. in the INSTALL document. The only time autogen.sh should be
> being run is when you're building out of a working copy, not from a
> tarball.
>

thank you for your help. i was indeed following the wrong directions.
this is the script i used this time:

MAKE=/usr/local/bin/make
APACHE_HOME=/opt/apache2
SSL_HOME=/opt/OpenSSL
Z_LIB=/usr/local

./configure \
--with-apxs=$APACHE_HOME/bin/apxs \
--without-berkeley-db \
--prefix=/opt/Svn \
--with-zlib \
--enable-shared \
--disable-mod-activation \
--with-ssl \
--with-libs=$SSL_HOME:$Z_LIB && \
$MAKE --jobs 8

and this is the exact same error i got:

/bin/bash ../libtool --quiet --mode=link gcc -L/opt/OpenSSL/lib
-L/usr/local/lib -rpath /opt/Svn/lib -version-info 24:7:0 -o libneon.la
ne_request.lo ne_session.lo ne_basic.lo ne_string.lo ne_uri.lo
ne_dates.lo ne_alloc.lo ne_md5.lo ne_utils.lo ne_socket.lo ne_auth.lo
ne_cookies.lo ne_redirect.lo ne_compress.lo ne_207.lo ne_xml.lo
ne_props.lo ne_locks.lo ne_acl.lo ne_openssl.lo -lssl -lcrypto -lnsl
-lsocket -lz
/export/home/anton/software/src/subversion-1.1.1/apr-util/xml/expat/lib/libexpat.la
libtool: link: cannot find the library
`/export/home/anton/software/src/subversion-1.1.1/apr-util/xml/expat/lib/libexpat.la'
make[2]: *** [libneon.la] Error 1
make[2]: Leaving directory
`/export/home/anton/software/src/subversion-1.1.1/neon/src'
make[1]: *** [subdirs] Error 2
make[1]: Leaving directory
`/export/home/anton/software/src/subversion-1.1.1/neon'
make: *** [external-all] Error 1

in other words, neon is unable to detect expat library, as it was
mentioned in the bug reports above.

interestingly enough, latest from TRUNK works just fine with the
following script:

MAKE=/usr/local/bin/make
APACHE_HOME=/opt/apache2
SSL_HOME=/opt/OpenSSL
Z_LIB=/usr/local

./autogen.sh && \
./configure \
--with-apxs=$APACHE_HOME/bin/apxs \
--with-apr=$APACHE_HOME/bin/apr-config \
--with-apr-util=$APACHE_HOME/bin/apu-config \
--without-berkeley-db \
--prefix=/opt/Svn \
--with-zlib \
--enable-shared \
--disable-mod-activation \
--with-ssl \
--with-libs=$SSL_HOME:$Z_LIB && \
$MAKE --jobs 8 external-all && \
$MAKE --jobs 8 local-all

please let me know if there is anything else i am missing.

thank you.

-anton

---------------------------------------------------------------------
To unsubscribe, e-mail: dev-unsubscribe@subversion.tigris.org
For additional commands, e-mail: dev-help@subversion.tigris.org
Received on Wed Dec 1 05:47:45 2004

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

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