* [Qemu-devel] [PATCH for-2.3] opengl: fix configure test
@ 2015-03-16 9:10 Gerd Hoffmann
2015-03-16 15:55 ` Max Reitz
0 siblings, 1 reply; 2+ messages in thread
From: Gerd Hoffmann @ 2015-03-16 9:10 UTC (permalink / raw)
To: qemu-devel; +Cc: Gerd Hoffmann, quintela
Re-add the glx compile test to configure. We can't use pkg-config to
probe for glx, and as long as milkymist-tmu2 privately uses glx (due to
opengl infrastructure in qemu not being ready yet) we must continue to
test for glx to avoid build failures.
Reported-by: Juan Quintela <quintela@redhat.com>
Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
---
configure | 19 +++++++++++++++++--
1 file changed, 17 insertions(+), 2 deletions(-)
diff --git a/configure b/configure
index b858756..f74a6fd 100755
--- a/configure
+++ b/configure
@@ -3119,9 +3119,24 @@ libs_softmmu="$libs_softmmu $fdt_libs"
##########################################
# opengl probe (for sdl2, milkymist-tmu2)
+
+# GLX probe, used by milkymist-tmu2
+# this is temporary, code will be switched to egl mid-term.
+cat > $TMPC << EOF
+#include <X11/Xlib.h>
+#include <GL/gl.h>
+#include <GL/glx.h>
+int main(void) { glBegin(0); glXQueryVersion(0,0,0); return 0; }
+EOF
+if compile_prog "" "-lGL -lX11" ; then
+ have_glx=yes
+else
+ have_glx=no
+fi
+
if test "$opengl" != "no" ; then
- opengl_pkgs="gl glx"
- if $pkg_config $opengl_pkgs x11; then
+ opengl_pkgs="gl"
+ if $pkg_config $opengl_pkgs x11 && test "$have_glx" = "yes"; then
opengl_cflags="$($pkg_config --cflags $opengl_pkgs) $x11_cflags"
opengl_libs="$($pkg_config --libs $opengl_pkgs) $x11_libs"
opengl=yes
--
1.8.3.1
^ permalink raw reply related [flat|nested] 2+ messages in thread
* Re: [Qemu-devel] [PATCH for-2.3] opengl: fix configure test
2015-03-16 9:10 [Qemu-devel] [PATCH for-2.3] opengl: fix configure test Gerd Hoffmann
@ 2015-03-16 15:55 ` Max Reitz
0 siblings, 0 replies; 2+ messages in thread
From: Max Reitz @ 2015-03-16 15:55 UTC (permalink / raw)
To: Gerd Hoffmann, qemu-devel; +Cc: quintela
On 2015-03-16 at 05:10, Gerd Hoffmann wrote:
> Re-add the glx compile test to configure. We can't use pkg-config to
> probe for glx, and as long as milkymist-tmu2 privately uses glx (due to
> opengl infrastructure in qemu not being ready yet) we must continue to
> test for glx to avoid build failures.
>
> Reported-by: Juan Quintela <quintela@redhat.com>
> Signed-off-by: Gerd Hoffmann <kraxel@redhat.com>
> ---
> configure | 19 +++++++++++++++++--
> 1 file changed, 17 insertions(+), 2 deletions(-)
Reviewed-by: Max Reitz <mreitz@redhat.com>
^ permalink raw reply [flat|nested] 2+ messages in thread
end of thread, other threads:[~2015-03-16 15:55 UTC | newest]
Thread overview: 2+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2015-03-16 9:10 [Qemu-devel] [PATCH for-2.3] opengl: fix configure test Gerd Hoffmann
2015-03-16 15:55 ` Max Reitz
This is a public inbox, see mirroring instructions
for how to clone and mirror all data and code used for this inbox;
as well as URLs for NNTP newsgroup(s).