summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2008-05-19 14:47:37 +1000
committerDamien Miller <djm@mindrot.org>2008-05-19 14:47:37 +1000
commita4be7c23fdcf8a1da5420068dc4bd4db45af9c9c (patch)
tree30791da826e91a68016c4a969d8d924fb9778312 /configure.ac
parent25434de4606924a31016e42728c4acdf6de90cc7 (diff)
- (djm) [openbsd-compat/bsd-arc4random.c openbsd-compat/openbsd-compat.c]
[configure.ac] Implement arc4random_buf(), import implementation of arc4random_uniform() from OpenBSD
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac6
1 files changed, 4 insertions, 2 deletions
diff --git a/configure.ac b/configure.ac
index 7b92bad1d..e6e916e82 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,4 +1,4 @@
1# $Id: configure.ac,v 1.397 2008/03/27 01:33:07 djm Exp $ 1# $Id: configure.ac,v 1.398 2008/05/19 04:47:37 djm 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.397 $) 18AC_REVISION($Revision: 1.398 $)
19AC_CONFIG_SRCDIR([ssh.c]) 19AC_CONFIG_SRCDIR([ssh.c])
20 20
21AC_CONFIG_HEADER(config.h) 21AC_CONFIG_HEADER(config.h)
@@ -1288,6 +1288,8 @@ AC_ARG_WITH(audit,
1288dnl Checks for library functions. Please keep in alphabetical order 1288dnl Checks for library functions. Please keep in alphabetical order
1289AC_CHECK_FUNCS( \ 1289AC_CHECK_FUNCS( \
1290 arc4random \ 1290 arc4random \
1291 arc4random_buf \
1292 arc4random_uniform \
1291 asprintf \ 1293 asprintf \
1292 b64_ntop \ 1294 b64_ntop \
1293 __b64_ntop \ 1295 __b64_ntop \