summaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorMichael Tokarev2018-06-30 18:54:48 +0200
committerGerd Hoffmann2018-07-03 10:30:25 +0200
commit4939a1df7d60b4a24458544557ae262852e28567 (patch)
treee22ac46ceb468e332fcdcd6f71e055ee2d0fa854 /configure
parentMerge remote-tracking branch 'remotes/rth/tags/pull-tcg-20180702' into staging (diff)
downloadqemu-4939a1df7d60b4a24458544557ae262852e28567.tar.gz
qemu-4939a1df7d60b4a24458544557ae262852e28567.tar.xz
qemu-4939a1df7d60b4a24458544557ae262852e28567.zip
ui: do not build-depend or link with libdrm, it is not needed
Opengl support brings up libdrm. But actually nothing uses this library or includes any of its headers. Just remove checking for it from configure. Signed-off-by: Michael Tokarev <mjt@tls.msk.ru> Reviewed-by: Philippe Mathieu-Daudé <f4bug@amsat.org> Message-id: 20180630165448.30795-1-mjt@msgid.tls.msk.ru Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure2
1 files changed, 1 insertions, 1 deletions
diff --git a/configure b/configure
index 65548df1fc..951ff022dd 100755
--- a/configure
+++ b/configure
@@ -3865,7 +3865,7 @@ libs_softmmu="$libs_softmmu $fdt_libs"
# opengl probe (for sdl2, gtk, milkymist-tmu2)
if test "$opengl" != "no" ; then
- opengl_pkgs="epoxy libdrm gbm"
+ opengl_pkgs="epoxy gbm"
if $pkg_config $opengl_pkgs; then
opengl_cflags="$($pkg_config --cflags $opengl_pkgs)"
opengl_libs="$($pkg_config --libs $opengl_pkgs)"