[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]
[Qemu-devel] [PATCH 09/12] configure: opengl doesn't depend on x11
From: |
Gerd Hoffmann |
Subject: |
[Qemu-devel] [PATCH 09/12] configure: opengl doesn't depend on x11 |
Date: |
Wed, 21 Feb 2018 14:15:34 +0100 |
So remove x11 from pkg-config check and don't
add x11 cflags/libs to opengl cflags/libs.
Signed-off-by: Gerd Hoffmann <address@hidden>
---
configure | 6 +++---
1 file changed, 3 insertions(+), 3 deletions(-)
diff --git a/configure b/configure
index 2934a4bcff..66c210026a 100755
--- a/configure
+++ b/configure
@@ -3767,9 +3767,9 @@ libs_softmmu="$libs_softmmu $fdt_libs"
if test "$opengl" != "no" ; then
opengl_pkgs="epoxy libdrm gbm"
- if $pkg_config $opengl_pkgs x11; then
- opengl_cflags="$($pkg_config --cflags $opengl_pkgs) $x11_cflags"
- opengl_libs="$($pkg_config --libs $opengl_pkgs) $x11_libs"
+ if $pkg_config $opengl_pkgs; then
+ opengl_cflags="$($pkg_config --cflags $opengl_pkgs)"
+ opengl_libs="$($pkg_config --libs $opengl_pkgs)"
opengl=yes
if test "$gtk" = "yes" && $pkg_config --exists "$gtkpackage >= 3.16"; then
gtk_gl="yes"
--
2.9.3
- [Qemu-devel] [PATCH 00/12] ui: build sdl, gtk and curses as modules, Gerd Hoffmann, 2018/02/21
- [Qemu-devel] [PATCH 08/12] configure: add X11 vars to config-host.mak, Gerd Hoffmann, 2018/02/21
- [Qemu-devel] [PATCH 12/12] curses: build as ui module, Gerd Hoffmann, 2018/02/21
- [Qemu-devel] [PATCH 06/12] console: add and use qemu_display_find_default, Gerd Hoffmann, 2018/02/21
- [Qemu-devel] [PATCH 09/12] configure: opengl doesn't depend on x11,
Gerd Hoffmann <=
- [Qemu-devel] [PATCH 02/12] sdl: switch over to new display registry, Gerd Hoffmann, 2018/02/21
- [Qemu-devel] [PATCH 04/12] curses: switch over to new display registry, Gerd Hoffmann, 2018/02/21
- [Qemu-devel] [PATCH 03/12] cocoa: switch over to new display registry, Gerd Hoffmann, 2018/02/21
- [Qemu-devel] [PATCH 01/12] console: add qemu display registry, add gtk, Gerd Hoffmann, 2018/02/21
- [Qemu-devel] [PATCH 11/12] gtk: build as ui module, Gerd Hoffmann, 2018/02/21
- [Qemu-devel] [PATCH 05/12] egl-headless: switch over to new display registry, Gerd Hoffmann, 2018/02/21
- [Qemu-devel] [PATCH 07/12] console: add ui module loading support, Gerd Hoffmann, 2018/02/21
- [Qemu-devel] [PATCH 10/12] sdl: build as ui module, Gerd Hoffmann, 2018/02/21