summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2003-06-30 19:21:36 +1000
committerDamien Miller <djm@mindrot.org>2003-06-30 19:21:36 +1000
commit200d0a7bf58f5ef3679d2bab1824ac4fcc5a088f (patch)
tree0cf2cca89f0174b28297055890a3f60fb6f2c734
parent6eb9304782a7404fca406f742d4546e55c8dc1c7 (diff)
- (djm) Search for support functions necessary to build our
getrrsetbyname() replacement. Patch from Roumen Petrov
-rw-r--r--ChangeLog6
-rw-r--r--configure.ac11
2 files changed, 13 insertions, 4 deletions
diff --git a/ChangeLog b/ChangeLog
index 89ec48ffd..f40631cf8 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
120030630
2 - (djm) Search for support functions necessary to build our
3 getrrsetbyname() replacement. Patch from Roumen Petrov
4
120030629 520030629
2 - (dtucker) [includes.h] Bug #602: move #include of netdb.h to after in.h 6 - (dtucker) [includes.h] Bug #602: move #include of netdb.h to after in.h
3 (fixes compiler warnings on Solaris 2.5.1). 7 (fixes compiler warnings on Solaris 2.5.1).
@@ -613,4 +617,4 @@
613 - Fix sshd BindAddress and -b options for systems using fake-getaddrinfo. 617 - Fix sshd BindAddress and -b options for systems using fake-getaddrinfo.
614 Report from murple@murple.net, diagnosis from dtucker@zip.com.au 618 Report from murple@murple.net, diagnosis from dtucker@zip.com.au
615 619
616$Id: ChangeLog,v 1.2834 2003/06/29 11:30:41 dtucker Exp $ 620$Id: ChangeLog,v 1.2835 2003/06/30 09:21:36 djm Exp $
diff --git a/configure.ac b/configure.ac
index bf00443a0..81ad26b03 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,4 +1,4 @@
1# $Id: configure.ac,v 1.129 2003/06/29 11:30:41 dtucker Exp $ 1# $Id: configure.ac,v 1.130 2003/06/30 09:21:36 djm Exp $
2 2
3AC_INIT 3AC_INIT
4AC_CONFIG_SRCDIR([ssh.c]) 4AC_CONFIG_SRCDIR([ssh.c])
@@ -1876,7 +1876,12 @@ AC_ARG_WITH(dns,
1876 DNS_MSG="yes" 1876 DNS_MSG="yes"
1877 AC_DEFINE(DNS) 1877 AC_DEFINE(DNS)
1878 AC_SEARCH_LIBS(getrrsetbyname, resolv, 1878 AC_SEARCH_LIBS(getrrsetbyname, resolv,
1879 [AC_DEFINE(HAVE_GETRRSETBYNAME)]) 1879 [AC_DEFINE(HAVE_GETRRSETBYNAME)],
1880 [
1881 # Needed by our getrrsetbyname()
1882 AC_SEARCH_LIBS(res_query, resolv)
1883 AC_SEARCH_LIBS(dn_expand, resolv)
1884 ])
1880 fi 1885 fi
1881 ] 1886 ]
1882) 1887)
@@ -1913,7 +1918,7 @@ AC_ARG_WITH(kerberos5,
1913 if test ! -z "$blibpath" ; then 1918 if test ! -z "$blibpath" ; then
1914 blibpath="$blibpath:${KRB5ROOT}/lib" 1919 blibpath="$blibpath:${KRB5ROOT}/lib"
1915 fi 1920 fi
1916 AC_CHECK_LIB(resolv, dn_expand, , ) 1921 AC_SEARCH_LIBS(dn_expand, resolv)
1917 1922
1918 KRB5=yes 1923 KRB5=yes
1919 fi 1924 fi