- (djm) Search for support functions necessary to build our
getrrsetbyname() replacement. Patch from Roumen Petrov
This commit is contained in:
parent
6eb9304782
commit
200d0a7bf5
|
@ -1,3 +1,7 @@
|
|||
20030630
|
||||
- (djm) Search for support functions necessary to build our
|
||||
getrrsetbyname() replacement. Patch from Roumen Petrov
|
||||
|
||||
20030629
|
||||
- (dtucker) [includes.h] Bug #602: move #include of netdb.h to after in.h
|
||||
(fixes compiler warnings on Solaris 2.5.1).
|
||||
|
@ -613,4 +617,4 @@
|
|||
- Fix sshd BindAddress and -b options for systems using fake-getaddrinfo.
|
||||
Report from murple@murple.net, diagnosis from dtucker@zip.com.au
|
||||
|
||||
$Id: ChangeLog,v 1.2834 2003/06/29 11:30:41 dtucker Exp $
|
||||
$Id: ChangeLog,v 1.2835 2003/06/30 09:21:36 djm Exp $
|
||||
|
|
11
configure.ac
11
configure.ac
|
@ -1,4 +1,4 @@
|
|||
# $Id: configure.ac,v 1.129 2003/06/29 11:30:41 dtucker Exp $
|
||||
# $Id: configure.ac,v 1.130 2003/06/30 09:21:36 djm Exp $
|
||||
|
||||
AC_INIT
|
||||
AC_CONFIG_SRCDIR([ssh.c])
|
||||
|
@ -1876,7 +1876,12 @@ AC_ARG_WITH(dns,
|
|||
DNS_MSG="yes"
|
||||
AC_DEFINE(DNS)
|
||||
AC_SEARCH_LIBS(getrrsetbyname, resolv,
|
||||
[AC_DEFINE(HAVE_GETRRSETBYNAME)])
|
||||
[AC_DEFINE(HAVE_GETRRSETBYNAME)],
|
||||
[
|
||||
# Needed by our getrrsetbyname()
|
||||
AC_SEARCH_LIBS(res_query, resolv)
|
||||
AC_SEARCH_LIBS(dn_expand, resolv)
|
||||
])
|
||||
fi
|
||||
]
|
||||
)
|
||||
|
@ -1913,7 +1918,7 @@ AC_ARG_WITH(kerberos5,
|
|||
if test ! -z "$blibpath" ; then
|
||||
blibpath="$blibpath:${KRB5ROOT}/lib"
|
||||
fi
|
||||
AC_CHECK_LIB(resolv, dn_expand, , )
|
||||
AC_SEARCH_LIBS(dn_expand, resolv)
|
||||
|
||||
KRB5=yes
|
||||
fi
|
||||
|
|
Loading…
Reference in New Issue