summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac11
1 files changed, 8 insertions, 3 deletions
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