From 238a9fa8d04dca849201b8f664cb447f2f841c5d Mon Sep 17 00:00:00 2001 From: Damien Miller Date: Thu, 31 Aug 2000 09:20:05 +1100 Subject: [PATCH] - (djm) Workaround SIGPIPE problems on SCO. Fix from Aran Cox --- CREDITS | 1 + ChangeLog | 4 ++++ configure.in | 1 + 3 files changed, 6 insertions(+) diff --git a/CREDITS b/CREDITS index 63a5e9409..148a38a49 100644 --- a/CREDITS +++ b/CREDITS @@ -9,6 +9,7 @@ Andreas Steinmetz - Shadow password expiry support Andrew McGill - SCO fixes Andrew Stribblehill - Bugfixes Andy Sloane - bugfixes +Aran Cox - SCO bugfixes Arkadiusz Miskiewicz - IPv6 compat fixes Ben Lindstrom - NeXT support Ben Taylor - Solaris debugging and fixes diff --git a/ChangeLog b/ChangeLog index e9cde6552..b23ff702a 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,7 @@ +20000831 + - (djm) Workaround SIGPIPE problems on SCO. Fix from Aran Cox + + 20000830 - (djm) Compile warning fixes from Mark Miller - (djm) Periodically rekey arc4random diff --git a/configure.in b/configure.in index d281c7d23..33b82895b 100644 --- a/configure.in +++ b/configure.in @@ -169,6 +169,7 @@ case "$host" in LIBS="$LIBS -lgen -lsocket" ;; *-*-sco3*) + AC_DEFINE(USE_PIPES) CFLAGS="$CFLAGS -I/usr/local/include" LDFLAGS="$LDFLAGS -L/usr/local/lib" MANTYPE='$(CATMAN)'