aboutsummaryrefslogtreecommitdiffstats
path: root/acinclude.m4
diff options
context:
space:
mode:
authorGuy Harris <guy@alum.mit.edu>2003-10-10 10:12:18 +0000
committerGuy Harris <guy@alum.mit.edu>2003-10-10 10:12:18 +0000
commit6670a92e854c399b0cf5d1a123cbfe5522f0d2c6 (patch)
tree139f943b96d9da31cb111c724a2681030f111b2a /acinclude.m4
parent645f294232de78cf222ff1ed1c6786eb1014c696 (diff)
From Brad Hards: fix two problems:
1. the --without-adns case wasn't handled correctly; 2. the reporting at the end of the configure didn't deal with the case were the configure check failed (as in my example, where I only had the libadns package installed, not libadns-devel) - it reported that ADNS would be used. svn path=/trunk/; revision=8663
Diffstat (limited to 'acinclude.m4')
-rw-r--r--acinclude.m43
1 files changed, 2 insertions, 1 deletions
diff --git a/acinclude.m4 b/acinclude.m4
index 395f00e7cc..eddae47840 100644
--- a/acinclude.m4
+++ b/acinclude.m4
@@ -2,7 +2,7 @@ dnl Macros that test for specific features.
dnl This file is part of the Autoconf packaging for Ethereal.
dnl Copyright (C) 1998-2000 by Gerald Combs.
dnl
-dnl $Id: acinclude.m4,v 1.58 2003/10/10 06:05:48 guy Exp $
+dnl $Id: acinclude.m4,v 1.59 2003/10/10 10:12:18 guy Exp $
dnl
dnl This program is free software; you can redistribute it and/or modify
dnl it under the terms of the GNU General Public License as published by
@@ -719,6 +719,7 @@ changequote([, ])dnl
[
ADNS_LIBS=-ladns
AC_DEFINE(HAVE_GNU_ADNS, 1, [Define to use GNU ADNS library])
+ have_good_adns=yes
],,
)
else