By default, Bugzilla does not search the list of RESOLVED bugs.
You can force it to do so by putting the upper-case word ALL in front of your search query, e.g.: ALL tdelibs
We recommend searching for bugs this way, as you may discover that your bug has already been resolved and fixed in a later release. View | Details | Raw Unified | Return to bug 443
Collapse All | Expand All

(-)a/config.h.in (-3 lines)
Lines 180-188 Link Here
180
/* Define to 1 if you have the ANSI C header files. */
180
/* Define to 1 if you have the ANSI C header files. */
181
#undef STDC_HEADERS
181
#undef STDC_HEADERS
182
182
183
/* Use system geoip */
184
#undef USE_SYSTEM_GEOIP
185
186
/* Version number of package */
183
/* Version number of package */
187
#undef VERSION
184
#undef VERSION
188
185
(-)a/configure.in (-12 / +15 lines)
Lines 188-207 Link Here
188
       yes) geoip=true ;;
188
       yes) geoip=true ;;
189
       no)  geoip=false ;;
189
       no)  geoip=false ;;
190
       *) AC_MSG_ERROR(bad value ${enableval} for --enable-geoip) ;;
190
       *) AC_MSG_ERROR(bad value ${enableval} for --enable-geoip) ;;
191
     esac],[geoip=true])
191
     esac],[geoip=false])
192
192
193
AC_ARG_ENABLE(system-geoip,
193
AC_ARG_ENABLE(system-geoip,
194
    [AS_HELP_STRING(--enable-system-geoip,[Enables use of system-wide GeoIP database (implies --disable-geoip) (no by default)])],
194
    [AS_HELP_STRING(--enable-system-geoip,[Enables use of system-wide GeoIP database (implies --disable-geoip) (yes by default)])],
195
    [case "${enableval}" in
195
    [case "${enableval}" in
196
        yes) if test "$have_system_geoip" = yes; then
196
        yes) system_geoip=true ;;
197
                system_geoip=true
197
        no) system_geoip=false ;;
198
                geoip=false
199
             else
200
                AC_MSG_ERROR(cannot enable system geoip. GeoIP library headers were not found on your system)
201
             fi ;;
202
        no) system_geoip=true ;;
203
        *) AC_MSG_ERROR(bad value ${enableval} for --enable-system-geoip) ;;
198
        *) AC_MSG_ERROR(bad value ${enableval} for --enable-system-geoip) ;;
204
    esac],[system_geoip=false])
199
    esac],[system_geoip=true])
200
201
if test x$system_geoip = xtrue; then
202
    if test "$have_system_geoip" = yes; then
203
        geoip=false
204
    else
205
        AC_MSG_ERROR(cannot enable system geoip. GeoIP library headers were not found on your system)
206
    fi
207
fi
205
208
206
AM_CONDITIONAL(ENABLE_GEOIP, test x$geoip = xtrue)
209
AM_CONDITIONAL(ENABLE_GEOIP, test x$geoip = xtrue)
207
AM_CONDITIONAL(USE_SYSTEM_GEOIP, test x$system_geoip = xtrue)
210
AM_CONDITIONAL(USE_SYSTEM_GEOIP, test x$system_geoip = xtrue)
Lines 212-223 Link Here
212
215
213
216
214
AC_ARG_ENABLE(builtin-country-flags,
217
AC_ARG_ENABLE(builtin-country-flags,
215
    [AS_HELP_STRING(--enable-builtin-country-flags,[Install and prefer builtin country flags to the ones provided by KDE (yes by default)])],
218
    [AS_HELP_STRING(--enable-builtin-country-flags,[Install and prefer builtin country flags to the ones provided by KDE (no by default)])],
216
    [case "${enableval}" in
219
    [case "${enableval}" in
217
        yes) builtin_country_flags=true ;;
220
        yes) builtin_country_flags=true ;;
218
        no) builtin_country_flags=false ;;
221
        no) builtin_country_flags=false ;;
219
        *) AC_MSG_ERROR(bad value ${enableval} for --enable-builtin-country-flags) ;;
222
        *) AC_MSG_ERROR(bad value ${enableval} for --enable-builtin-country-flags) ;;
220
    esac],[builtin_country_flags=true])
223
    esac],[builtin_country_flags=false])
221
224
222
AM_CONDITIONAL(ENABLE_BUILTIN_COUNTRY_FLAGS, test x$builtin_country_flags = xtrue)
225
AM_CONDITIONAL(ENABLE_BUILTIN_COUNTRY_FLAGS, test x$builtin_country_flags = xtrue)
223
226
(-)a/configure.in.in (-12 / +15 lines)
Lines 123-142 Link Here
123
       yes) geoip=true ;;
123
       yes) geoip=true ;;
124
       no)  geoip=false ;;
124
       no)  geoip=false ;;
125
       *) AC_MSG_ERROR(bad value ${enableval} for --enable-geoip) ;;
125
       *) AC_MSG_ERROR(bad value ${enableval} for --enable-geoip) ;;
126
     esac],[geoip=true])
126
     esac],[geoip=false])
127
127
128
AC_ARG_ENABLE(system-geoip,
128
AC_ARG_ENABLE(system-geoip,
129
    [AS_HELP_STRING(--enable-system-geoip,[Enables use of system-wide GeoIP database (implies --disable-geoip) (no by default)])],
129
    [AS_HELP_STRING(--enable-system-geoip,[Enables use of system-wide GeoIP database (implies --disable-geoip) (yes by default)])],
130
    [case "${enableval}" in
130
    [case "${enableval}" in
131
        yes) if test "$have_system_geoip" = yes; then
131
        yes) system_geoip=true ;;
132
                system_geoip=true
132
        no) system_geoip=false ;;
133
                geoip=false
134
             else
135
                AC_MSG_ERROR(cannot enable system geoip. GeoIP library headers were not found on your system)
136
             fi ;;
137
        no) system_geoip=true ;;
138
        *) AC_MSG_ERROR(bad value ${enableval} for --enable-system-geoip) ;;
133
        *) AC_MSG_ERROR(bad value ${enableval} for --enable-system-geoip) ;;
139
    esac],[system_geoip=false])
134
    esac],[system_geoip=true])
135
136
if test x$system_geoip = xtrue; then
137
    if test "$have_system_geoip" = yes; then
138
        geoip=false
139
    else
140
        AC_MSG_ERROR(cannot enable system geoip. GeoIP library headers were not found on your system)
141
    fi
142
fi
140
143
141
AM_CONDITIONAL(ENABLE_GEOIP, test x$geoip = xtrue)
144
AM_CONDITIONAL(ENABLE_GEOIP, test x$geoip = xtrue)
142
AM_CONDITIONAL(USE_SYSTEM_GEOIP, test x$system_geoip = xtrue)
145
AM_CONDITIONAL(USE_SYSTEM_GEOIP, test x$system_geoip = xtrue)
Lines 147-158 Link Here
147
150
148
151
149
AC_ARG_ENABLE(builtin-country-flags,
152
AC_ARG_ENABLE(builtin-country-flags,
150
    [AS_HELP_STRING(--enable-builtin-country-flags,[Install and prefer builtin country flags to the ones provided by KDE (yes by default)])],
153
    [AS_HELP_STRING(--enable-builtin-country-flags,[Install and prefer builtin country flags to the ones provided by KDE (no by default)])],
151
    [case "${enableval}" in
154
    [case "${enableval}" in
152
        yes) builtin_country_flags=true ;;
155
        yes) builtin_country_flags=true ;;
153
        no) builtin_country_flags=false ;;
156
        no) builtin_country_flags=false ;;
154
        *) AC_MSG_ERROR(bad value ${enableval} for --enable-builtin-country-flags) ;;
157
        *) AC_MSG_ERROR(bad value ${enableval} for --enable-builtin-country-flags) ;;
155
    esac],[builtin_country_flags=true])
158
    esac],[builtin_country_flags=false])
156
159
157
AM_CONDITIONAL(ENABLE_BUILTIN_COUNTRY_FLAGS, test x$builtin_country_flags = xtrue)
160
AM_CONDITIONAL(ENABLE_BUILTIN_COUNTRY_FLAGS, test x$builtin_country_flags = xtrue)
158
161

Return to bug 443