summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2013-02-23 09:12:23 +1100
committerDamien Miller <djm@mindrot.org>2013-02-23 09:12:23 +1100
commitb87f6b70f894952b74443c8ef1b86323e7c9f465 (patch)
tree7451e59ee115d79fd85e8429fc9fed860484f687 /configure.ac
parent91f40d8592562b804813a320a4ac3871dbaaf433 (diff)
- (djm) [configure.ac includes.h loginrec.c mux.c sftp.c] Prefer
bsd/libutil.h to libutil.h to avoid deprecation warnings on Ubuntu. ok tim
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac6
1 files changed, 3 insertions, 3 deletions
diff --git a/configure.ac b/configure.ac
index e526390f7..3ea3f8a35 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,4 +1,4 @@
1# $Id: configure.ac,v 1.508 2013/02/22 00:37:00 djm Exp $ 1# $Id: configure.ac,v 1.509 2013/02/22 22:12:24 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.508 $) 18AC_REVISION($Revision: 1.509 $)
19AC_CONFIG_SRCDIR([ssh.c]) 19AC_CONFIG_SRCDIR([ssh.c])
20AC_LANG([C]) 20AC_LANG([C])
21 21
@@ -1163,7 +1163,7 @@ AC_CHECK_FUNCS([utimes],
1163) 1163)
1164 1164
1165dnl Checks for libutil functions 1165dnl Checks for libutil functions
1166AC_CHECK_HEADERS([libutil.h]) 1166AC_CHECK_HEADERS([bsd/libutil.h libutil.h])
1167AC_SEARCH_LIBS([fmt_scaled], [util bsd]) 1167AC_SEARCH_LIBS([fmt_scaled], [util bsd])
1168AC_SEARCH_LIBS([login], [util bsd]) 1168AC_SEARCH_LIBS([login], [util bsd])
1169AC_SEARCH_LIBS([logout], [util bsd]) 1169AC_SEARCH_LIBS([logout], [util bsd])