From 34421e9632237eef1b42dacc23fc85ac3eeea923 Mon Sep 17 00:00:00 2001 From: Pierce Lopez Date: Wed, 15 Jul 2020 04:05:40 -0400 Subject: [PATCH] buildsys: fix a couple english spelling errors in configure.ac introduced in 1293d03b1a38 (rbtree: introduce new ifdef condition HAVE_STATEMENT_EXPRESSION_EXT) --- configure.ac | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/configure.ac b/configure.ac index 4113a420eb..0041bcd5e8 100644 --- a/configure.ac +++ b/configure.ac @@ -407,12 +407,12 @@ case "$host" in esac AM_CONDITIONAL([HOST_MINGW], [test "x${host_mingw}" = "xyes"]) -AC_MSG_CHECKING(if compiler supprots statement expressions) +AC_MSG_CHECKING(if compiler supports statement expressions) AC_COMPILE_IFELSE([AC_LANG_PROGRAM([],[ int main(int argc, char **argv) {return ({ int x = 1; x + argc;});} -])],[have_statment_expression_ext=yes],[have_statment_expression_ext=no]) -AC_MSG_RESULT($have_statment_expression_ext) -if test yes = "$have_statment_expression_ext"; then +])],[have_statement_expression_ext=yes],[have_statement_expression_ext=no]) +AC_MSG_RESULT($have_statement_expression_ext) +if test yes = "$have_statement_expression_ext"; then AC_DEFINE(HAVE_STATEMENT_EXPRESSION_EXT) fi