From 91d2afb538cc90a5755adb2edb5c3dde8bb3725d Mon Sep 17 00:00:00 2001 From: Kevin McCarthy Date: Thu, 14 Aug 2014 20:12:28 -0700 Subject: [PATCH] Fix variable name in configure.ac. $ac_cv_search_STRINGPREP_CHECK_VERSION should be $ac_cv_search_stringprep_check_version, to match the first parameter of the AC_SEARCH_LIBS([stringprep_check_version] above. Running configure was giving a "test: =: unary operator expected" error. --- configure.ac | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/configure.ac b/configure.ac index 1b6e01072..0f0c4a684 100644 --- a/configure.ac +++ b/configure.ac @@ -1182,7 +1182,7 @@ if test "x$with_idn" != "xno"; then ]) if test "$with_idn" != auto; then - if test $have_stringprep_h = no || test $have_idna_h = no || test $ac_cv_search_STRINGPREP_CHECK_VERSION = no; then + if test $have_stringprep_h = no || test $have_idna_h = no || test $ac_cv_search_stringprep_check_version = no; then AC_MSG_ERROR([IDN was requested, but libidn was not usable on this system]) fi fi -- 2.40.0