From bb78ea465787191e8987d4b8a6594f9f23a18930 Mon Sep 17 00:00:00 2001 From: Paul Eggert Date: Tue, 11 Jun 2013 17:53:53 -0700 Subject: [PATCH] maint: port to platforms lacking SIGPIPE * tailor.h (SIGPIPE): Define to 0 if not defined. This fixes a porting bug introduced as part of 2012-11-16 syntax-check cleanup. Problem reported by Bdale Garbee in . --- tailor.h | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tailor.h b/tailor.h index 0bf88ff..e563b66 100644 --- a/tailor.h +++ b/tailor.h @@ -219,6 +219,10 @@ # define OS_CODE 0x0a #endif +#ifndef SIGPIPE +# define SIGPIPE 0 +#endif + /* Common defaults */ -- 2.47.2