summaryrefslogtreecommitdiff
path: root/configure.ac
diff options
context:
space:
mode:
authorDamien Miller <djm@mindrot.org>2003-05-15 12:27:08 +1000
committerDamien Miller <djm@mindrot.org>2003-05-15 12:27:08 +1000
commitd9ec370ac3a27fc9374c4182b7477ec0fc8473f4 (patch)
tree52b50f4423e5ef48b215caefa1bef41258e57907 /configure.ac
parent2aa0ab463f479649760110ca52fa341880c5ae3a (diff)
- (djm) Import getrrsetbyname() function from OpenBSD libc (for DNS support)
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac11
1 files changed, 5 insertions, 6 deletions
diff --git a/configure.ac b/configure.ac
index c8a991378..66d668355 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1,4 +1,4 @@
1# $Id: configure.ac,v 1.119 2003/05/15 01:12:19 djm Exp $ 1# $Id: configure.ac,v 1.120 2003/05/15 02:27:08 djm Exp $
2 2
3AC_INIT 3AC_INIT
4AC_CONFIG_SRCDIR([ssh.c]) 4AC_CONFIG_SRCDIR([ssh.c])
@@ -1859,11 +1859,10 @@ AC_ARG_WITH(dns,
1859 [ --with-dns Support for fetching keys from DNS (experimental)], 1859 [ --with-dns Support for fetching keys from DNS (experimental)],
1860 [ 1860 [
1861 if test "x$withval" != "xno" ; then 1861 if test "x$withval" != "xno" ; then
1862 DNS_MSG="no (system lacks getrrsetbyname)" 1862 DNS_MSG="yes"
1863 AC_SEARCH_LIBS(getrrsetbyname, resolv, [ 1863 AC_DEFINE(DNS)
1864 AC_DEFINE(DNS) 1864 AC_SEARCH_LIBS(getrrsetbyname, resolv,
1865 DNS_MSG="yes" 1865 [AC_DEFINE(HAVE_GETRRSETBYNAME)])
1866 ])
1867 fi 1866 fi
1868 ] 1867 ]
1869) 1868)