diff options
author | Damien Miller <djm@mindrot.org> | 2013-02-23 09:12:23 +1100 |
---|---|---|
committer | Damien Miller <djm@mindrot.org> | 2013-02-23 09:12:23 +1100 |
commit | b87f6b70f894952b74443c8ef1b86323e7c9f465 (patch) | |
tree | 7451e59ee115d79fd85e8429fc9fed860484f687 /configure.ac | |
parent | 91f40d8592562b804813a320a4ac3871dbaaf433 (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.ac | 6 |
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 | ||
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.508 $) | 18 | AC_REVISION($Revision: 1.509 $) |
19 | AC_CONFIG_SRCDIR([ssh.c]) | 19 | AC_CONFIG_SRCDIR([ssh.c]) |
20 | AC_LANG([C]) | 20 | AC_LANG([C]) |
21 | 21 | ||
@@ -1163,7 +1163,7 @@ AC_CHECK_FUNCS([utimes], | |||
1163 | ) | 1163 | ) |
1164 | 1164 | ||
1165 | dnl Checks for libutil functions | 1165 | dnl Checks for libutil functions |
1166 | AC_CHECK_HEADERS([libutil.h]) | 1166 | AC_CHECK_HEADERS([bsd/libutil.h libutil.h]) |
1167 | AC_SEARCH_LIBS([fmt_scaled], [util bsd]) | 1167 | AC_SEARCH_LIBS([fmt_scaled], [util bsd]) |
1168 | AC_SEARCH_LIBS([login], [util bsd]) | 1168 | AC_SEARCH_LIBS([login], [util bsd]) |
1169 | AC_SEARCH_LIBS([logout], [util bsd]) | 1169 | AC_SEARCH_LIBS([logout], [util bsd]) |