From owner-svn-ports-head@freebsd.org Tue Aug 23 10:11:18 2016 Return-Path: Delivered-To: svn-ports-head@mailman.ysv.freebsd.org Received: from mx1.freebsd.org (mx1.freebsd.org [IPv6:2001:1900:2254:206a::19:1]) by mailman.ysv.freebsd.org (Postfix) with ESMTP id 97373BC379C; Tue, 23 Aug 2016 10:11:18 +0000 (UTC) (envelope-from gerald@FreeBSD.org) Received: from repo.freebsd.org (repo.freebsd.org [IPv6:2610:1c1:1:6068::e6a:0]) (using TLSv1.2 with cipher ECDHE-RSA-AES256-GCM-SHA384 (256/256 bits)) (Client did not present a certificate) by mx1.freebsd.org (Postfix) with ESMTPS id 64A0111F2; Tue, 23 Aug 2016 10:11:18 +0000 (UTC) (envelope-from gerald@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id u7NABHlF008166; Tue, 23 Aug 2016 10:11:17 GMT (envelope-from gerald@FreeBSD.org) Received: (from gerald@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u7NABHuH008165; Tue, 23 Aug 2016 10:11:17 GMT (envelope-from gerald@FreeBSD.org) Message-Id: <201608231011.u7NABHuH008165@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: gerald set sender to gerald@FreeBSD.org using -f From: Gerald Pfeifer Date: Tue, 23 Aug 2016 10:11:17 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r420654 - head/emulators/wine X-SVN-Group: ports-head MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit X-BeenThere: svn-ports-head@freebsd.org X-Mailman-Version: 2.1.22 Precedence: list List-Id: SVN commit messages for the ports tree for head List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Tue, 23 Aug 2016 10:11:18 -0000 Author: gerald Date: Tue Aug 23 10:11:17 2016 New Revision: 420654 URL: https://svnweb.freebsd.org/changeset/ports/420654 Log: Backport from emulators/wine-devel: Require/build with Xinerama support (which has been explicitly disabled before to ensure reproducible builds). Without this, some programs would incorrectly show full screen as a wide window covering 2 monitors. PR: 210039 Submitted by: Henry Hu Modified: head/emulators/wine/Makefile Modified: head/emulators/wine/Makefile ============================================================================== --- head/emulators/wine/Makefile Tue Aug 23 09:54:33 2016 (r420653) +++ head/emulators/wine/Makefile Tue Aug 23 10:11:17 2016 (r420654) @@ -93,9 +93,9 @@ V4L_LIB_DEPENDS= libv4l1.so:multimedia/l WINEMAKER_RUN_DEPENDS= p5-XML-LibXML>0:textproc/p5-XML-LibXML -X11_CONFIGURE_WITH= x cms fontconfig freetype glu jpeg opengl png xinput2 xrandr xrender +X11_CONFIGURE_WITH= x cms fontconfig freetype glu jpeg opengl png xinerama xinput2 xrandr xrender X11_USES= jpeg -X11_USE= GL=glu XORG=xcomposite,xcursor,xi,xrandr,xrender +X11_USE= GL=glu XORG=xcomposite,xcursor,xi,xinerama,xrandr,xrender X11_LIB_DEPENDS= libfontconfig.so:x11-fonts/fontconfig \ libfreetype.so:print/freetype2 \ liblcms2.so:graphics/lcms2 \