Hello Joachim, Please, let's use different mails with different subject for each topic. Otherwise I cannot keep track which issues have been dealt with, and the conversation dies down in confusion.
> During compile of gllib: > NSIG missing, I added it to gllib/spwani.c, in a brute force fashion > (#define NSIG 32) without really know what I'm doing here... > "/bin/kill -l | wc -w" returns 33. NSIG should be larger than any predefined signal value. Since you say that your system has 33 signals, the value 32 is not right. Probably 33, 34, or 64 is better then. You need to look at the values in your <signal.h>. And the definition belongs in <signal.h>. > SA_RESTART and SA_RESETHAND are missing > source='test-sigaction.c' object='test-sigaction.o' libtool=no DEPDIR=.deps > depmode=none /bin/sh ./../build-aux/depcomp cc -DHAVE_CONFIG_H -I. > -DGNULIB_STRICT_CHECKING=1 -I. -I. -I.. -I./.. -I../gllib -I./../gllib > -I/usr/local/include -g -Wnowarn -c -o test-sigaction.o test-sigaction.c > ASSERT ((sa.sa_flags & SA_RESETHAND) == 0); > ^ > "/usr/local/Floss/gnulib/testdir-posix/gltests/test-sigaction.c", line 67: > error(114): > identifier "SA_RESETHAND" is undefined > ... > ASSERT ((old_sa.sa_flags & MASK_SA_FLAGS) == 0); > ^ > "/usr/local/Floss/gnulib/testdir-posix/gltests/test-sigaction.c", line 97: > error(114): > identifier "SA_RESTART" is undefined These two are specified by POSIX <http://pubs.opengroup.org/onlinepubs/9699919799/basedefs/signal.h.html>. Does NonStop Kernel really lack these flags, or are they merely available under different names? Bruno