diff options
author | obache <obache@pkgsrc.org> | 2010-09-22 09:33:41 +0000 |
---|---|---|
committer | obache <obache@pkgsrc.org> | 2010-09-22 09:33:41 +0000 |
commit | c3ecea532bea5a00170e5e5bcf70e5b30f929009 (patch) | |
tree | 085f3e65701d73fc571b9b03deeb9a6b4f60cda1 /x11/mlterm/patches/patch-an | |
parent | 7bb91603049869652e9ffa9e1ce561f51e60e2c0 (diff) | |
download | pkgsrc-c3ecea532bea5a00170e5e5bcf70e5b30f929009.tar.gz |
Update mlterm to 3.0.1.
Based on PR#43822 by YAMASHIRO, Jun.
Additional clean up by me.
pkgsrc changes:
* set LICENSE=modified-bsd (with uim option, gnu-lgpl-v2 additionally).
* add m17nlib option.
ver 3.0.1
* Improvements for performance of changing 256 colors by
"\x1b]4;N;rgb:RR/GG/BB\x07" sequence. (Thanks to Konosuke Watanabe san)
* Support "ESC[9Nm" and "ESC[10Nm" sequences.
* Add --button3/button3_behavior option. (If "menu1" is specified, pressing
button3 shows conf_menu_path_1 program (mlterm-menu) like gnome-terminal.)
* Add "Copy" & "Paste" menus to mlterm-menu.
* Improvements for compatibility with xterm about RGB of system colors.
* Add 'col_size_of_width_a' to configuration protocol. (doc/en/PROTOCOL)
* Merge SF patches:
#2988801, #2987646 (Thanks to Ahmed El-Mahmoudy)
* Other bug fixes:
#2818015(partly),#2818018 (Thanks to Thomas Wolff)
ver 3.0.0
* Support 256 colors. (Thanks to Shinichiro Hamaji san)
* Character convertion tables are separated from libmkf library.
* Support win32(Windows 2000-XP) native GUI.
('--with-gui=win32' in mingw, msys and cygwin)
* Support font and color configuration protocol.
(doc/en/PROTOCOL.font,PROTOCOL.color)
* Change 'aafont' format as follows. (Elements in parentheses are optional.)
[Family]-[Encoding](:[Percentage])
=> [Family]( [Weight] [Slant] [Size]-[Encoding]:[Percentage])
* Add 'DEFAULT' key which specifies fonts used by default
for font configuration files.
* Add --maxptys option.
* Add 'mlclient', 'mlclientx', 'static_backscroll_mode' and 'type_engine' to
configuration protocol. (doc/en/PROTOCOL)
* Add 'mlclientx' command.
* Merge SF patches -
#1574764 (Thanks to Christian Biere)
# (Thanks to Frederic Heulin)
#2879800 (Thanks to Kouichi Kusanagi san)
* Other bug fixes:
#1999220 (Thanks to Christian Biere)
ver 2.9.4
* Arabic translation of mlconfig [Khaled Hosny]
* Selected region can be expanded by right-clicking [minami]
(Thanks to ssakane)
* New config key string "title" to allow change pty title [minami]
* Set DISPLAY correctly for ptys opened by -P option [nokada] (SF Bug #1534313)
* Fixed compile errors with gcc 4.3 [mfabian]
* Fixed a potentiol off-by-one bug [mfabian] (Thanks to Dominique Leuenberger)
* Fixed compile errors on biarch systems [Kenshi Muto] (Debian Bug #396532)
* Plugged file-desctiptor leaks [Christian Biere] (SF Patch #1576044)
* Made "restore cursor" work properly with alternate screens [minami]
(SF Bug#1472143)
* Fixed broken handling of Atom [Kusanagi Kouichi]
* Other bug fixes:
- Debian BUG #329194 [David Kolovratnik]
- SF Bug #1568596 [nokada]
- SF Patch #1574241 [Christian Biere]
Diffstat (limited to 'x11/mlterm/patches/patch-an')
-rw-r--r-- | x11/mlterm/patches/patch-an | 26 |
1 files changed, 0 insertions, 26 deletions
diff --git a/x11/mlterm/patches/patch-an b/x11/mlterm/patches/patch-an deleted file mode 100644 index d74dc627b2f..00000000000 --- a/x11/mlterm/patches/patch-an +++ /dev/null @@ -1,26 +0,0 @@ -$NetBSD: patch-an,v 1.1 2006/12/19 07:53:57 wiz Exp $ - -plugged fd leaks. - -http://mlterm.cvs.sourceforge.net/mlterm/mlterm/xwindow/x_display.c?r1=1.4&r2=1.5&view=patch - ---- xwindow/x_display.c.orig 2003/12/09 11:56:13 1.4 -+++ xwindow/x_display.c 2006/10/19 14:41:51 1.5 -@@ -7,6 +7,7 @@ - #include <kiklib/kik_debug.h> - #include <kiklib/kik_mem.h> - #include <kiklib/kik_str.h> /* strdup */ -+#include <kiklib/kik_file.h> /* kik_file_set_cloexec */ - - #include "x_xim.h" - #include "x_picture.h" -@@ -39,6 +40,9 @@ - goto error1 ; - } - -+ /* set close-on-exec flag on the socket connected to X. */ -+ kik_file_set_cloexec( XConnectionNumber( disp->display)); -+ - if( ( disp->name = strdup( name)) == NULL) - { - goto error2 ; |