changeset: 6373:80186ee6eb57
user:      Kevin McCarthy <[email protected]>
date:      Thu Aug 14 20:12:28 2014 -0700
link:      http://dev.mutt.org/hg/mutt/rev/80186ee6eb57

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.

diffs (12 lines):

diff -r 1630cee66057 -r 80186ee6eb57 configure.ac
--- a/configure.ac      Sun Dec 28 09:41:09 2014 -0800
+++ b/configure.ac      Thu Aug 14 20:12:28 2014 -0700
@@ -1186,7 +1186,7 @@
     ])
 
     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

Reply via email to