Gentoo Websites Logo
Go to: Gentoo Home Documentation Forums Lists Bugs Planet Store Wiki Get Gentoo!
View | Details | Raw Unified | Return to bug 228137 | Differences between
and this patch

Collapse All | Expand All

(-)configure.in.orig (-4 / +4 lines)
Lines 72-86 Link Here
72
AC_ARG_ENABLE(dns,--enable-dns              Enable DNS lookup code,
72
AC_ARG_ENABLE(dns,--enable-dns              Enable DNS lookup code,
73
USE_DNS="yes")
73
USE_DNS="yes")
74
74
75
USE_GEOIP="yes"
76
dnl enable-geoip disables use of GeoIP library
75
dnl enable-geoip disables use of GeoIP library
77
AC_ARG_ENABLE(geoip,--disable-geoip           Disable GeoIP country lookup,
76
AC_ARG_ENABLE(geoip,--disable-geoip           Disable GeoIP country lookup,
78
USE_GEOIP="")
77
USE_GEOIP="$enableval",
78
USE_GEOIP="yes")
79
79
80
USE_FLAGS="yes"
81
dnl enable-flags disables use of flag pictures
80
dnl enable-flags disables use of flag pictures
82
AC_ARG_ENABLE(flags,--disable-flags           Disable country flag pictures,
81
AC_ARG_ENABLE(flags,--disable-flags           Disable country flag pictures,
83
USE_FLAGS="")
82
USE_FLAGS="$enableval",
83
USE_FLAGS="yes")
84
84
85
if test "$USE_FLAGS" = "yes"; then
85
if test "$USE_FLAGS" = "yes"; then
86
  OPTS="-DUSE_FLAGS ${OPTS}"
86
  OPTS="-DUSE_FLAGS ${OPTS}"

Return to bug 228137