Re: [Qemu-devel] Minor bug in 0.7.1 install

2005-08-30 Thread Paul Brook
1) on my FC3 box, i had to force sdl to compile statically because the sdl test didn't work for some reason (could be my box's problem). but there's no way to set sdl = 'yes' from the configure command line. so i hacked configure, but then line 730 dies: echo

Re: [Qemu-devel] Minor bug in 0.7.1 install

2005-08-30 Thread Greg Bell
$config_mak is a makefile fragment, not a shell script, so this should work fine. hmmm... configure errors out for me after i hack it to force static linking with SDL and this is what i traced it to. here's the actual output rather than my possibly flawed analysis :) # ./configure Install

Re: [Qemu-devel] Minor bug in 0.7.1 install

2005-08-30 Thread Henrik Nordstrom
On Tue, 30 Aug 2005, Greg Bell wrote: $config_mak is a makefile fragment, not a shell script, so this should work fine. hmmm... configure errors out for me after i hack it to force static linking with SDL and this is what i traced it to. here's the actual output rather than my possibly

Re: [Qemu-devel] Minor bug in 0.7.1 install

2005-08-30 Thread Henrik Nordstrom
On Tue, 30 Aug 2005, Greg Bell wrote: sdl_too_old=no - +sdl=yes if test -z $sdl ; then sdl_config=sdl-config This is not sufficient as a lot of the SDL logics is contained in the if block you have now disabled.. you need to also at minimum set sdl_config, sdl_static and sdl_static_libs

[Qemu-devel] Minor bug in 0.7.1 install

2005-08-29 Thread Greg Bell
hi qemu, thanks for a neat project. two minor problems: 1) on my FC3 box, i had to force sdl to compile statically because the sdl test didn't work for some reason (could be my box's problem). but there's no way to set sdl = 'yes' from the configure command line. so i hacked configure,

Re: [Qemu-devel] Minor bug in 0.7.1 install

2005-08-29 Thread Jim C. Brown
On Tue, Aug 30, 2005 at 12:48:41PM +1000, Greg Bell wrote: hi qemu, thanks for a neat project. two minor problems: 1) on my FC3 box, i had to force sdl to compile statically because the sdl test didn't work for some reason (could be my box's problem). but there's no way to set sdl =