From Dirk via bug #5771: Add heuristic dissector for images and HTTP
[obnox/wireshark/wip.git] / configure.in
index 6e398eee1f25ff45c5164e2b732006ee07b67a28..f0041af9c37abea450043962e91c5908fe3e8601 100644 (file)
@@ -1800,19 +1800,6 @@ then
 fi
 AC_SUBST(ENABLE_STATIC)
 
-AC_ARG_ENABLE(new-packet-list,
-  AC_HELP_STRING( [--enable-new-packet-list],
-                  [use new packet list feature.  @<:@default=yes@:>@]),
-                  new_packet_list=$enableval,new_packet_list=yes)
-AC_MSG_CHECKING(if new packet list is used);
-if test "x$new_packet_list" = "xyes" ; then
-       AC_MSG_RESULT(yes)
-       AC_DEFINE(NEW_PACKET_LIST, 1,
-           [Use the new packet list code])
-else
-       AC_MSG_RESULT(no)
-fi
-
 dnl Save the cacheable configure results to config.cache before recursing
 AC_CACHE_SAVE
 
@@ -2044,7 +2031,11 @@ fi
 if test "x$have_good_adns" = "xyes" ; then
        adns_message="yes"
 else
-       adns_message="no"
+       if test "x$have_good_c_ares" = "xyes" ; then
+               adns_message="no (using c-ares instead)"
+       else
+               adns_message="no"
+       fi
 fi
 
 if test "x$have_good_libcap" = "xyes" ; then