diff options
author | 2019-05-24 15:09:41 +0200 | |
---|---|---|
committer | 2019-05-29 06:29:07 +0200 | |
commit | b213fee8a7ec43bac3d606ceae151fffca8a9dbf (patch) | |
tree | 89ccaac7ffeef7ef841ab55229f2798aaa0e8897 | |
parent | virtio-gpu: add a pixman helper header (diff) | |
download | qemu-b213fee8a7ec43bac3d606ceae151fffca8a9dbf.tar.xz qemu-b213fee8a7ec43bac3d606ceae151fffca8a9dbf.zip |
util: compile drm.o on posix
OpenGL isn't required to use DRM rendernodes. The following patches
uses it for 2d resources for ex.
Signed-off-by: Marc-André Lureau <marcandre.lureau@redhat.com>
Message-id: 20190524130946.31736-5-marcandre.lureau@redhat.com
[ kraxel s/LINUX/POSIX/ (fixes openbsd build failure) ]
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
-rw-r--r-- | util/Makefile.objs | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/util/Makefile.objs b/util/Makefile.objs index c27a923dbe..38178201ff 100644 --- a/util/Makefile.objs +++ b/util/Makefile.objs @@ -53,7 +53,7 @@ util-obj-y += systemd.o util-obj-y += iova-tree.o util-obj-$(CONFIG_INOTIFY1) += filemonitor-inotify.o util-obj-$(CONFIG_LINUX) += vfio-helpers.o -util-obj-$(CONFIG_OPENGL) += drm.o +util-obj-$(CONFIG_POSIX) += drm.o util-obj-y += guest-random.o stub-obj-y += filemonitor-stub.o |