]> git.ipfire.org Git - thirdparty/gcc.git/commitdiff
man.c (SIGCHLD): Define to SIGCLD if <sys/signal.h> fails to provide it.
authorManfred Hollstein <manfred@lts.sel.alcatel.de>
Tue, 7 Oct 1997 16:22:48 +0000 (16:22 +0000)
committerJeff Law <law@gcc.gnu.org>
Tue, 7 Oct 1997 16:22:48 +0000 (10:22 -0600)
        * info/man.c (SIGCHLD): Define to SIGCLD if <sys/signal.h>
        fails to provide it.

From-SVN: r15857

texinfo/ChangeLog
texinfo/info/man.c

index 323cee5fc431def7c170c3a94b24d3358e0f2624..1f4d83af1de022b70b37a13c34bae020be8e7399 100644 (file)
@@ -1,3 +1,8 @@
+Tue Oct  7 10:25:22 1997  Manfred Hollstein  (manfred@lts.sel.alcatel.de)
+
+       * info/man.c (SIGCHLD): Define to SIGCLD if <sys/signal.h>
+       fails to provide it.
+
 Wed Sep 17 23:56:11 1997  Jeffrey A Law  (law@cygnus.com)
 
        * util/install-info.c: Only provide an external decl for strrchr
index b899ec1d273fde8ee5d5a8cb8333361919b018b3..f278837e10a06153da3801a6ada4996ef7415fdc 100644 (file)
 
 #include "man.h"
 
+#if !defined (SIGCHLD) && defined (SIGCLD)
+#define SIGCHLD        SIGCLD
+#endif
+
 #if !defined (_POSIX_VERSION)
 #define pid_t int
 #endif