From: Manfred Hollstein Date: Tue, 7 Oct 1997 16:22:48 +0000 (+0000) Subject: man.c (SIGCHLD): Define to SIGCLD if fails to provide it. X-Git-Tag: releases/egcs-1.0.0~383 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=d4dae59c225365f8b13429aca60bb256e58cd2e9;p=thirdparty%2Fgcc.git man.c (SIGCHLD): Define to SIGCLD if fails to provide it. * info/man.c (SIGCHLD): Define to SIGCLD if fails to provide it. From-SVN: r15857 --- diff --git a/texinfo/ChangeLog b/texinfo/ChangeLog index 323cee5fc431..1f4d83af1de0 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 + 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 b899ec1d273f..f278837e10a0 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