From 75603d131d3708620aa59f68bdaf37d491cadb83 Mon Sep 17 00:00:00 2001 From: Olivier Blin Date: Wed, 28 Aug 2019 13:51:14 +0200 Subject: [PATCH] Fix auto flags for icu runtime and libidn builtin --- configure.ac | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/configure.ac b/configure.ac index 48adf01..d3d65bf 100644 --- a/configure.ac +++ b/configure.ac @@ -118,7 +118,7 @@ AC_ARG_ENABLE([asan], AC_SUBST([LIBPSL_SO_VERSION], [8:1:3]) AC_SUBST([LIBPSL_VERSION], $VERSION) -# Check for enable/disable builtin PSL data +# Check for enable/disable runtime PSL data AC_ARG_ENABLE(runtime, [ --enable-runtime[[=IDNA library]] @@ -235,7 +235,7 @@ if test "$enable_runtime" = "libicu" -o "$enable_builtin" = "libicu" -o "$enable if test "x$HAVE_LIBICU" = "xyes"; then if test "$enable_runtime" = "auto"; then enable_runtime=libicu - AC_DEFINE([BUILTIN_GENERATOR_LIBICU], [1], [generate PSL data using libicu]) + AC_DEFINE([WITH_LIBICU], [1], [generate PSL data using libicu]) fi if test "$enable_builtin" = "auto"; then enable_builtin=libicu @@ -268,7 +268,7 @@ if test "$enable_runtime" = "libidn" -o "$enable_builtin" = "libidn" -o "$enable fi if test "$enable_builtin" = "auto"; then enable_builtin=libidn - AC_DEFINE([WITH_LIBIDN], [1], [generate PSL data using libidn]) + AC_DEFINE([BUILTIN_GENERATOR_LIBIDN], [1], [generate PSL data using libidn]) fi fi fi