I'm trying to build the 1.7 client from the trunk using the INSTALL file. I think I passed all steps, I did not see any errors/problems. Svn version shows the 1.7 version. This seems to work find except for that last message _mcleanup: gmon.out: Permission denied. Can I ignore that message?
A bigger problem is that not all of the RA modules are available, especially the module for the http/https scheme is missing, which is the one I want to use for my test. I think I have all the required bits installed so this is probably just a configuration problem? In the INSTALL file there is some relevant info I'm not sure about $LD_LIBRARY_PATH. I tried /usr/local/apr/lib export LD_LIBRARY_PATH=/usr/local/apr/lib and sudo ldconfig But that doesn't fix the problem. What am I doing wrong? Thanks and Regards, Onno ostraa...@ostraaten-lenovo-laptop ~/subversion_export $ svn --version svn, version 1.7.0 (dev build) compiled Jul 6 2010, 11:39:20 Copyright (C) 2010 The Apache Software Foundation. This software consists of contributions made by many people; see the NOTICE file for more information. Subversion is open source software, see http://subversion.apache.org/ The following repository access (RA) modules are available: * ra_svn : Module for accessing a repository using the svn network protocol. - handles 'svn' scheme * ra_local : Module for accessing a repository on local disk. - handles 'file' scheme _mcleanup: gmon.out: Permission denied ostraa...@ostraaten-lenovo-laptop ~/subversion_export $ >From the INSTALL file Since the resulting binary depends on shared libraries, the destination library directory must be identified in your operating system's library search path. That is in either /etc/ld.so.conf or $LD_LIBRARY_PATH for Linux systems and in /etc/rc.conf for FreeBSD, followed by a run of the 'ldconfig' program. Check your system documentation for details. By identifying the destination directory, Subversion will be able to dynamically load repository access plugins. If you try to do a checkout and see an error like: subversion/libsvn_ra/ra_loader.c:209: (apr_err=170000) svn: Unrecognized URL scheme 'https://svn.apache.org/repos/asf/subversion/trunk' It probably means that the dynamic loader/linker can't find all of the libsvn_* libraries.