RT says QNX 4 has _SIGMAX not SIGMAX or NSIG

This commit is contained in:
tg 2012-12-28 03:35:34 +00:00
parent 192ea7638b
commit 113db497ba
2 changed files with 7 additions and 3 deletions

View File

@ -1,5 +1,5 @@
#!/bin/sh #!/bin/sh
srcversion='$MirOS: src/bin/mksh/Build.sh,v 1.609 2012/12/28 03:20:34 tg Exp $' srcversion='$MirOS: src/bin/mksh/Build.sh,v 1.610 2012/12/28 03:35:33 tg Exp $'
#- #-
# Copyright (c) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010, # Copyright (c) 2003, 2004, 2005, 2006, 2007, 2008, 2009, 2010,
# 2011, 2012 # 2011, 2012
@ -1528,7 +1528,7 @@ else
#define EXTERN #define EXTERN
#define MKSH_INCLUDES_ONLY #define MKSH_INCLUDES_ONLY
#include "sh.h" #include "sh.h"
__RCSID("$MirOS: src/bin/mksh/Build.sh,v 1.609 2012/12/28 03:20:34 tg Exp $"); __RCSID("$MirOS: src/bin/mksh/Build.sh,v 1.610 2012/12/28 03:35:33 tg Exp $");
int main(void) { printf("Hello, World!\n"); return (0); } int main(void) { printf("Hello, World!\n"); return (0); }
EOF EOF
case $cm in case $cm in
@ -2060,6 +2060,8 @@ if test 0 = $HAVE_SYS_SIGNAME; then
#define NSIG _NSIG #define NSIG _NSIG
#elif defined(SIGMAX) #elif defined(SIGMAX)
#define NSIG (SIGMAX+1) #define NSIG (SIGMAX+1)
#elif defined(_SIGMAX)
#define NSIG (_SIGMAX+1)
#endif #endif
#endif #endif
int int

4
sh.h
View File

@ -164,7 +164,7 @@
#endif #endif
#ifdef EXTERN #ifdef EXTERN
__RCSID("$MirOS: src/bin/mksh/sh.h,v 1.622 2012/12/28 02:28:37 tg Exp $"); __RCSID("$MirOS: src/bin/mksh/sh.h,v 1.623 2012/12/28 03:35:34 tg Exp $");
#endif #endif
#define MKSH_VERSION "R41 2012/12/27" #define MKSH_VERSION "R41 2012/12/27"
@ -335,6 +335,8 @@ struct rusage {
#define NSIG _NSIG #define NSIG _NSIG
#elif defined(SIGMAX) #elif defined(SIGMAX)
#define NSIG (SIGMAX+1) #define NSIG (SIGMAX+1)
#elif defined(_SIGMAX)
#define NSIG (_SIGMAX+1)
#endif #endif
#endif #endif