summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2000-08-31 09:20:05 +1100
committerDamien Miller <djm@mindrot.org>2000-08-31 09:20:05 +1100
commit238a9fa8d04dca849201b8f664cb447f2f841c5d (patch)
treecbefe05063114b22b6d8e3b75fa6dfa5f364dfcb
parent250ee8b3ef36a9116360c088c7a73bc77bf81afd (diff)
- (djm) Workaround SIGPIPE problems on SCO. Fix from Aran Cox
<acox@cv.telegroup.com>
-rw-r--r--CREDITS1
-rw-r--r--ChangeLog4
-rw-r--r--configure.in1
3 files changed, 6 insertions, 0 deletions
diff --git a/CREDITS b/CREDITS
index 63a5e9409..148a38a49 100644
--- a/CREDITS
+++ b/CREDITS
@@ -9,6 +9,7 @@ Andreas Steinmetz <ast@domdv.de> - Shadow password expiry support
9Andrew McGill <andrewm@datrix.co.za> - SCO fixes 9Andrew McGill <andrewm@datrix.co.za> - SCO fixes
10Andrew Stribblehill <a.d.stribblehill@durham.ac.uk> - Bugfixes 10Andrew Stribblehill <a.d.stribblehill@durham.ac.uk> - Bugfixes
11Andy Sloane <andy@guildsoftware.com> - bugfixes 11Andy Sloane <andy@guildsoftware.com> - bugfixes
12Aran Cox <acox@cv.telegroup.com> - SCO bugfixes
12Arkadiusz Miskiewicz <misiek@pld.org.pl> - IPv6 compat fixes 13Arkadiusz Miskiewicz <misiek@pld.org.pl> - IPv6 compat fixes
13Ben Lindstrom <mouring@pconline.com> - NeXT support 14Ben Lindstrom <mouring@pconline.com> - NeXT support
14Ben Taylor <bent@clark.net> - Solaris debugging and fixes 15Ben Taylor <bent@clark.net> - Solaris debugging and fixes
diff --git a/ChangeLog b/ChangeLog
index e9cde6552..b23ff702a 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
120000831
2 - (djm) Workaround SIGPIPE problems on SCO. Fix from Aran Cox
3 <acox@cv.telegroup.com>
4
120000830 520000830
2 - (djm) Compile warning fixes from Mark Miller <markm@swoon.net> 6 - (djm) Compile warning fixes from Mark Miller <markm@swoon.net>
3 - (djm) Periodically rekey arc4random 7 - (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
169 LIBS="$LIBS -lgen -lsocket" 169 LIBS="$LIBS -lgen -lsocket"
170 ;; 170 ;;
171*-*-sco3*) 171*-*-sco3*)
172 AC_DEFINE(USE_PIPES)
172 CFLAGS="$CFLAGS -I/usr/local/include" 173 CFLAGS="$CFLAGS -I/usr/local/include"
173 LDFLAGS="$LDFLAGS -L/usr/local/lib" 174 LDFLAGS="$LDFLAGS -L/usr/local/lib"
174 MANTYPE='$(CATMAN)' 175 MANTYPE='$(CATMAN)'