1
0
mirror of https://github.com/profanity-im/profanity.git synced 2024-06-16 21:35:24 +00:00

Merge branch 'master' into otr

This commit is contained in:
James Booth 2014-01-12 01:25:35 +00:00
commit 4e97c1e460
2 changed files with 5 additions and 2 deletions

View File

@ -62,8 +62,9 @@ AM_CPPFLAGS="$AM_CPPFLAGS $PARSER_CFLAGS"
LIBS="$LIBS $PARSER_LIBS"
### Check for libstrophe dependencies
AC_CHECK_LIB([resolv], [__res_query], [],
[AC_MSG_ERROR([libresolv is required for profanity])])
AC_CHECK_LIB([resolv], [res_query], [],
[AC_CHECK_LIB([resolv], [__res_query], [],
[AC_MSG_ERROR([libresolv is required for profanity])])])
PKG_CHECK_MODULES([openssl], [openssl], [],
[AC_MSG_ERROR([openssl is required for profanity])])
AM_CPPFLAGS="$AM_CPPFLAGS $openssl_CFLAGS"

View File

@ -326,8 +326,10 @@ win_handle_error_message(ProfWin *window, const char * const from,
case WIN_DUCK:
case WIN_CONSOLE:
handled = FALSE;
break;
case WIN_MUC:
handled = _muc_handle_error_message(window, from, err_msg);
break;
default:
assert(FALSE);
break;