--- configure.in.orig 2008-06-27 22:36:49.000000000 +0200 +++ configure.in 2008-06-27 22:45:13.000000000 +0200 @@ -70,17 +70,18 @@ dnl enable-dns forces use of DNS code AC_ARG_ENABLE(dns,--enable-dns Enable DNS lookup code, -USE_DNS="yes") +USE_DNS="$enableval", +USE_DNS="no") -USE_GEOIP="yes" dnl enable-geoip disables use of GeoIP library AC_ARG_ENABLE(geoip,--disable-geoip Disable GeoIP country lookup, -USE_GEOIP="") +USE_GEOIP="$enableval", +USE_GEOIP="yes") -USE_FLAGS="yes" dnl enable-flags disables use of flag pictures AC_ARG_ENABLE(flags,--disable-flags Disable country flag pictures, -USE_FLAGS="") +USE_FLAGS="$enableval", +USE_FLAGS="yes") if test "$USE_FLAGS" = "yes"; then OPTS="-DUSE_FLAGS ${OPTS}"