# HG changeset patch # User Mikael Berthe # Date 1152355674 -7200 # Node ID a09bf67d1dfb3f68dd9bd849e968b86a82735391 # Parent ede9260be93d9fdb97af933cf683f127adb7d247 Unicode support depends on having ncursesw diff -r ede9260be93d -r a09bf67d1dfb mcabber/INSTALL --- a/mcabber/INSTALL Sat Jul 08 09:43:23 2006 +0200 +++ b/mcabber/INSTALL Sat Jul 08 12:47:54 2006 +0200 @@ -7,6 +7,7 @@ the src/ directory after the build procedure) MCabber needs ncurses and ncurses development packages to build correctly. +For UTF-8 terminal support, use ncursesw instead. If you want SSL support, you will need openssl lib & dev packages as well. Please have a look at the README file before launching mcabber. diff -r ede9260be93d -r a09bf67d1dfb mcabber/src/utf8.h --- a/mcabber/src/utf8.h Sat Jul 08 09:43:23 2006 +0200 +++ b/mcabber/src/utf8.h Sat Jul 08 12:47:54 2006 +0200 @@ -21,6 +21,10 @@ # undef UNICODE #endif +#ifndef HAVE_NCURSESW_NCURSES_H +# undef UNICODE +#endif + extern int utf8_mode; char *prev_char(char *str, const char *limit);