https://bugzilla.novell.com/show_bug.cgi?id=848783 https://bugzilla.novell.com/show_bug.cgi?id=848783#c5 --- Comment #5 from darx suse <darx+opensuse@sent.com> 2013-11-04 17:11:12 UTC --- Now that this is in the libapr queue, note that, as suggested in the threads referenced above, a possible APR 'issue' may be that some component in the apr/apr-util/serf/subversion in the distro packaging hasn't been properly IPv6-enabled. As one test of that, I've built from source a version-consistent stack of apr, apr-util, serf and subversion. fyi: cd /home/darx/SVN_TEST rm -rf /home/darx/SVN_TEST/* wget http://download.nextag.com/apache/apr/apr-1.4.8.tar.gz wget http://download.nextag.com/apache/apr/apr-util-1.5.2.tar.gz wget http://serf.googlecode.com/files/serf-1.3.2.tar.bz2 wget http://psg.mtu.edu/pub/apache/subversion/subversion-1.8.4.tar.gz tar zxvf apr-1.4.8.tar.gz tar zxvf apr-util-1.5.2.tar.gz tar jxvf serf-1.3.2.tar.bz2 tar zxvf subversion-1.8.4.tar.gz cd apr-1.4.8 /configure \ --prefix=/home/darx/SVN_TEST/apr1 \ --libdir=/home/darx/SVN_TEST/apr1/lib64 \ --enable-ipv6 make -j4 make install cd ../apr-util-1.5.2 /configure \ --prefix=/home/darx/SVN_TEST/apr1 \ --libdir=/home/darx/SVN_TEST/apr1/lib64 \ --with-apr=/home/darx/SVN_TEST/apr1/bin/apr-1-config make -j4 make install cd ../serf-1.3.2 scons -c scons \ PREFIX=/home/darx/SVN_TEST/serf \ LIBDIR=/home/darx/SVN_TEST/serf/lib64 \ APR=/home/darx/SVN_TEST/apr1/bin/apr-1-config \ APU=/home/darx/SVN_TEST/apr1/bin/apu-1-config scons install cd ../subversion-1.8.4 LDFLAGS="-L/home/darx/SVN_TEST/apr1/lib64 -Wl,-rpath,/home/darx/SVN_TEST/apr1/lib64 -L/home/darx/SVN_TEST/serv/lib64 -Wl,rpath,/home/darx/SVN_TEST/serv/lib64 -laprutil-1 -lapr-1 -lserf" LIBS="-laprutil-1 -lapr-1 -lserf" make clean /configure \ --prefix=/home/darx/SVN_TEST/svn184 \ --libdir=/home/darx/SVN_TEST/svn184/lib64 \ --with-apr=/home/darx/SVN_TEST/apr1/bin/apr-1-config \ --with-apr-util=/home/darx/SVN_TEST/apr1/bin/apu-1-config \ --with-gnu-ld \ --with-serf make -j4 make install verify consistent apr, apr-util, serf, subversion links ldd /home/darx/SVN_TEST/svn184/bin/svn | egrep -i "apr|serf" libsvn_ra_serf-1.so.0 => /home/darx/SVN_TEST/svn184/lib64/libsvn_ra_serf-1.so.0 (0x00007fcf15ae0000) libserf-1.so.1 => /home/darx/SVN_TEST/serf/lib64/libserf-1.so.1 (0x00007fcf158c6000) libaprutil-1.so.0 => /home/darx/SVN_TEST/apr1/lib64/libaprutil-1.so.0 (0x00007fcf14b1e000) libapr-1.so.0 => /home/darx/SVN_TEST/apr1/lib64/libapr-1.so.0 (0x00007fcf148ef000) with resolvers set to IPv6 cat /etc/resolv.conf nameserver 2600:3c01::2 nameserver 2600:3c01::3 options rotate checking hosts dig A www.nlnetlabs.nl +short 213.154.224.1 dig AAAA www.nlnetlabs.nl +short 2001:7b8:206:1::1 no problems with resolver testing 2 specific FAIL cases, as reported previously, S="www.nlnetlabs.nl" T="svn/nsd/tags/NSD_4_0_0_REL/tpkg/manual" both rm -rf test /usr/bin/svn co http://$S/$T test svn: E670002: Unable to connect to a repository at URL 'http://www.nlnetlabs.nl/svn/nsd/tags/NSD_4_0_0_REL/tpkg/manual' svn: E670002: Name or service not known and rm -rf test /home/darx/SVN_TEST/svn184/bin/svn co http://$S/$T test svn: E670002: Unable to connect to a repository at URL 'http://www.nlnetlabs.nl/svn/nsd/tags/NSD_4_0_0_REL/tpkg/manual' svn: E670002: Name or service not known still FAIL. but, testing with the numeric IPv6 IP-address, both rm -rf test /usr/bin/svn co http://[2001:7b8:206:1::1]/$T test ... Checked out revision 4089. and rm -rf test /home/darx/SVN_TEST/svn184/bin/svn co http://[2001:7b8:206:1::1]/$T test ... Checked out revision 4089. still succeed. I.e., *BOTH* the opensuse distro-provided pkgs AND source-built bins still FAIL in the case of URL name targets, and SUCCEED in the case of URL IP-address targets. -- Configure bugmail: https://bugzilla.novell.com/userprefs.cgi?tab=email ------- You are receiving this mail because: ------- You are on the CC list for the bug.