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 (-5 / +6 lines)
Lines 70-86 Link Here
70
70
71
dnl enable-dns forces use of DNS code
71
dnl enable-dns forces use of DNS code
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="$enableval",
74
USE_DNS="no")
74
75
75
USE_GEOIP="yes"
76
dnl enable-geoip disables use of GeoIP library
76
dnl enable-geoip disables use of GeoIP library
77
AC_ARG_ENABLE(geoip,--disable-geoip           Disable GeoIP country lookup,
77
AC_ARG_ENABLE(geoip,--disable-geoip           Disable GeoIP country lookup,
78
USE_GEOIP="")
78
USE_GEOIP="$enableval",
79
USE_GEOIP="yes")
79
80
80
USE_FLAGS="yes"
81
dnl enable-flags disables use of flag pictures
81
dnl enable-flags disables use of flag pictures
82
AC_ARG_ENABLE(flags,--disable-flags           Disable country flag pictures,
82
AC_ARG_ENABLE(flags,--disable-flags           Disable country flag pictures,
83
USE_FLAGS="")
83
USE_FLAGS="$enableval",
84
USE_FLAGS="yes")
84
85
85
if test "$USE_FLAGS" = "yes"; then
86
if test "$USE_FLAGS" = "yes"; then
86
  OPTS="-DUSE_FLAGS ${OPTS}"
87
  OPTS="-DUSE_FLAGS ${OPTS}"

Return to bug 228137