Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 8 Feb 2014 13:06:37 +0000 (UTC)
From:      Thierry Thomas <thierry@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r343325 - head/x11/rxvt-unicode
Message-ID:  <201402081306.s18D6boR088209@svn.freebsd.org>

next in thread | raw e-mail | index | archive | help
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



Want to link to this message? Use this URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?201402081306.s18D6boR088209>