pkgsrc-Changes archive

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index][Old Index]

CVS commit: pkgsrc/misc/tmate



Module Name:    pkgsrc
Committed By:   adam
Date:           Fri Jun 28 17:36:48 UTC 2024

Modified Files:
        pkgsrc/misc/tmate: distinfo
Added Files:
        pkgsrc/misc/tmate/patches: patch-configure.ac

Log Message:
tmate: fix build with msgpack >= 6


To generate a diff of this commit:
cvs rdiff -u -r1.6 -r1.7 pkgsrc/misc/tmate/distinfo
cvs rdiff -u -r0 -r1.3 pkgsrc/misc/tmate/patches/patch-configure.ac

Please note that diffs are not public domain; they are subject to the
copyright notices on the relevant files.

Modified files:

Index: pkgsrc/misc/tmate/distinfo
diff -u pkgsrc/misc/tmate/distinfo:1.6 pkgsrc/misc/tmate/distinfo:1.7
--- pkgsrc/misc/tmate/distinfo:1.6      Tue Oct 26 10:59:34 2021
+++ pkgsrc/misc/tmate/distinfo  Fri Jun 28 17:36:48 2024
@@ -1,7 +1,8 @@
-$NetBSD: distinfo,v 1.6 2021/10/26 10:59:34 nia Exp $
+$NetBSD: distinfo,v 1.7 2024/06/28 17:36:48 adam Exp $
 
 BLAKE2s (tmate-2.4.0.tar.gz) = c9df3ea23c3d6d81383f2fdfb8c5c67d9ffdfa815c6b5d46d2d15370f66dec7f
 SHA512 (tmate-2.4.0.tar.gz) = 92d2ca354b295678bfc2747ca83a45ebafeaec40ebac94bd94c4926af4f820b3f3a087f365147f41c80d1c8ad032f52c697a2421839c39315d84f98f7eccada6
 Size (tmate-2.4.0.tar.gz) = 614179 bytes
 SHA1 (patch-Makefile.am) = 34eeac2f32d09bbde1ae5eda6158881891feb2f2
+SHA1 (patch-configure.ac) = 02f79f1c5befaf22a69307b04d35235102556788
 SHA1 (patch-tmux.h) = 8c26d6ca70b1a8d51e7c920ea54f59d2023968fe

Added files:

Index: pkgsrc/misc/tmate/patches/patch-configure.ac
diff -u /dev/null pkgsrc/misc/tmate/patches/patch-configure.ac:1.3
--- /dev/null   Fri Jun 28 17:36:49 2024
+++ pkgsrc/misc/tmate/patches/patch-configure.ac        Fri Jun 28 17:36:48 2024
@@ -0,0 +1,24 @@
+$NetBSD: patch-configure.ac,v 1.3 2024/06/28 17:36:48 adam Exp $
+
+Find newer msgpack.
+
+--- configure.ac.orig  2024-06-27 12:05:01.164196412 +0000
++++ configure.ac
+@@ -201,7 +201,7 @@ fi
+ 
+ PKG_CHECK_MODULES(
+   MSGPACK,
+-  msgpack >= 1.1.0,
++  msgpack-c >= 1.1.0,
+   [
+     CPPFLAGS="$MSGPACK_CFLAGS $CPPFLAGS"
+     LIBS="$MSGPACK_LIBS $LIBS"
+@@ -210,7 +210,7 @@ PKG_CHECK_MODULES(
+   found_msgpack=no
+ )
+ if test "x$found_msgpack" = xno; then
+-  AC_MSG_ERROR("msgpack >= 1.1.0 not found")
++  AC_MSG_ERROR("msgpack-c >= 1.1.0 not found")
+ fi
+ 
+ PKG_CHECK_MODULES(



Home | Main Index | Thread Index | Old Index