From a6620604d4526bc6ca46c12e75dd5c04e69d8f61 Mon Sep 17 00:00:00 2001 From: Felipe Zimmerle Date: Mon, 20 Jan 2020 14:05:36 -0300 Subject: [PATCH] build: fix yajl messages --- build/yajl.m4 | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/build/yajl.m4 b/build/yajl.m4 index 7bd9a0be..54e6e3eb 100644 --- a/build/yajl.m4 +++ b/build/yajl.m4 @@ -32,13 +32,13 @@ AC_ARG_WITH( ) if test "x${with_yajl}" == "xno"; then - AC_DEFINE(HAVE_GEOIP, 0, [Support for GeoIP was disabled by the utilization of --without-yajl or --with-yajl=no]) - AC_MSG_NOTICE([Support for GeoIP was disabled by the utilization of --without-yajl or --with-yajl=no]) + AC_DEFINE(HAVE_YAJL, 0, [Support for YAJL was disabled by the utilization of --without-yajl or --with-yajl=no]) + AC_MSG_NOTICE([Support for YAJL was disabled by the utilization of --without-yajl or --with-yajl=no]) YAJL_DISABLED=yes else if test "x${with_yajl}" == "xyes"; then YAJL_MANDATORY=yes - AC_MSG_NOTICE([GeoIP support was marked as mandatory by the utilization of --with-yajl=yes]) + AC_MSG_NOTICE([YAJL support was marked as mandatory by the utilization of --with-yajl=yes]) fi # for x in ${YAJL_POSSIBLE_LIB_NAMES}; do # CHECK_FOR_YAJL_AT(${x}) @@ -49,7 +49,7 @@ else # if test "x${with_yajl}" != "xyes" or test "x${with_yajl}" == "xyes"; then if test "x${with_yajl}" == "x" || test "x${with_yajl}" == "xyes"; then - # Nothing about GeoIP was informed, using the pkg-config to figure things out. + # Nothing about YAJL was informed, using the pkg-config to figure things out. if test -n "${PKG_CONFIG}"; then YAJL_PKG_NAME="" for x in ${YAJL_POSSIBLE_LIB_NAMES}; do @@ -59,7 +59,7 @@ else fi done fi - AC_MSG_NOTICE([Nothing about GeoIP was informed during the configure phase. Trying to detect it on the platform...]) + AC_MSG_NOTICE([Nothing about YAJL was informed during the configure phase. Trying to detect it on the platform...]) if test -n "${YAJL_PKG_NAME}"; then # Package was found using the pkg-config scripts YAJL_VERSION="`${PKG_CONFIG} ${YAJL_PKG_NAME} --modversion`"