dav_svn__get_inherited_props_report and NetBSD 5.2 install
G'day, I'm trying to get subversion 1.8 up on a NetBSD 5.2 (amd64) box using pkgsrc, and am seeing the following at run-time : bash-4.2# /etc/rc.d/apache start Starting apache. httpd: Syntax error on line 166 of /usr/pkg/etc/httpd/httpd.conf: Cannot load libexec/mod_dav_svn.so into server: /usr/pkg/libexec/mod_dav_svn.so: Undefined PLT symbol "dav_svn__get_inherited_props_report" (symnum = 421) I've asked the pkgsrc people and they're of the opinion that this is a subversion issue not a pkgsrc issue, so here I am. I've grepped through the source code and found dav_svn__get_inherited_props_report in three files : subversion-1.8.0/subversion/mod_dav_svn/dav_svn.h subversion-1.8.0/subversion/mod_dav_svn/reports/inherited-props.c subversion-1.8.0/subversion/mod_dav_svn/version.c and if I check the freshly built mod_dav_svn.so : bash-4.2# strings /usr/pkg/libexec/mod_dav_svn.so | grep dav_svn__get_inherited_props_report dav_svn__get_inherited_props_report It's there. Any ideas as to why I'm seeing that error? Please CC to me if possible. Thank you Carl
Re: dav_svn__get_inherited_props_report and NetBSD 5.2 install
On 10/07/2013 8:42 PM, Philip Martin wrote: Branko Čibej writes: You could also try: nm /usr/pkg/libexec/mod_dav_svn.so | grep dav_svn__get_inherited_props_report that will, unlike 'strings', tell you if the symbol is actually exported from the shared library. Or perhaps "objdump -T" instead of "nm". reports/inherited-props.c is new in 1.8 so if you somehow built the 1.8 mod_dav_svn source code with the 1.7 rules then perhaps that file was not compiled or linked. That would cause warnings about undefined symbols at build time but such warnings are sometimes ignored. That may have happened due to pkgsrc's build setup. I'll bounce this back to the pkgsrc people and see what they think. Thank you Carl
Re: dav_svn__get_inherited_props_report and NetBSD 5.2 install
On 10/07/2013 8:42 PM, Philip Martin wrote: reports/inherited-props.c is new in 1.8 so if you somehow built the 1.8 mod_dav_svn source code with the 1.7 rules then perhaps that file was not compiled or linked. That would cause warnings about undefined symbols at build time but such warnings are sometimes ignored. It looks like it's a problem in pkgsrc's build, thank you for your help. Carl
Re: Suggestion to change the name "Subversion"
On 12/08/2013 6:01 PM, Ulrich Eckhardt wrote: Am 12.08.2013 03:24, schrieb Bill George: This is to prevent confusion to non-technical people who could mistake the meaning of the name and associate it to negative activity like hacking or stealing. Just a thought and suggestion that could have far reaching implications. There is nothing negative when it comes to subverting injustice. There isn't anything inherently negative to hacking either. And stealing can as well be committed by shirt'n'tie people and without breaking any law. I'm not at all convinced by your arguments. Please consider this. Please consider standing up against injustice and stupidity instead. We're not going to change the "root" user either.
TortoiseSVN, OPTIONS request on 'foo' failed: 501 Not Implemented
G'day, I have a SVN repository that runs through apache (2.4), that works fine 99% of the time, but I am seeing the error OPTIONS request on '/svn/hcc_wko' failed: 501 Not Implemented only on one windows 7 64 bit PC. This happens if I try to checkout, or if I grab a copy of a working checkout from another win7 64 bit PC and then try an update. Tortoise is the latest version. SVN is 1.8.8 on a NetBSD server running amd64 from NetBSD's pkgsrc. The server logs show : 161.43.212.211 - - [23/Apr/2014:14:55:22 +1000] "OPTIONS /svn/hcc_wko HTTP/1.1" 401 381 161.43.212.211 - glenn [23/Apr/2014:14:55:41 +1000] "OPTIONS /svn/hcc_wko HTTP/1.1" 200 191 161.43.212.211 - - [23/Apr/2014:14:55:42 +1000] "OPTIONS /svn/hcc_wko HTTP/1.1" 401 381 161.43.212.211 - glenn [23/Apr/2014:14:55:42 +1000] "OPTIONS /svn/hcc_wko HTTP/1.1" 200 191 161.43.212.211 - - [23/Apr/2014:14:55:43 +1000] "OPTIONS /svn/hcc_wko HTTP/1.1" 401 381 161.43.212.211 - glenn [23/Apr/2014:14:55:44 +1000] "OPTIONS /svn/hcc_wko HTTP/1.1" 200 191 Any hints? Carl
Re: TortoiseSVN, OPTIONS request on 'foo' failed: 501 Not Implemented
On 23/04/2014 7:39 PM, Bert Huijben wrote: The server didn't sent the error 501 if this is really all the log output there is. Any hints? So I would recommend checking for proxy servers, firewalls and/or virus scanners that change the behavior of web requests. It's not my laptop, I will check it out next time I see it. Thank you Carl