Erik,
I had to install svn 1.6.0-dev, svnsync the repository to get past the
point I was having problems with and then downgrade back to svn 1.4.6
so that trac would continue to work. It's not actually Trac, it's the
python bindings (swig-py) that are giving me the problem. It's
related to neon and the SSL library, I would assume. I'm getting that
all too common error:
> python
Python 2.5.2 (r252:60911, Apr 8 2008, 12:45:11)
[GCC 4.0.2 20050901 (prerelease) (SUSE Linux)] on linux2
Type "help", "copyright", "credits" or "license" for more information.
>>> from svn import core
Traceback (most recent call last):
File "<stdin>", line 1, in <module>
File "/usr/local/lib/svn-python/svn/core.py", line 19, in <module>
from libsvn.core import *
File "/usr/local/lib/svn-python/libsvn/core.py", line 7, in <module>
import _core
ImportError: /usr/local/lib/libsvn_ra_neon-1.so.0: undefined symbol:
SSL_pending
>>> quit
I do a 'make distclean' before I configure and install anything, so we
start from scratch every time.
On my system I only have 1 version of openssl and it's 0.9.8g. I
build neon in its own directory and install it to it's default prefix
with the following config options:
'--with-ssl=openssl'. Configure finds openssl and compiles cleanly.
Then I build the svn trunk with the following configure options: '--
with-ssl' '--with-apr=/services/apache-svn' '--with-apr-util=/services/
apache-svn' '--with-apxs=/services/apache-svn/bin/apxs' '--with-swig'
'--with-neon=/usr/local'. Followed by the standard 'make && make swig-
py && make install && make install-swig-py'. It all compiles cleanly
and installs.
At this point the svn client works with SSL, but the python bindings
crap out. If you need any more info, ask away.
Kris
On 17-Apr-08, at 7:37 AM, Erik Huelsmann wrote:
> On 4/16/08, Kris <kris_at_theendless.org> wrote:
>> Karl,
>>
>> Thanks so much, that did it. It's too bad that I have to run
>> development
>> code though. =\
>>
>> However, running svn 1.6.0-dev did break my trac system =(
>
> That's a bug: new "code" is supposed to be fully backward compatible
> with earlier releases. What was the problem you were experiencing? (Or
> was it a local configuration issue?)
>
> Bye,
>
> Erik.
>
> ---------------------------------------------------------------------
> To unsubscribe, e-mail: users-unsubscribe_at_subversion.tigris.org
> For additional commands, e-mail: users-help_at_subversion.tigris.org
>
---------------------------------------------------------------------
To unsubscribe, e-mail: users-unsubscribe_at_subversion.tigris.org
For additional commands, e-mail: users-help_at_subversion.tigris.org
Received on 2008-04-17 15:52:49 CEST