qemu-devel
[Top][All Lists]
Advanced

[Date Prev][Date Next][Thread Prev][Thread Next][Date Index][Thread Index]

Re: [Qemu-devel] [PATCH][RFC] Fix SDL on evdev hosts


From: Anthony Liguori
Subject: Re: [Qemu-devel] [PATCH][RFC] Fix SDL on evdev hosts
Date: Mon, 09 Mar 2009 20:51:50 -0500
User-agent: Thunderbird 2.0.0.19 (X11/20090105)

malc wrote:
+
 ##########################################
 # VNC TLS detection
 if test "$vnc_tls" = "yes" ; then
@@ -1393,6 +1409,8 @@ if test "$sdl1" = "yes" ; then
   echo "CONFIG_SDL=yes" >> $config_mak
   if test "$target_softmmu" = "no" -o "$static" = "yes"; then
     echo "SDL_LIBS=$sdl_static_libs" >> $config_mak
+  elif test "$sdl_x11" = "yes" ; then
+    echo "SDL_LIBS=`$sdl_config --libs` -lX11" >> $config_mak
                                           ^^^^^ this broke the
build over here, X11 on this box with this installation of OS and
X puts libX11 into /usr/X11R6/lib.

This is a non-Linux unix, right?  Is the X install actually xfree86?

We can either add the -lX11 flag to the build test which would effectively disable this code on your system or we could add a hard coded /usr/X11R6/lib to the search path. In general, I don't know of a way to detect the location of X11 :-/

If it's not xfree86 though, the code probably isn't useful anyway in which case, we can just disable it.

Regards,

Anthony Liguori

[..snip..]






reply via email to

[Prev in Thread] Current Thread [Next in Thread]