1eecc455d6
Changes: mcabber (1.1.0) * New "VI" mode (option 'vi_mode') (Holger Weiß) * Fix issues in buddylist rebuild (franky) * Do not use g_slist_free_full() which requires glib2 2.28.0 (Frank Bergmann) * Use UTF-8 validation of file content when sending a message from a file * Documentation updates mcabber (1.0.5) * Much better performances with huge rosters (Frank Zschockelt) * Fix issue with carbons (CVE-2017-5589) * Fix small memory leak * contrib/vim: Support reloading filetype detection mcabber (1.0.4) * Bugfix: Check the origin of roster pushes Cf. Gajim's CVE-2015-8688 and https://gultsch.de/gajim_roster_push_and_message_interception.html mcabber (1.0.3) * Link with the tinfo library * Fix default modules directory on OpenBSD (Tim van der Molen) * Create history log dir if it doesn't exist (Andrey Utkin) * [OTR] Do not send empty subjects when using otr (franky) * [UI] /set does not display password values anymore (Egor Kovetskiy) * [MUC] Use nick to set the role * Misc help/documentation updates mcabber (1.0.2) * Compatible with Loudmouth >=1.5.3 with SHA256 support (Frank Zschockelt) * Ignore the untrusted certificate warning when user sets a fingerprint (Frank Zschockelt) * Stop HTML-escaping OTR messages - only strip known tags (Frank Zschockelt) * Read $HOME/.mcabberrc if there is no mcabber configuration directory * Minor documentation updates mcabber (1.0.1) * [PGP] Improved PGP-encryption support * [PGP] Improved support for GnuPG v2+ * [PGP] Encrypt messages with our own PGP key and decrypt our own encrypted messages when Carbons are enabled * [PGP] New PGP options: 'gpg_path' and 'gpg_home' (Holger Weiß) * [PGP] Check all signatures and stop immediately if one could be verified (Sven Gaerner) * Improved Carbons support (Holger Weiß) * New option: 'clear_unread_on_carbon' (Holger Weiß) * Improve SSL fingerprint management; Display the server SSL fingerprint when we connect * Use XDG configuration directory if it contains a configuration file * Fix a few memory leaks * Fix external password support (especially on OS X) * Fix resizing when mcabber is built with --enable-sigwinch * Fix reading of history log files w/o LF character (Sam Whited) * Minor documentation updates * Other misc. bugfixes and cleanups
22 lines
512 B
Text
22 lines
512 B
Text
$NetBSD: patch-aa,v 1.2 2017/09/09 14:19:26 leot Exp $
|
|
|
|
Handle correctly panel on NetBSD, not sure it is correct in general
|
|
|
|
--- mcabber/screen.h.orig 2017-06-04 21:13:16.000000000 +0000
|
|
+++ mcabber/screen.h
|
|
@@ -7,14 +7,12 @@
|
|
|
|
#if HAVE_NCURSESW_NCURSES_H
|
|
# include <ncursesw/ncurses.h>
|
|
-# include <ncursesw/panel.h>
|
|
#elif HAVE_NCURSES_NCURSES_H
|
|
# include <ncurses/ncurses.h>
|
|
-# include <ncurses/panel.h>
|
|
#else
|
|
# include <ncurses.h>
|
|
-# include <panel.h>
|
|
#endif
|
|
+# include <panel.h>
|
|
|
|
gboolean vi_mode;
|
|
|