# HG changeset patch # User Mikael Berthe # Date 1447601307 -3600 # Node ID 773590bd2a8ac9246c133d89d08421f182c5de1e # Parent 1afa40f1d80d5be7d5d039f6c24c999bc2ae8b5d autoconf: Display the result of the --enable-sigwinch check AC_MSG_CHECKING was missing and AC_MSG_RESULT was not correctly used. diff -r 1afa40f1d80d -r 773590bd2a8a mcabber/configure.ac --- a/mcabber/configure.ac Wed Nov 12 23:04:36 2014 +0200 +++ b/mcabber/configure.ac Sun Nov 15 16:28:27 2015 +0100 @@ -73,13 +73,16 @@ MC_TM_GMTOFF # Check if we must provide a SIGWINCH handler +AC_MSG_CHECKING([if we use our own SIGWINCH handler]) AC_ARG_ENABLE(sigwinch, AC_HELP_STRING([--enable-sigwinch], [compile with SIGWINCH handler]), [with_sigwinch=$enableval], [with_sigwinch=$with_ext_funcs]) -AC_MSG_RESULT($with_sigwinch) if test "$with_sigwinch" = yes; then + AC_MSG_RESULT($with_sigwinch) AC_DEFINE([USE_SIGWINCH], [], [Provide own SIGWINCH handler]) +else + AC_MSG_RESULT(no) fi # Checks for libraries.