From cdace7cac1d42e757150127d38792c0d34fd2848 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Ond=C5=99ej=20Sur=C3=BD?= Date: Wed, 26 Jun 2019 12:53:35 +0200 Subject: [PATCH] Fix printing whether libxml2 is used in the report part of configure.ac --- configure | 4 ++-- configure.ac | 4 ++-- 2 files changed, 4 insertions(+), 4 deletions(-) diff --git a/configure b/configure index 3d4416f410..dfce44b570 100755 --- a/configure +++ b/configure @@ -25312,7 +25312,7 @@ report() { if test "yes" = "$enable_full_report"; then test "no" = "$found_ipv6" || echo " IPv6 support (--enable-ipv6)" test "X$PYTHON" = "X" || echo " Python tools (--with-python)" - test "X$XMLSTATS" = "X" || echo " XML statistics (--with-libxml2)" + test "X$LIBXML2_LIBS" = "X" || echo " XML statistics (--with-libxml2)" test "X$JSON_C_LIBS" = "X" || echo " JSON statistics (--with-json-c): $JSON_C_CFLAGS $JSON_C_LIBS" test "X$ZLIB" = "X" || echo " HTTP zlib compression (--with-zlib)" test "X$NZD_TOOLS" = "X" || echo " LMDB database to store configuration for 'addzone' zones (--with-lmdb)" @@ -25390,7 +25390,7 @@ report() { test "no" = "$with_cmocka" && echo " CMocka Unit Testing Framework (--with-cmocka)" test "X$PYTHON" = "X" && echo " Python tools (--with-python)" - test "X$XMLSTATS" = "X" && echo " XML statistics (--with-libxml2)" + test "X$LIBXML2_LIBS" = "X" && echo " XML statistics (--with-libxml2)" test "X$JSON_C_LIBS" = "X" && echo " JSON statistics (--with-json-c)" test "X$ZLIB" = "X" && echo " HTTP zlib compression (--with-zlib)" test "X$NZD_TOOLS" = "X" && echo " LMDB database to store configuration for 'addzone' zones (--with-lmdb)" diff --git a/configure.ac b/configure.ac index 87cab36810..714b501d0a 100644 --- a/configure.ac +++ b/configure.ac @@ -2954,7 +2954,7 @@ report() { if test "yes" = "$enable_full_report"; then test "no" = "$found_ipv6" || echo " IPv6 support (--enable-ipv6)" test "X$PYTHON" = "X" || echo " Python tools (--with-python)" - test "X$XMLSTATS" = "X" || echo " XML statistics (--with-libxml2)" + test "X$LIBXML2_LIBS" = "X" || echo " XML statistics (--with-libxml2)" test "X$JSON_C_LIBS" = "X" || echo " JSON statistics (--with-json-c): $JSON_C_CFLAGS $JSON_C_LIBS" test "X$ZLIB" = "X" || echo " HTTP zlib compression (--with-zlib)" test "X$NZD_TOOLS" = "X" || echo " LMDB database to store configuration for 'addzone' zones (--with-lmdb)" @@ -3032,7 +3032,7 @@ report() { test "no" = "$with_cmocka" && echo " CMocka Unit Testing Framework (--with-cmocka)" test "X$PYTHON" = "X" && echo " Python tools (--with-python)" - test "X$XMLSTATS" = "X" && echo " XML statistics (--with-libxml2)" + test "X$LIBXML2_LIBS" = "X" && echo " XML statistics (--with-libxml2)" test "X$JSON_C_LIBS" = "X" && echo " JSON statistics (--with-json-c)" test "X$ZLIB" = "X" && echo " HTTP zlib compression (--with-zlib)" test "X$NZD_TOOLS" = "X" && echo " LMDB database to store configuration for 'addzone' zones (--with-lmdb)"