diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | configure.ac | 3 |
2 files changed, 5 insertions, 2 deletions
@@ -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 | ||
7 | 20050527 | 9 | 20050527 |
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 \ |