-
Notifications
You must be signed in to change notification settings - Fork 160
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
pkgsrc changes: - handle utmp option properly - remove a patch applied in the upstream Upstream changes noted in doc/en/ReleaseNote: ver 3.8.8 * Support Haiku OS. (Experimental) (Execute ./configure with --with-gui=beos option.) (See doc/en/README.beos) * Support "[font family]:style=..." format in aafont or font-fb config file. * Support mosh. (Experimental) (See doc/en/README.mosh) (Don't distribute libptymosh in binary format.) * Clear a window and scroll out all lines if the size of a window decreases and some characters in it disappear. * Support "%s" (replaced by selected strings) in "exesel:..." in ~/.mlterm/key. * Add local_echo_wait / --lew option. * Remove libind_tamil.so because it is very buggy. * Change the default shortcut key of INSERT_SELECTION from Shift+Insert to Command+v on MacOSX and iOS. * Skip \r in configuration files. * Start scp by Shift+Drag&Drop on not only xlib and win32 but also wayland, sdl2 and cocoa. (Command+Drag&Drop on cocoa.) * Change the default value of "font_size_range" option from 6-30 to 1-100. * Add vte 0.56.0 API symbols to libvte compatible library. * Bug fixes: Fix https://sourceforge.net/p/mlterm/mailman/message/36472061/ Fix https://sourceforge.net/p/mlterm/mailman/message/36513313/ Fix https://sourceforge.net/p/mlterm/bugs/79/ Fix segfault in processing illegal sixel sequence. Fix invalidation of DECDWL on cairo. (Enbugged at 3.8.6) Fix handling ISCII fonts on cairo and xft. (Improve showing bengali characters.) Fix screen corruption (http://twitter.com/Cj_bc_sd/status/1088111309223161857) on MacOSX 10.14. (Thanks to @Cj_bc_sd) Fix segfault in showing an input method window. (Thanks to @isaki68k)
- Loading branch information
Showing
6 changed files
with
38 additions
and
64 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,8 @@ | ||
$NetBSD: distinfo,v 1.75 2019/02/17 16:57:59 tsutsui Exp $ | ||
$NetBSD: distinfo,v 1.76 2019/04/05 12:14:58 tsutsui Exp $ | ||
|
||
SHA1 (mlterm-3.8.7.tar.gz) = 040363ea4428fbdbeaa49cf402f71f41b8dbaea7 | ||
RMD160 (mlterm-3.8.7.tar.gz) = 4a9a4a053a6ae4c431564c84051a7ed95acaa311 | ||
SHA512 (mlterm-3.8.7.tar.gz) = 6d2087d1433918f476e35dbde8d79940170fa6f133b9122e1db19006afc5081dbad7ed487bfa939b3d92ea29f3843a2b7c5540dc05e54b3c568bbe76ceb66ad2 | ||
Size (mlterm-3.8.7.tar.gz) = 3994292 bytes | ||
SHA1 (patch-configure) = b29ee553686061f8fd0f93b8c1d68954c060338d | ||
SHA1 (mlterm-3.8.8.tar.gz) = 54f40fa50214656ab70f592d5d58805b1dfdc1c6 | ||
RMD160 (mlterm-3.8.8.tar.gz) = 9a7675a86999541b57742099a5e9eac8a539b580 | ||
SHA512 (mlterm-3.8.8.tar.gz) = 4db7de441300d30eadc85d1c780bb10c81d2555225fe163280508180ccc2114eeacf0e5772f9d69c1b59ef6f3ffb3444b75fe3e5ea508dd9e18e5850e78f78a5 | ||
Size (mlterm-3.8.8.tar.gz) = 4035215 bytes | ||
SHA1 (patch-configure) = e95b426f028c9bcb9895e69bb85ce8450f78a8c8 | ||
SHA1 (patch-etc_font-fb) = 03f0b2ecee20ef3201c8e4ce17f03ac90f657b00 | ||
SHA1 (patch-uitoolkit_xlib_ui__window.c) = 6424d2cd55564bd2a3a5e61582d8bc156b0eb703 |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,15 +1,24 @@ | ||
$NetBSD: patch-configure,v 1.17 2018/06/22 14:17:15 tsutsui Exp $ | ||
$NetBSD: patch-configure,v 1.18 2019/04/05 12:14:58 tsutsui Exp $ | ||
|
||
- setuid root is handled by SPECIAL_PERMS in pkgsrc | ||
- setuid root / setgid utmp is handled by SPECIAL_PERMS in pkgsrc | ||
|
||
--- configure.orig 2018-03-07 13:17:24.000000000 +0000 | ||
--- configure.orig 2019-03-31 13:10:47.000000000 +0000 | ||
+++ configure | ||
@@ -22185,7 +22185,7 @@ else | ||
fi | ||
@@ -25536,7 +25536,7 @@ if test "$INSTALL_OPT" = ""; then | ||
if test "$utmp_none_obj" = ""; then | ||
has_utmp=`grep utmp /etc/group 2>/dev/null` | ||
if test "$has_utmp" ; then | ||
- INSTALL_OPT="-m 2755 -g utmp" | ||
+ INSTALL_OPT="" | ||
else | ||
INSTALL_OPT="-m 4755 -o root" | ||
fi | ||
@@ -25545,7 +25545,7 @@ if test "$INSTALL_OPT" = ""; then | ||
fi | ||
|
||
if test "$gui" = "fb" ; then | ||
- INSTALL_OPT="-m 4755 -o root" | ||
+ INSTALL_OPT="" | ||
if test "$gui" = "fb" ; then | ||
- INSTALL_OPT="-m 4755 -o root" | ||
+ INSTALL_OPT="" | ||
fi | ||
fi | ||
|
||
|
This file was deleted.
Oops, something went wrong.