I was able to get subversion linking against the apr libraries in /usr/ local/apache2/lib by adding LDFLAGS="-L/usr/local/apache2/libs" to the configure script.
It worked for one of two reasons. 1. I ran the build as root (/usr/ local/apache2/lib is only readable by root so maybe building as a non- root user was a problem) or 2. I reordered the entries in /etc/ ld.so.conf so that /usr/local/apache2/lib came before /usr/lib64 ldd /usr/local/bin/svn|grep apr libaprutil-1.so.0 => /usr/local/apache2/lib/libaprutil-1.so.0 (0x00002b733aa72000) libapr-1.so.0 => /usr/local/apache2/lib/libapr-1.so.0 (0x00002b733ac94000) However, I'm still getting Unsupported version control system "svn": "/usr/local/lib/ libsvn_subr-1.so.0: undefined symbol: apr_memcache_add_server" I did an ldd /usr/local/lib/libsvn_subr-1.so.0 and verified that it's linked against /usr/local/apache2/libs Frustrating. I anyone has any ideas please let me know. I'm going to take this to the subversion forum too. Ugh. -- You received this message because you are subscribed to the Google Groups "Trac Users" group. To post to this group, send email to [email protected]. To unsubscribe from this group, send email to [email protected]. For more options, visit this group at http://groups.google.com/group/trac-users?hl=en.
