Update to rxvt-unicode-9.12

Many thanks to Emanuele Giaquinta (upstream developer) for his
prompt collaboration.
This commit is contained in:
dcoppa 2011-07-05 15:08:49 +00:00
parent a17a1a92c1
commit f651fdfa52
4 changed files with 28 additions and 11 deletions

View File

@ -1,13 +1,13 @@
# $OpenBSD: Makefile,v 1.11 2011/05/29 20:27:28 dcoppa Exp $
# $OpenBSD: Makefile,v 1.12 2011/07/05 15:08:49 dcoppa Exp $
COMMENT = clone of rxvt with Unicode and Xft support
DISTNAME = rxvt-unicode-9.11
REVISION = 0
DISTNAME = rxvt-unicode-9.12
CATEGORIES = x11
EXTRACT_SUFX = .tar.bz2
MASTER_SITES = http://dist.schmorp.de/rxvt-unicode/
MASTER_SITES = http://dist.schmorp.de/rxvt-unicode/ \
http://dist.schmorp.de/rxvt-unicode/Attic/
HOMEPAGE = http://software.schmorp.de/pkg/rxvt-unicode.html

View File

@ -1,5 +1,5 @@
MD5 (rxvt-unicode-9.11.tar.bz2) = G+1b/u0Cbgv6+g6eT2KqNw==
RMD160 (rxvt-unicode-9.11.tar.bz2) = lXhS4MvsIJqlrjQKOLWc2g/0nt0=
SHA1 (rxvt-unicode-9.11.tar.bz2) = IdD62aYDLbzyxDqF8ohUPGvVqz0=
SHA256 (rxvt-unicode-9.11.tar.bz2) = BFLAAGZ3TvbjL80KHm8JIwOS6p9vQuHC73uR1vy4LYU=
SIZE (rxvt-unicode-9.11.tar.bz2) = 882787
MD5 (rxvt-unicode-9.12.tar.bz2) = lFrzfWYcjEWnysKSFg58cA==
RMD160 (rxvt-unicode-9.12.tar.bz2) = MvU6V7UHLLyxt2UTfwFh2X/eWZ0=
SHA1 (rxvt-unicode-9.12.tar.bz2) = TL8FFrgwTfsEG58+WqumYv7kuXk=
SHA256 (rxvt-unicode-9.12.tar.bz2) = HbM0IEv7JksxNOAdnTz0RsWsfUdRSQlDX5FPOQbzfn4=
SIZE (rxvt-unicode-9.12.tar.bz2) = 886255

View File

@ -0,0 +1,17 @@
$OpenBSD: patch-libptytty_src_ptytty_h,v 1.1 2011/07/05 15:08:49 dcoppa Exp $
Fix compilation on systems with bsd style utmp and no utmpx, such
as OpenBSD (upstream cvs revision 1.30 of libptytty)
--- libptytty/src/ptytty.h.orig Tue May 31 08:21:52 2011
+++ libptytty/src/ptytty.h Tue Jul 5 13:20:23 2011
@@ -69,9 +69,7 @@ struct ptytty_unix : ptytty (public)
#ifdef HAVE_STRUCT_UTMPX
struct utmpx utx;
#endif
-#if (defined(HAVE_STRUCT_UTMP) && defined(HAVE_UTMP_PID)) || defined(HAVE_STRUCT_UTMPX)
char ut_id[5];
-#endif
void logout ();
#endif

View File

@ -1,6 +1,6 @@
$OpenBSD: patch-src_main_C,v 1.4 2011/05/25 07:53:07 dcoppa Exp $
$OpenBSD: patch-src_main_C,v 1.5 2011/07/05 15:08:49 dcoppa Exp $
Fix a bug causing artifacts on the bottom of the screen when using
Fix a bug causing artifacts at the bottom of the screen when using
rxvt-unicode without hints
(From: https://awesome.naquadah.org/wiki/Urxvt_Hints)