Re: [q-lang-users] q 7.11 build fails on Mac OS X 10.3.9
Brought to you by:
agraef
From: Albert G. <Dr....@t-...> - 2008-06-10 00:05:37
|
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. For a more elaborate solution I'd probably have to rewrite the AC_SETPGRP macro. > It says you should use setpgid instead of setpgrp? That's not an option here. The system module provides the POSIX system interface to Q scripts. POSIX has both operations, so they are both provided by the module. Albert -- Dr. Albert Gr"af Dept. of Music-Informatics, University of Mainz, Germany Email: Dr....@t-..., ag...@mu... WWW: http://www.musikinformatik.uni-mainz.de/ag |