summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDarren Tucker <dtucker@zip.com.au>2005-05-28 16:57:00 +1000
committerDarren Tucker <dtucker@zip.com.au>2005-05-28 16:57:00 +1000
commit7d2171b2cd9633bfc7a8fb64a327630dc1a4ad9c (patch)
tree556f43c1516e6b13562d06153d484921d047fdc9
parent390b6d5dbf879e5daaa924c91cb1448a5748b558 (diff)
- (dtucker) [configure.ac] getpgrp may be defined in unistd.h, so check for
its presence before doing AC_FUNC_GETPGRP.
-rw-r--r--ChangeLog4
-rw-r--r--configure.ac3
2 files changed, 5 insertions, 2 deletions
diff --git a/ChangeLog b/ChangeLog
index 131a90351..2cce70628 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -3,6 +3,8 @@
3 one entry per line to make it easier to merge changes. ok djm@ 3 one entry per line to make it easier to merge changes. ok djm@
4 - (dtucker) [configure.ac] strsep() may be defined in string.h, so check 4 - (dtucker) [configure.ac] strsep() may be defined in string.h, so check
5 for its presence and include it in the strsep check. 5 for its presence and include it in the strsep check.
6 - (dtucker) [configure.ac] getpgrp may be defined in unistd.h, so check for
7 its presence before doing AC_FUNC_GETPGRP.
6 8
720050527 920050527
8 - (djm) [defines.h] Use our realpath if we have to define PATH_MAX, spotted by 10 - (djm) [defines.h] Use our realpath if we have to define PATH_MAX, spotted by
@@ -2621,4 +2623,4 @@
2621 - (djm) Trim deprecated options from INSTALL. Mention UsePAM 2623 - (djm) Trim deprecated options from INSTALL. Mention UsePAM
2622 - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu 2624 - (djm) Fix quote handling in sftp; Patch from admorten AT umich.edu
2623 2625
2624$Id: ChangeLog,v 1.3794 2005/05/28 06:54:36 dtucker Exp $ 2626$Id: ChangeLog,v 1.3795 2005/05/28 06:57:00 dtucker Exp $
diff --git a/configure.ac b/configure.ac
index 7767e9080..863531f7e 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,4 +1,4 @@
1# $Id: configure.ac,v 1.266 2005/05/28 06:54:36 dtucker Exp $ 1# $Id: configure.ac,v 1.267 2005/05/28 06:57:00 dtucker Exp $
2# 2#
3# Copyright (c) 1999-2004 Damien Miller 3# Copyright (c) 1999-2004 Damien Miller
4# 4#
@@ -589,6 +589,7 @@ AC_CHECK_HEADERS( \
589 time.h \ 589 time.h \
590 tmpdir.h \ 590 tmpdir.h \
591 ttyent.h \ 591 ttyent.h \
592 unistd.h \
592 usersec.h \ 593 usersec.h \
593 util.h \ 594 util.h \
594 utime.h \ 595 utime.h \