Re: Bug report: svnversion crashes during Subversion build/install
On 2016Jan 7,, at 17:32, Ryan Schmidt wrote: > > During the build of Subversion 1.9.3, it calls the just-built svnversion > program. On OS X at least, this crashes because the just-built Subversion > libraries have not been installed yet so they are not in their expected > place. The crash causes OS X to create a crash log file, which I've attached, > but the relevant bit is: > > > Dyld Error Message: > Library not loaded: /opt/local/lib/libsvn_wc-1.0.dylib > Referenced from: /opt/local/var/macports/*/svnversion > Reason: image not found > > > I do set DESTDIR; that may be necessary to reproduce the problem. > > A solution on OS X is for the build system to set DYLD_LIBRARY_PATH to the > directory where the libraries can be found in the build directory, anytime > you want to run a just-built program that links with just-built libraries. I > imagine the problem would affect other unix operating systems as well, and > for them the solution may be to set LD_LIBRARY_PATH, but I am not familiar > with non-OS X unix systems. We have been seeing this problem a lot with FOSS on El Crapitan, caused by the new System Integrity Protection [SIP]. Unfortunately, the engineers who came up with this feature must not have used any software that wants to run tests prior to installation. Anyway, setting DYLD_LIBRARY_PATH [or any DYLD_*] won’t help: SIP makes sure that all subshells, scripts, etc get a bare environment specifically to prevent exactly what you are trying to do. As a user, the fix is to disable SIP before compiling. For the project, the short-term fix is probably going to be skipping the test on OS 10.11. Sent from David-Lowes-Mac-mini One may tolerate a world of demons for the sake of an angel.
Local Repo
Greetings I'm trying to set up a local repository for my schoolwork. The book doesn't seem to have many examples with this type of setup, so i seem to be stumbling a bit. First off, this part seemed to go okeh: $ sudo svnadmin create /usr/local/svn/repos But then this bit doesn't: $ sudo svn import -m "initial import" cashier.cpp file:usr/local/svn/repos Password: svn: E150002: Path 'file:///usr/local/svn/repos' already exists How should i be going about this? sent from Mountain Lion
Re: Local Repo
On 2014 Sep 25, at 8:47 AM, jbl...@icloud.com wrote: > Your command was trying to import 'cashier.cpp' into the repository as the > name 'repos'. Thank you for your thorough explanation. sent from Mountain Lion
Re: SSL V3 Vulnerability in HTTP Repository Access.
On 2014 Oct 25, at 6:33 PM, Mohsin wrote: >> If you use HTTP "http://"; you are not using SSL/TLS. You are not >> affected by POODLE, but also not using encryption. > > We are using HTTP so we are not affected by POODLE. > > >> If using SSH/TLS, the server does not use serf. Turn off SSL 3.0 in the >> Apache httpd configuration. No upgrade required, simple configuration >> change. > > Can you tell when SSH/TLS is used ? In my case we are using HTTP protocol. > How can I disable SSL 3.0 in Apache conf ? As has been hinted at already, HTTP does not use *any* encryption. In order to encrypt hypertext file transfers, one would need to set the web server and clients to HTTPS protocol. Most likely your server is Apache, but in any case such configuration details are off-topic for this list. Please read up on, for example, 'man https' or do a web on 'apache configuration'. sent from Mountain Lion