Correctly report whether we're building with GeoIP or not - even if we

wanted GeoIP, that doesn't mean we necessarily have it, so that doesn't
mean we'll necessarily build with it.

svn path=/trunk/; revision=26639
This commit is contained in:
Guy Harris 2008-10-31 02:40:21 +00:00
parent 002716a7cf
commit ce92eee853
1 changed files with 7 additions and 1 deletions

View File

@ -1767,6 +1767,12 @@ else
libcap_message="no"
fi
if test "x$have_good_geoip" = "xyes" ; then
geoip_message="yes"
else
geoip_message="no"
fi
echo ""
echo "The Wireshark package has been configured with the following options."
echo " Build wireshark : $enable_wireshark"
@ -1799,4 +1805,4 @@ echo " Use SSL crypto library : $ssl_message"
echo " Use IPv6 name resolution : $enable_ipv6"
echo " Use gnutls library : $tls_message"
echo " Use POSIX capabilities library : $libcap_message"
echo " Use GeoIP library : $want_geoip"
echo " Use GeoIP library : $geoip_message"