Theo Carr-Brion wrote:
I am working on UnixWare 7.1.1 with gcc 2.95.3 and gpc 20010924. The rts configure script still does not work detecting the absence of sys_siglist. The variable in the test program has been changed to be volatile but it is still optimised out unless the variable is actually used. Turning optimisation off or returning sys_siglist in the test program both work for me.
I see. Returning sys_siglist might not be a good idea since I'm not sure what configure would do with the non-zero return value if it exists. But making the volatile tmp variable global should work. I'll change this.
Frank