diff options
-rw-r--r-- | ChangeLog | 4 | ||||
-rw-r--r-- | configure.ac | 9 |
2 files changed, 9 insertions, 4 deletions
@@ -1,6 +1,8 @@ | |||
1 | 20070910 | 1 | 20070910 |
2 | - (dtucker) [openbsd-compat/regress/closefromtest.c] Bug #1358: Always | 2 | - (dtucker) [openbsd-compat/regress/closefromtest.c] Bug #1358: Always |
3 | return 0 on successful test. From David.Leonard at quest com. | 3 | return 0 on successful test. From David.Leonard at quest com. |
4 | - (tim) [configure.ac] Autoconf didn't define HAVE_LIBIAF because we | ||
5 | did a AC_CHECK_FUNCS within the AC_CHECK_LIB test. | ||
4 | 6 | ||
5 | 20070817 | 7 | 20070817 |
6 | - (dtucker) [sshd.8] Many Linux variants use a single "!" to denote locked | 8 | - (dtucker) [sshd.8] Many Linux variants use a single "!" to denote locked |
@@ -3188,4 +3190,4 @@ | |||
3188 | OpenServer 6 and add osr5bigcrypt support so when someone migrates | 3190 | OpenServer 6 and add osr5bigcrypt support so when someone migrates |
3189 | passwords between UnixWare and OpenServer they will still work. OK dtucker@ | 3191 | passwords between UnixWare and OpenServer they will still work. OK dtucker@ |
3190 | 3192 | ||
3191 | $Id: ChangeLog,v 1.4740 2007/09/10 03:20:14 dtucker Exp $ | 3193 | $Id: ChangeLog,v 1.4741 2007/09/10 23:24:17 tim Exp $ |
diff --git a/configure.ac b/configure.ac index f1052b079..b06114b5b 100644 --- a/configure.ac +++ b/configure.ac | |||
@@ -1,4 +1,4 @@ | |||
1 | # $Id: configure.ac,v 1.383 2007/08/10 04:36:12 dtucker Exp $ | 1 | # $Id: configure.ac,v 1.384 2007/09/10 23:24:18 tim Exp $ |
2 | # | 2 | # |
3 | # Copyright (c) 1999-2004 Damien Miller | 3 | # Copyright (c) 1999-2004 Damien Miller |
4 | # | 4 | # |
@@ -15,7 +15,7 @@ | |||
15 | # OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. | 15 | # OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE. |
16 | 16 | ||
17 | AC_INIT(OpenSSH, Portable, openssh-unix-dev@mindrot.org) | 17 | AC_INIT(OpenSSH, Portable, openssh-unix-dev@mindrot.org) |
18 | AC_REVISION($Revision: 1.383 $) | 18 | AC_REVISION($Revision: 1.384 $) |
19 | AC_CONFIG_SRCDIR([ssh.c]) | 19 | AC_CONFIG_SRCDIR([ssh.c]) |
20 | 20 | ||
21 | AC_CONFIG_HEADER(config.h) | 21 | AC_CONFIG_HEADER(config.h) |
@@ -2004,7 +2004,10 @@ AC_CHECK_FUNCS(SHA256_Update EVP_sha256) | |||
2004 | saved_LIBS="$LIBS" | 2004 | saved_LIBS="$LIBS" |
2005 | AC_CHECK_LIB(iaf, ia_openinfo, [ | 2005 | AC_CHECK_LIB(iaf, ia_openinfo, [ |
2006 | LIBS="$LIBS -liaf" | 2006 | LIBS="$LIBS -liaf" |
2007 | AC_CHECK_FUNCS(set_id, [SSHDLIBS="$SSHDLIBS -liaf"]) | 2007 | AC_CHECK_FUNCS(set_id, [SSHDLIBS="$SSHDLIBS -liaf" |
2008 | AC_DEFINE(HAVE_LIBIAF, 1, | ||
2009 | [Define if system has libiaf that supports set_id]) | ||
2010 | ]) | ||
2008 | ]) | 2011 | ]) |
2009 | LIBS="$saved_LIBS" | 2012 | LIBS="$saved_LIBS" |
2010 | 2013 | ||