pkgsrc-Changes archive

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

CVS commit: pkgsrc/misc/tmux



Module Name:    pkgsrc
Committed By:   jperkin
Date:           Thu Jan 23 10:09:36 UTC 2020

Modified Files:
        pkgsrc/misc/tmux: distinfo
Added Files:
        pkgsrc/misc/tmux/patches: patch-compat.h

Log Message:
tmux: Handle the FNM_CASEFOLD extension where unsupported.


To generate a diff of this commit:
cvs rdiff -u -r1.43 -r1.44 pkgsrc/misc/tmux/distinfo
cvs rdiff -u -r0 -r1.1 pkgsrc/misc/tmux/patches/patch-compat.h

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

Modified files:

Index: pkgsrc/misc/tmux/distinfo
diff -u pkgsrc/misc/tmux/distinfo:1.43 pkgsrc/misc/tmux/distinfo:1.44
--- pkgsrc/misc/tmux/distinfo:1.43      Wed Jan  1 15:06:07 2020
+++ pkgsrc/misc/tmux/distinfo   Thu Jan 23 10:09:35 2020
@@ -1,6 +1,7 @@
-$NetBSD: distinfo,v 1.43 2020/01/01 15:06:07 leot Exp $
+$NetBSD: distinfo,v 1.44 2020/01/23 10:09:35 jperkin Exp $
 
 SHA1 (tmux-3.0a.tar.gz) = 0cc951b9ff545b429c101eb562e0be9c5aba5ed4
 RMD160 (tmux-3.0a.tar.gz) = 2b781a3632c11098184f787774742b5e5af761ce
 SHA512 (tmux-3.0a.tar.gz) = f326ee9c0e5e9a46ce9c99c76407b8cf35feea5f898c3c937fd8c5e488ff9a809272de19226d9d10f864e11051dcf633327820b7f8d86d85962da61174bbfb0b
 Size (tmux-3.0a.tar.gz) = 546377 bytes
+SHA1 (patch-compat.h) = 3d78363377e0a518d9fad5c92eccb6209ec13e6c

Added files:

Index: pkgsrc/misc/tmux/patches/patch-compat.h
diff -u /dev/null pkgsrc/misc/tmux/patches/patch-compat.h:1.1
--- /dev/null   Thu Jan 23 10:09:36 2020
+++ pkgsrc/misc/tmux/patches/patch-compat.h     Thu Jan 23 10:09:35 2020
@@ -0,0 +1,21 @@
+$NetBSD: patch-compat.h,v 1.1 2020/01/23 10:09:35 jperkin Exp $
+
+Handle the FNM_CASEFOLD extension.  tmux/tmux#2020.
+
+--- compat.h.orig      2019-06-26 11:26:30.000000000 +0000
++++ compat.h
+@@ -154,6 +154,14 @@ void      warnx(const char *, ...);
+ #define O_DIRECTORY 0
+ #endif
+ 
++#ifndef FNM_CASEFOLD
++#ifdef FNM_IGNORECASE
++#define FNM_CASEFOLD FNM_IGNORECASE
++#else
++#define FNM_CASEFOLD 0
++#endif
++#endif
++
+ #ifndef INFTIM
+ #define INFTIM -1
+ #endif



Home | Main Index | Thread Index | Old Index