From owner-svn-ports-head@freebsd.org Sun Jun 19 13:34:53 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 2A039A79AEB; Sun, 19 Jun 2016 13:34:53 +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 EFB97290E; Sun, 19 Jun 2016 13:34:52 +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 u5JDYqZU099569; Sun, 19 Jun 2016 13:34:52 GMT (envelope-from gerald@FreeBSD.org) Received: (from gerald@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id u5JDYqjp099568; Sun, 19 Jun 2016 13:34:52 GMT (envelope-from gerald@FreeBSD.org) Message-Id: <201606191334.u5JDYqjp099568@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: gerald set sender to gerald@FreeBSD.org using -f From: Gerald Pfeifer Date: Sun, 19 Jun 2016 13:34:52 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r417122 - head/emulators/wine-devel 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: Sun, 19 Jun 2016 13:34:53 -0000 Author: gerald Date: Sun Jun 19 13:34:51 2016 New Revision: 417122 URL: https://svnweb.freebsd.org/changeset/ports/417122 Log: 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-devel/Makefile Modified: head/emulators/wine-devel/Makefile ============================================================================== --- head/emulators/wine-devel/Makefile Sun Jun 19 13:00:35 2016 (r417121) +++ head/emulators/wine-devel/Makefile Sun Jun 19 13:34:51 2016 (r417122) @@ -3,6 +3,7 @@ PORTNAME= wine DISTVERSION= 1.9.11 +PORTREVISION= 1 PORTEPOCH= 1 CATEGORIES= emulators MASTER_SITES= SF/${PORTNAME}/Source \ @@ -35,8 +36,7 @@ CONFIGURE_ARGS+=--verbose --disable-test --without-osmesa \ --with-oss \ --without-sane \ - --without-tiff \ - --without-xinerama + --without-tiff CONFIGURE_ENV= CPPBIN="${CPP}" FLEX="${LOCALBASE}/bin/flex" WINELIBDIR?= ${PREFIX}/lib .if !defined(USE_LDCONFIG32) @@ -98,9 +98,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 \