From: Paul Eggert Date: Sat, 16 Jul 2011 00:38:32 +0000 (-0700) Subject: dd: port to NonStop (Bug#9076) X-Git-Tag: v8.13~66 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=efec1600c9b9981d2bc6f26e8a6094ee4e2df501;p=thirdparty%2Fcoreutils.git dd: port to NonStop (Bug#9076) * src/dd.c (SA_RESETHAND): Define to 0 if not defined. --- diff --git a/src/dd.c b/src/dd.c index 3e75412f54..0824f6c0ab 100644 --- a/src/dd.c +++ b/src/dd.c @@ -55,6 +55,11 @@ # endif #endif +/* NonStop circa 2011 lacks SA_RESETHAND; see Bug#9076. */ +#ifndef SA_RESETHAND +# define SA_RESETHAND 0 +#endif + #ifndef SIGINFO # define SIGINFO SIGUSR1 #endif