diff options
-rw-r--r-- | NEWS | 1 | ||||
-rwxr-xr-x | configure | 10 | ||||
-rw-r--r-- | configure.ac | 2 |
3 files changed, 7 insertions, 6 deletions
@@ -1,6 +1,7 @@ -- ircd-hybrid-8.1.3 Release Notes o) Fixed possible core on "STATS z" o) Revised doc/reference.conf +o) Fixed broken --disable-libgeoip switch -- ircd-hybrid-8.1.2 Release Notes @@ -1,5 +1,5 @@ #! /bin/sh -# From configure.ac Id: configure.ac 2272 2013-06-18 15:12:12Z michael . +# From configure.ac Id: configure.ac 2326 2013-06-23 12:33:47Z michael . # Guess values for system-dependent variables and create Makefiles. # Generated by GNU Autoconf 2.69 for ircd-hybrid 8.1.3. # @@ -805,7 +805,7 @@ with_included_ltdl with_ltdl_include with_ltdl_lib enable_ltdl_install -enable_libGeoIP +enable_libgeoip enable_openssl enable_assert enable_kqueue @@ -13661,9 +13661,9 @@ if test "$ac_res" != no; then : fi -# Check whether --enable-libGeoIP was given. -if test "${enable_libGeoIP+set}" = set; then : - enableval=$enable_libGeoIP; +# Check whether --enable-libgeoip was given. +if test "${enable_libgeoip+set}" = set; then : + enableval=$enable_libgeoip; else ac_fn_c_check_header_mongrel "$LINENO" "GeoIP.h" "ac_cv_header_GeoIP_h" "$ac_includes_default" if test "x$ac_cv_header_GeoIP_h" = xyes; then : diff --git a/configure.ac b/configure.ac index cbe73ec..af3914b 100644 --- a/configure.ac +++ b/configure.ac @@ -48,7 +48,7 @@ AC_CHECK_HEADERS_ONCE(crypt.h \ AC_SEARCH_LIBS(crypt, crypt) -AC_ARG_ENABLE(libGeoIP, +AC_ARG_ENABLE(libgeoip, [AS_HELP_STRING([--disable-libgeoip],[Disable GeoIP support])], [], [AC_CHECK_HEADER(GeoIP.h, [AC_SEARCH_LIBS(GeoIP_id_by_ipnum_v6_gl, GeoIP, |