From mboxrd@z Thu Jan 1 00:00:00 1970 Received: from mailman by lists.gnu.org with tmda-scanned (Exim 4.43) id 1Lgr8S-0005Fc-Aa for qemu-devel@nongnu.org; Mon, 09 Mar 2009 21:52:00 -0400 Received: from exim by lists.gnu.org with spam-scanned (Exim 4.43) id 1Lgr8P-0005FM-VW for qemu-devel@nongnu.org; Mon, 09 Mar 2009 21:51:58 -0400 Received: from [199.232.76.173] (port=51625 helo=monty-python.gnu.org) by lists.gnu.org with esmtp (Exim 4.43) id 1Lgr8P-0005FJ-T3 for qemu-devel@nongnu.org; Mon, 09 Mar 2009 21:51:57 -0400 Received: from mail-ew0-f173.google.com ([209.85.219.173]:44552) by monty-python.gnu.org with esmtp (Exim 4.60) (envelope-from ) id 1Lgr8P-0001b1-Gq for qemu-devel@nongnu.org; Mon, 09 Mar 2009 21:51:57 -0400 Received: by ewy21 with SMTP id 21so930644ewy.34 for ; Mon, 09 Mar 2009 18:51:55 -0700 (PDT) Message-ID: <49B5C7B6.9080407@codemonkey.ws> Date: Mon, 09 Mar 2009 20:51:50 -0500 From: Anthony Liguori MIME-Version: 1.0 Subject: Re: [Qemu-devel] [PATCH][RFC] Fix SDL on evdev hosts References: <1235756074-1719-1-git-send-email-aliguori@us.ibm.com> In-Reply-To: Content-Type: text/plain; charset=ISO-8859-1; format=flowed Content-Transfer-Encoding: 7bit Reply-To: qemu-devel@nongnu.org List-Id: qemu-devel.nongnu.org List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , To: qemu-devel@nongnu.org Cc: Anthony Liguori , Dustin Kirkland 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..] > >