Source-Changes-HG archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

[src/trunk]: src/bin/ksh ksh: Drop support for systems without POSIX signal r...



details:   https://anonhg.NetBSD.org/src/rev/44de817863d8
branches:  trunk
changeset: 825094:44de817863d8
user:      kamil <kamil%NetBSD.org@localhost>
date:      Fri Jun 30 02:20:47 2017 +0000

description:
ksh: Drop support for systems without POSIX signal routines

diffstat:

 bin/ksh/conf-end.h |  7 +++----
 bin/ksh/config.h   |  5 +----
 2 files changed, 4 insertions(+), 8 deletions(-)

diffs (44 lines):

diff -r b951d386a9c9 -r 44de817863d8 bin/ksh/conf-end.h
--- a/bin/ksh/conf-end.h        Fri Jun 30 02:13:29 2017 +0000
+++ b/bin/ksh/conf-end.h        Fri Jun 30 02:20:47 2017 +0000
@@ -1,9 +1,9 @@
-/*     $NetBSD: conf-end.h,v 1.5 2017/06/30 02:13:29 kamil Exp $       */
+/*     $NetBSD: conf-end.h,v 1.6 2017/06/30 02:20:47 kamil Exp $       */
 
 /*
  * End of configuration stuff for PD ksh.
  *
- * RCSid: $NetBSD: conf-end.h,v 1.5 2017/06/30 02:13:29 kamil Exp $
+ * RCSid: $NetBSD: conf-end.h,v 1.6 2017/06/30 02:20:47 kamil Exp $
  */
 
 #if defined(EMACS) || defined(VI)
@@ -23,8 +23,7 @@
 #endif
 
 /* Can we safely catch sigchld and wait for processes? */
-#if (defined(HAVE_WAITPID) || defined(HAVE_WAIT3)) \
-    && (defined(POSIX_SIGNALS))
+#if defined(HAVE_WAITPID) || defined(HAVE_WAIT3)
 # define JOB_SIGS
 #endif
 
diff -r b951d386a9c9 -r 44de817863d8 bin/ksh/config.h
--- a/bin/ksh/config.h  Fri Jun 30 02:13:29 2017 +0000
+++ b/bin/ksh/config.h  Fri Jun 30 02:20:47 2017 +0000
@@ -1,4 +1,4 @@
-/*     $NetBSD: config.h,v 1.43 2017/06/30 02:13:29 kamil Exp $        */
+/*     $NetBSD: config.h,v 1.44 2017/06/30 02:20:47 kamil Exp $        */
 
 /* config.h.  Generated automatically by configure.  */
 /* config.h.in.  Generated automatically from configure.in by autoheader.  */
@@ -39,9 +39,6 @@
 /* Define as the return value of signal handlers (0 or ).  */
 #define RETSIGVAL 
 
-/* Define if you have posix signal routines (sigaction(), et. al.) */
-#define POSIX_SIGNALS 1
-
 /* Define to use the fake posix signal routines (sigact.[ch]) */
 /* #undef USE_FAKE_SIGACT */
 



Home | Main Index | Thread Index | Old Index