View | Details | Raw Unified | Return to bug 187462
Collapse All | Expand All

(-)rxvt-unicode/Makefile (-3 / +1 lines)
Lines 3-9 Link Here
3
3
4
PORTNAME=	rxvt-unicode
4
PORTNAME=	rxvt-unicode
5
PORTVERSION=	9.19
5
PORTVERSION=	9.19
6
PORTREVISION=	1
6
PORTREVISION=	2
7
CATEGORIES=	x11
7
CATEGORIES=	x11
8
MASTER_SITES=	http://dist.schmorp.de/rxvt-unicode/%SUBDIR%/
8
MASTER_SITES=	http://dist.schmorp.de/rxvt-unicode/%SUBDIR%/
9
MASTER_SITE_SUBDIR=	. Attic
9
MASTER_SITE_SUBDIR=	. Attic
Lines 129-136 Link Here
129
# enable scrolling via mouse wheel or buttons 4 & 5
129
# enable scrolling via mouse wheel or buttons 4 & 5
130
.if !${PORT_OPTIONS:MMOUSEWHEEL}
130
.if !${PORT_OPTIONS:MMOUSEWHEEL}
131
CONFIGURE_ARGS+=	--disable-mousewheel
131
CONFIGURE_ARGS+=	--disable-mousewheel
132
.else
133
USE_GCC=		yes # segfaults when trying to scroll with the mouse wheel if clang
134
.endif
132
.endif
135
133
136
# enable smart resize
134
# enable smart resize
(-)rxvt-unicode/files/patch-src_rxvt.h (+11 lines)
Line 0 Link Here
1
--- src/rxvt.h.orig	2013-10-03 01:05:18.000000000 +0200
2
+++ src/rxvt.h		2014-03-12 00:02:43.000000000 +0100
3
@@ -1540,7 +1540,7 @@
4
   bool scr_page (int nlines) NOTHROW;
5
   bool scr_page (enum page_dirn direction, int nlines) NOTHROW
6
   {
7
-    scr_page (direction * nlines);
8
+    return scr_page (direction * nlines);
9
   }
10
   bool scr_changeview (int new_view_start) NOTHROW;
11
   void scr_bell () NOTHROW;

Return to bug 187462