diff options
author | sbruno <sbruno@FreeBSD.org> | 2016-11-21 23:00:40 +0800 |
---|---|---|
committer | sbruno <sbruno@FreeBSD.org> | 2016-11-21 23:00:40 +0800 |
commit | 61f76e35f8c8e55976dddbb903a9dc49b7d05640 (patch) | |
tree | f791a473cb8c118125ae6a0484438c5a0d78ad79 /emulators | |
parent | 0cbafb9b00e55cf07c2487037e534f421ea29ee3 (diff) | |
download | freebsd-ports-graphics-61f76e35f8c8e55976dddbb903a9dc49b7d05640.tar.gz freebsd-ports-graphics-61f76e35f8c8e55976dddbb903a9dc49b7d05640.tar.zst freebsd-ports-graphics-61f76e35f8c8e55976dddbb903a9dc49b7d05640.zip |
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
Diffstat (limited to 'emulators')
-rw-r--r-- | emulators/qemu-sbruno/Makefile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/emulators/qemu-sbruno/Makefile b/emulators/qemu-sbruno/Makefile index 78d669f83be..366c747e6a0 100644 --- a/emulators/qemu-sbruno/Makefile +++ b/emulators/qemu-sbruno/Makefile @@ -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) |