Re: [q-lang-users] q 7.11 build fails on Mac OS X 10.3.9
Brought to you by:
agraef
From: Ryan S. <rya...@us...> - 2008-06-10 03:47:58
|
On Jun 9, 2008, at 19:05, Albert Graef wrote: > Ryan Schmidt wrote: > >> #if defined(__APPLE__) >> #define SETPGRP_VOID >> #endif >> >> So configure got it right, and then the source overrode it. Maybe >> setpgrp takes no arguments on 10.4 and later, but didn't on 10.3 and >> earlier? > > Yes, I think that this indeed was the reason that I added the #define > SETPGRP_VOID. IIRC, OSX 10.4 at some point switched to the > POSIX-conformant setpgrp(void), but configure would still detect > the old > interface for some reason. > > So the immediate fix would be to just comment or remove those lines. Thanks, now q 7.11 builds on Mac OS X 10.3.9! I applied your patches in the MacPorts portfile. http://trac.macports.org/changeset/37492 Next, maybe I'll try to install Mac OS X 10.2.8... :-) > For a more elaborate solution I'd probably have to rewrite the > AC_SETPGRP macro. |