putty: Bump to 0.78

This commit is contained in:
Tee KOBAYASHI 2022-11-04 18:42:51 +09:00 committed by xtkoba
parent ec3fb68808
commit 8ecd916380
8 changed files with 85 additions and 73 deletions

View File

@ -2,13 +2,11 @@ TERMUX_PKG_HOMEPAGE=https://www.chiark.greenend.org.uk/~sgtatham/putty/
TERMUX_PKG_DESCRIPTION="A terminal integrated SSH/Telnet client"
TERMUX_PKG_LICENSE="MIT"
TERMUX_PKG_MAINTAINER="@termux"
TERMUX_PKG_VERSION=0.76
TERMUX_PKG_REVISION=4
TERMUX_PKG_VERSION=0.78
TERMUX_PKG_SRCURL=https://the.earth.li/~sgtatham/putty/${TERMUX_PKG_VERSION}/putty-${TERMUX_PKG_VERSION}.tar.gz
TERMUX_PKG_SHA256=547cd97a8daa87ef71037fab0773bceb54a8abccb2f825a49ef8eba5e045713f
TERMUX_PKG_DEPENDS="atk, gdk-pixbuf, glib, gtk3, libandroid-glob, libandroid-shmem, libcairo, libx11, pango"
TERMUX_PKG_SHA256=274e01bcac6bd155dfd647b2f18f791b4b17ff313753aa919fcae2e32d34614f
TERMUX_PKG_DEPENDS="gdk-pixbuf, glib, gtk3, libandroid-glob, libandroid-shmem, libcairo, libx11, pango"
termux_step_pre_configure() {
export CFLAGS="${CFLAGS} -Wno-deprecated-declarations"
export LIBS="-landroid-glob -landroid-shmem"
LDFLAGS+=" -landroid-glob -landroid-shmem"
}

View File

@ -0,0 +1,75 @@
--- a/ssh/sesschan.c
+++ b/ssh/sesschan.c
@@ -482,7 +482,7 @@
agent->cl = cl;
agent->plug.vt = &agentfwd_plugvt;
- char *dir_prefix = dupprintf("/tmp/%s-agentfwd", appname);
+ char *dir_prefix = dupprintf("@TERMUX_PREFIX@/tmp/%s-agentfwd", appname);
char *error = NULL, *socketname = NULL;
agent->socket = platform_make_agent_socket(
&agent->plug, dir_prefix, &error, &socketname);
--- a/unix/network.c
+++ b/unix/network.c
@@ -29,7 +29,7 @@
#endif
#ifndef X11_UNIX_PATH
-# define X11_UNIX_PATH "/tmp/.X11-unix/X"
+# define X11_UNIX_PATH "@TERMUX_PREFIX@/tmp/.X11-unix/X"
#endif
/*
--- a/unix/noise.c
+++ b/unix/noise.c
@@ -70,7 +70,7 @@
exit(1);
}
- fp = popen("ls -al /tmp 2>/dev/null", "r");
+ fp = popen("ls -al @TERMUX_PREFIX@/tmp 2>/dev/null", "r");
if (fp) {
while ( (ret = fread(buf, 1, sizeof(buf), fp)) > 0)
func(buf, ret);
--- a/unix/pageant.c
+++ b/unix/pageant.c
@@ -233,7 +233,7 @@
/* Nothing needs doing in Unix Pageant */
}
-#define PAGEANT_DIR_PREFIX "/tmp/pageant"
+#define PAGEANT_DIR_PREFIX "@TERMUX_PREFIX@/tmp/pageant"
static bool time_to_die = false;
--- a/unix/sharing.c
+++ b/unix/sharing.c
@@ -19,7 +19,7 @@
#include "proxy/proxy.h"
#include "ssh.h"
-#define CONNSHARE_SOCKETDIR_PREFIX "/tmp/putty-connshare"
+#define CONNSHARE_SOCKETDIR_PREFIX "@TERMUX_PREFIX@/tmp/putty-connshare"
#define SALT_FILENAME "salt"
#define SALT_SIZE 64
#ifndef PIPE_BUF
--- a/unix/x11.c
+++ b/unix/x11.c
@@ -117,7 +117,7 @@
* but it's worth a try, and we don't consider it a fatal error if
* it doesn't work.
*/
- unix_path = dupprintf("/tmp/.X11-unix/X%d", displayno);
+ unix_path = dupprintf("@TERMUX_PREFIX@/tmp/.X11-unix/X%d", displayno);
a_unix = unix_sock_addr(unix_path);
sockets[nsockets] = new_unix_listener(a_unix, plug);
@@ -138,7 +138,7 @@
tmpdir = getenv("TMPDIR");
if (!tmpdir || !*tmpdir)
- tmpdir = "/tmp";
+ tmpdir = "@TERMUX_PREFIX@/tmp";
authfilename = dupcat(tmpdir, "/", progname, "-Xauthority-XXXXXX");

View File

@ -1,19 +1,18 @@
diff -uNr putty-0.73/unix/uxpty.c putty-0.73.mod/unix/uxpty.c
--- putty-0.73/unix/uxpty.c 2019-09-22 12:14:52.000000000 +0300
+++ putty-0.73.mod/unix/uxpty.c 2020-09-23 19:29:25.338141793 +0300
@@ -562,6 +562,7 @@
--- a/unix/pty.c
+++ b/unix/pty.c
@@ -563,6 +563,7 @@
#endif
}
+#ifndef __ANDROID__
/* Drop privs. */
{
#ifndef HAVE_NO_SETRESUID
@@ -587,6 +588,7 @@
#if HAVE_SETRESUID && HAVE_SETRESGID
@@ -588,6 +589,7 @@
}
#endif
}
+#endif
+#endif /* __ANDROID__ */
#endif /* NO_PTY_PRE_INIT */

View File

@ -1,12 +0,0 @@
diff -uNr putty-0.70/unix/uxnet.c putty-0.70.mod/unix/uxnet.c
--- putty-0.70/unix/uxnet.c 2017-07-04 22:30:56.000000000 +0300
+++ putty-0.70.mod/unix/uxnet.c 2018-10-05 20:12:44.594090518 +0300
@@ -30,7 +30,7 @@
#endif
#ifndef X11_UNIX_PATH
-# define X11_UNIX_PATH "/tmp/.X11-unix/X"
+# define X11_UNIX_PATH "@TERMUX_PREFIX@/tmp/.X11-unix/X"
#endif
/*

View File

@ -1,12 +0,0 @@
diff -uNr putty-0.70/unix/uxnoise.c putty-0.70.mod/unix/uxnoise.c
--- putty-0.70/unix/uxnoise.c 2017-07-04 22:30:56.000000000 +0300
+++ putty-0.70.mod/unix/uxnoise.c 2018-10-05 20:12:53.697446775 +0300
@@ -70,7 +70,7 @@
exit(1);
}
- fp = popen("ls -al /tmp 2>/dev/null", "r");
+ fp = popen("ls -al @TERMUX_PREFIX@/tmp 2>/dev/null", "r");
if (fp) {
while ( (ret = fread(buf, 1, sizeof(buf), fp)) > 0)
func(buf, ret);

View File

@ -1,12 +0,0 @@
diff -uNr putty-0.70/unix/uxpgnt.c putty-0.70.mod/unix/uxpgnt.c
--- putty-0.70/unix/uxpgnt.c 2017-07-04 22:30:56.000000000 +0300
+++ putty-0.70.mod/unix/uxpgnt.c 2018-10-05 20:13:03.107470567 +0300
@@ -153,7 +153,7 @@
/* Nothing needs doing in Unix Pageant */
}
-#define PAGEANT_DIR_PREFIX "/tmp/pageant"
+#define PAGEANT_DIR_PREFIX "@TERMUX_PREFIX@/tmp/pageant"
const char *const appname = "Pageant";

View File

@ -1,12 +0,0 @@
diff -uNr putty-0.73/unix/uxproxy.c putty-0.73.mod/unix/uxproxy.c
--- putty-0.73/unix/uxproxy.c 2019-09-22 12:14:52.000000000 +0300
+++ putty-0.73.mod/unix/uxproxy.c 2019-10-28 15:01:54.259328879 +0200
@@ -62,7 +62,7 @@
dup2(cmd_err_pipe[1], 2);
noncloexec(0);
noncloexec(1);
- execl("/bin/sh", "sh", "-c", cmd, (void *)NULL);
+ execl("@TERMUX_PREFIX@/bin/sh", "sh", "-c", cmd, (void *)NULL);
_exit(255);
}

View File

@ -1,12 +0,0 @@
diff -uNr putty-0.70/unix/uxshare.c putty-0.70.mod/unix/uxshare.c
--- putty-0.70/unix/uxshare.c 2017-07-04 22:30:56.000000000 +0300
+++ putty-0.70.mod/unix/uxshare.c 2018-10-05 20:13:10.914157046 +0300
@@ -20,7 +20,7 @@
#include "proxy.h"
#include "ssh.h"
-#define CONNSHARE_SOCKETDIR_PREFIX "/tmp/putty-connshare"
+#define CONNSHARE_SOCKETDIR_PREFIX "@TERMUX_PREFIX@/tmp/putty-connshare"
#define SALT_FILENAME "salt"
#define SALT_SIZE 64