The `tmate` project forked the `tmux` code to allow for easy, almost-instantaneous pair programming in the console. Using this project, the GitHub Action https://github.com/marketplace/actions/debugging-with-tmate allows debugging build failures interactively. Unfortunately, `tmate` does not offer any support for Windows. MSYS2 to the rescue! We just added package definitions for `msgpack-c` and `libssh`, which are the two previously missing dependencies of `tmate`, and with this commit, we add the package definition for `tmate` itself. Signed-off-by: Johannes Schindelin <johannes.schindelin@gmx.de>
28 lines
577 B
Diff
28 lines
577 B
Diff
From d637d257d25e507667a358797690e6577e37f9a4 Mon Sep 17 00:00:00 2001
|
|
From: Gennady Feldman <gena01@gmail.com>
|
|
Date: Wed, 13 Dec 2017 07:23:15 -0500
|
|
Subject: [PATCH 2/3] configure: handle MSYS2
|
|
|
|
---
|
|
configure.ac | 4 ++++
|
|
1 file changed, 4 insertions(+)
|
|
|
|
diff --git a/configure.ac b/configure.ac
|
|
index 028d5559..94f99385 100644
|
|
--- a/configure.ac
|
|
+++ b/configure.ac
|
|
@@ -585,6 +585,10 @@ case "$host_os" in
|
|
AC_MSG_RESULT(cygwin)
|
|
PLATFORM=cygwin
|
|
;;
|
|
+ *msys*)
|
|
+ AC_MSG_RESULT(msys)
|
|
+ PLATFORM=msys
|
|
+ ;;
|
|
*)
|
|
AC_MSG_RESULT(unknown)
|
|
PLATFORM=unknown
|
|
--
|
|
2.29.1
|
|
|