summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorTim Rice <tim@multitalents.net>2007-09-10 16:24:17 -0700
committerTim Rice <tim@multitalents.net>2007-09-10 16:24:17 -0700
commit0eeaf127b522caa8e5d9924de7ee33af80a01a5d (patch)
tree2da38213916491a8147fb4a9cef521f878ba0a01
parente296d58dcfbc9b072e4998580552b30e3723cbd6 (diff)
- (tim) [configure.ac] Autoconf didn't define HAVE_LIBIAF because we
did a AC_CHECK_FUNCS within the AC_CHECK_LIB test.
-rw-r--r--ChangeLog4
-rw-r--r--configure.ac9
2 files changed, 9 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index ab18dc3b4..7d92bff91 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,6 +1,8 @@
120070910 120070910
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
520070817 720070817
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
17AC_INIT(OpenSSH, Portable, openssh-unix-dev@mindrot.org) 17AC_INIT(OpenSSH, Portable, openssh-unix-dev@mindrot.org)
18AC_REVISION($Revision: 1.383 $) 18AC_REVISION($Revision: 1.384 $)
19AC_CONFIG_SRCDIR([ssh.c]) 19AC_CONFIG_SRCDIR([ssh.c])
20 20
21AC_CONFIG_HEADER(config.h) 21AC_CONFIG_HEADER(config.h)
@@ -2004,7 +2004,10 @@ AC_CHECK_FUNCS(SHA256_Update EVP_sha256)
2004saved_LIBS="$LIBS" 2004saved_LIBS="$LIBS"
2005AC_CHECK_LIB(iaf, ia_openinfo, [ 2005AC_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])
2009LIBS="$saved_LIBS" 2012LIBS="$saved_LIBS"
2010 2013