From owner-svn-ports-head@freebsd.org Mon Nov 21 15:00:42 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 29340C4CE87; Mon, 21 Nov 2016 15:00:42 +0000 (UTC) (envelope-from sbruno@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 E9DC28C9; Mon, 21 Nov 2016 15:00:41 +0000 (UTC) (envelope-from sbruno@FreeBSD.org) Received: from repo.freebsd.org ([127.0.1.37]) by repo.freebsd.org (8.15.2/8.15.2) with ESMTP id uALF0en0005593; Mon, 21 Nov 2016 15:00:40 GMT (envelope-from sbruno@FreeBSD.org) Received: (from sbruno@localhost) by repo.freebsd.org (8.15.2/8.15.2/Submit) id uALF0eS8005592; Mon, 21 Nov 2016 15:00:40 GMT (envelope-from sbruno@FreeBSD.org) Message-Id: <201611211500.uALF0eS8005592@repo.freebsd.org> X-Authentication-Warning: repo.freebsd.org: sbruno set sender to sbruno@FreeBSD.org using -f From: Sean Bruno Date: Mon, 21 Nov 2016 15:00:40 +0000 (UTC) To: ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org Subject: svn commit: r426725 - head/emulators/qemu-sbruno 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.23 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: Mon, 21 Nov 2016 15:00:42 -0000 Author: sbruno Date: Mon Nov 21 15:00:40 2016 New Revision: 426725 URL: https://svnweb.freebsd.org/changeset/ports/426725 Log: QEMU requires pixman to build qemu-system-* targets regardless of whether we are building for X or not. Add the dependency if PR: 214668 Submitted by: mail+freebsd@gerritbeine.de Modified: head/emulators/qemu-sbruno/Makefile Modified: head/emulators/qemu-sbruno/Makefile ============================================================================== --- head/emulators/qemu-sbruno/Makefile Mon Nov 21 14:52:46 2016 (r426724) +++ head/emulators/qemu-sbruno/Makefile Mon Nov 21 15:00:40 2016 (r426725) @@ -3,6 +3,7 @@ PORTNAME= qemu PORTVERSION= 2.7.90.g20161116 +PORTREVISION= 1 CATEGORIES= emulators MASTER_SITES= GH \ LOCAL/nox:dtc \ @@ -56,6 +57,9 @@ USE_RC_SUBR= qemu_user_static SUB_LIST= NAME=qemu_user_static CONFIGURE_ARGS+= --disable-tools .endif +.else +# qemu-system-* targets require pixman to build, add an explicit dependency. +USE_XORG= pixman .endif # When static linking we have a build dependency on libglib-2.0.a, otherwise @@ -144,7 +148,6 @@ CONFIGURE_ARGS+= --disable-sdl .else CONFIGURE_ARGS+= --enable-sdl USE_SDL= sdl -USE_XORG= pixman .endif .if empty(PORT_OPTIONS:MGTK2)