summaryrefslogtreecommitdiff
path: root/texinfo
diff options
context:
space:
mode:
authorlaw <law@138bc75d-0d04-0410-961f-82ee72b054a4>1997-10-07 16:22:48 +0000
committerlaw <law@138bc75d-0d04-0410-961f-82ee72b054a4>1997-10-07 16:22:48 +0000
commit4025a660dc58d718979811cc0628526e90e0dd08 (patch)
treed717cd44a4b1b03ac3f29bc838ef4a4bda3a9fd4 /texinfo
parente638b749f87cbfbba44ce312fafe8a79f70f85b0 (diff)
downloadgcc-4025a660dc58d718979811cc0628526e90e0dd08.tar.gz
* info/man.c (SIGCHLD): Define to SIGCLD if <sys/signal.h>
fails to provide it. git-svn-id: svn+ssh://gcc.gnu.org/svn/gcc/trunk@15857 138bc75d-0d04-0410-961f-82ee72b054a4
Diffstat (limited to 'texinfo')
-rw-r--r--texinfo/ChangeLog5
-rw-r--r--texinfo/info/man.c4
2 files changed, 9 insertions, 0 deletions
diff --git a/texinfo/ChangeLog b/texinfo/ChangeLog
index 323cee5fc43..1f4d83af1de 100644
--- a/texinfo/ChangeLog
+++ b/texinfo/ChangeLog
@@ -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
diff --git a/texinfo/info/man.c b/texinfo/info/man.c
index b899ec1d273..f278837e10a 100644
--- a/texinfo/info/man.c
+++ b/texinfo/info/man.c
@@ -35,6 +35,10 @@
#include "man.h"
+#if !defined (SIGCHLD) && defined (SIGCLD)
+#define SIGCHLD SIGCLD
+#endif
+
#if !defined (_POSIX_VERSION)
#define pid_t int
#endif