if [[ "$I18NPATCH" == "y" ]]
then
  config_query_option DILLO_TABS                                   \
                      "Tab support"                                \
                      y                                            \
                      "--enable-tabs"                              \
                      "--disable-tabs"                             &&
  config_query_option DILLO_AA                                     \
                      "Anti-aliasing with xft"                     \
                      y                                            \
                      "--enable-anti-alias"                        \
                      "--disable-anti-alias"                       
fi                                                                 &&
config_query_option DILLO_IPV6                                     \
                    "IPV6 support"                                 \
                    n                                              \
                    "--enable-ipv6"                                \
                    "--disable-ipv6"                               &&
config_query_option DILLO_RTFL                                     \
                    "Build with rtfl messages(whatever those are)" \
                    n                                              \
                    "--enable-rtfl"                                \
                    "--disable-rtfl"                               &&
#This is broken so forced on
DILLO_COOKIES="--enable-cookies"                                   &&
persistent_add DILLO_COOKIES                                       &&
#config_query_option DILLO_COOKIES                                  \
#                    "Cookie support"                               \
#                    y                                              \
#                    "--enable-cookies"                             \
#                    "--disable-cookies"                            &&
config_query_option DILLO_METAREF                                  \
                    "Allow meta refresh"                           \
                    n                                              \
                    "--enable-meta-refresh"                        \
                    "--disable-meta-refresh"                       &&
config_query_option DILLO_NLS                                      \
                    "Use native language support"                  \
                    y                                              \
                    "--enable-nls"                                 \
                    "--disable-nls"                                
