Skip site navigation (1)Skip section navigation (2)
Date:      Mon, 21 Nov 2016 15:00:40 +0000 (UTC)
From:      Sean Bruno <sbruno@FreeBSD.org>
To:        ports-committers@freebsd.org, svn-ports-all@freebsd.org, svn-ports-head@freebsd.org
Subject:   svn commit: r426725 - head/emulators/qemu-sbruno
Message-ID:  <201611211500.uALF0eS8005592@repo.freebsd.org>

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



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