svn commit: r343325 - head/x11/rxvt-unicode

Thierry Thomas thierry at FreeBSD.org
Sat Feb 8 13:06:38 UTC 2014


Author: thierry
Date: Sat Feb  8 13:06:37 2014
New Revision: 343325
URL: http://svnweb.freebsd.org/changeset/ports/343325
QAT: https://qat.redports.org/buildarchive/r343325/

Log:
  Don't force Gcc when MOUSEWHEEL is disabled.
  
  PR:		ports/186107
  Submitted by:	Zsolt Udvari <udvzsolt (at) gmail.com>

Modified:
  head/x11/rxvt-unicode/Makefile

Modified: head/x11/rxvt-unicode/Makefile
==============================================================================
--- head/x11/rxvt-unicode/Makefile	Sat Feb  8 12:47:51 2014	(r343324)
+++ head/x11/rxvt-unicode/Makefile	Sat Feb  8 13:06:37 2014	(r343325)
@@ -18,7 +18,6 @@ RUN_DEPENDS=	${LOCALBASE}/bin/fc-cache:$
 		${LOCALBASE}/share/misc/terminfo.db:${PORTSDIR}/devel/ncurses
 
 USES=			pkgconfig shebangfix
-USE_GCC=		yes # segfaults when trying to scroll with the mouse wheel if clang
 USE_XORG=		xpm xft xrender
 GNU_CONFIGURE=		yes
 CPPFLAGS+=		-I${LOCALBASE}/include
@@ -129,6 +128,8 @@ CONFIGURE_ARGS+=	--disable-delete-key
 # enable scrolling via mouse wheel or buttons 4 & 5
 .if !${PORT_OPTIONS:MMOUSEWHEEL}
 CONFIGURE_ARGS+=	--disable-mousewheel
+.else
+USE_GCC=		yes # segfaults when trying to scroll with the mouse wheel if clang
 .endif
 
 # enable smart resize


More information about the svn-ports-all mailing list