Re: questions regarding selfupdate issue

2014-11-15 Thread Clemens Lang
Hi René, - On 15 Nov, 2014, at 01:13, René J.V. Bertin rjvber...@gmail.com wrote: I did run with the prefix set to the actual location for some time (and /opt/local just an easy entry point for my own convenience). I don't remember if these errors started after that, but they probably

Re: questions regarding selfupdate issue

2014-11-15 Thread René J . V . Bertin
On Saturday November 15 2014 12:59:57 Clemens Lang wrote: Hi Clemens, the right directory (which it did if you symlinked it). Yep. The same problem where the Portfile content is being used as filename? Yes. Here's a fresh one from my 10.9.4 VM, this time unpolluted: {{{ Warning: Failed to

Re: questions regarding selfupdate issue

2014-11-15 Thread Clemens Lang
Hi René, - On 15 Nov, 2014, at 15:02, René J.V. Bertin rjvber...@gmail.com wrote: Yes. Here's a fresh one from my 10.9.4 VM, this time unpolluted: Warning: Failed to open Portfile from registry for avahi @0.6.31_12+gtk+gtk3+python27+x11 […] Warning: Failed to open Portfile from

Statically linked binaries killed by signal 9 on Yosemite

2014-11-15 Thread Qianqian Fang
hi everyone I have compiled a set of binaries on previous versions of Mac (mostly OSX 10.6) with macports gcc/g++ using static linking, and thought that these binaries will be supported in the future versions of MacOS. However, several users of my software package reported failure on

Re: Statically linked binaries killed by signal 9 on Yosemite

2014-11-15 Thread Brandon Allbery
On Sat, Nov 15, 2014 at 12:17 PM, René J.V. rjvber...@gmail.com wrote: Have you asked your users to start the executable in the debugger to see if the SIGTERM results from an abort function being called or something else? 9 is SIGKILL, not SIGTERM. I am under the impression that Apple

Re: Statically linked binaries killed by signal 9 on Yosemite

2014-11-15 Thread Michael Crawford
Apple has never guaranteed support for fully static binaries, rather it has explicitly discouraged them. The reason is that Apple wants to be free to change the binary interface for system calls. My understanding is that they are, in general, implemented by sending Mach messages from a dylib

Re: Statically linked binaries killed by signal 9 on Yosemite

2014-11-15 Thread Qianqian Fang
On 11/15/2014 12:17 PM, René J.V. Bertin wrote: Have you asked your users to start the executable in the debugger to see if the SIGTERM results from an abort function being called or something else? I asked my users to try valgrind, but one of them mentioned valgrind has not yet been

Re: Statically linked binaries killed by signal 9 on Yosemite

2014-11-15 Thread Michael Crawford
valgrind has supported OS X for a few years now. If you can't find a prepackaged valgrind build I'd be happy to build it for you then send you the binary. If you don't want to actually install Yosemite on your own Mac, there is a documented procedure for imaging a bootable drive from the OS X

Re: Statically linked binaries killed by signal 9 on Yosemite

2014-11-15 Thread Brandon Allbery
On Sat, Nov 15, 2014 at 12:53 PM, Qianqian Fang fan...@gmail.com wrote: On 11/15/2014 12:17 PM, René J.V. Bertin wrote: Have you asked your users to start the executable in the debugger to see if the SIGTERM results from an abort function being called or something else? I asked my users

Re: Statically linked binaries killed by signal 9 on Yosemite

2014-11-15 Thread Brandon Allbery
On Sat, Nov 15, 2014 at 11:51 AM, Qianqian Fang fan...@gmail.com wrote: I have compiled a set of binaries on previous versions of Mac (mostly OSX 10.6) with macports gcc/g++ using static linking, and thought that these binaries will be supported in the future versions of MacOS. I should note

Re: questions regarding selfupdate issue

2014-11-15 Thread Clemens Lang
Hi, - On 15 Nov, 2014, at 18:03, René J.V. Bertin rjvber...@gmail.com wrote: A priori I am never more than a single point release behind. When was the transition to v2.0.0 again? Years ago, but this change wasn't in the transition to 2.0.0, but in the 2.2.1 - 2.3.0 transition, which

Squid3 ERROR: ARP / MAC / EUI-* pb

2014-11-15 Thread Pierre Malard
Hi, I have a lot of problems with Squid3. Each time i try to use it, I have this message in cache.log file: kid1| ERROR: ARP / MAC / EUI-* operations not supported on this operating system. and this sort of message in access.log file: 1416079247.800 22 Request_IP TCP_MISS/503 4060 GET

Re: Thank you!

2014-11-15 Thread Bradley Giesbrecht
On Nov 12, 2014, at 1:24 PM, Eneko Gotzon enekogot...@gmail.com wrote: What a pleasure getting software so easily installed! Thank you all MacPorters! :) You are most welcome. Regards, Bradley Giesbrecht (pixilla) signature.asc Description: Message signed with OpenPGP using GPGMail

Re: Statically linked binaries killed by signal 9 on Yosemite

2014-11-15 Thread Dave Horsfall
On Sat, 15 Nov 2014, Michael Crawford wrote: If you can't find a prepackaged valgrind build I'd be happy to build it for you then send you the binary. --- Fetching distfiles for valgrind Error: valgrind @3.10.0 is only compatible with Mac OS X 10.5, 10.6, 10.7, 10.8 and 10.9 Error:

Re: [KDE/Mac] org.kde.knotify

2014-11-15 Thread René J . V . Bertin
On Saturday November 15 2014 23:57:09 Marko Käning wrote: Hi Marko, On 13 Nov 2014, at 13:19 , René J.V. Bertin rjvber...@gmail.com wrote: Is there a reason why it's not symlinked to the knotify4 app bundle exec, or the xml file changed to point there directly? that’s something which

Re: Statically linked binaries killed by signal 9 on Yosemite

2014-11-15 Thread Jeremy Lavergne
http://stackoverflow.com/questions/26564125/yosemite-and-valgrind From the above, Valgrind is notorious for taking their sweet time supporting new versions of OSX. You're just going to have to wait. On Nov 15, 2014, at 7:11 PM, Dave Horsfall wrote: Hmmm... The port for 10.10 not yet

Re: Statically linked binaries killed by signal 9 on Yosemite

2014-11-15 Thread Michael Crawford
valgrind does two main things: it emulates the Instruction Set Architecture of the microprocessor (x86_64 in Yosemite's case), and it also wraps all - or at least most - of the system and library calls with its own. That is, if you call, say, fopen(), when you run your code under valgrind, you'll

Re: questions regarding selfupdate issue

2014-11-15 Thread Ryan Schmidt
On Nov 15, 2014, at 2:00 PM, René J.V. Bertin wrote: On Saturday November 15 2014 19:48:20 Clemens Lang wrote: of interest here. The key is `portfiles_update_needed` being present and set to one, which means the conversion didn't run or successfully finish on your Yes, that's what I

Re: Statically linked binaries killed by signal 9 on Yosemite

2014-11-15 Thread Michael
OS X has vast numbers of APIs. Some of these, while strictly speaking they may be well-documented, it can be quite difficult to actually _find_ the documentation. ... Back in the day I figured out how to talk directly to the audio driver, without going through QuickTime. It actually