* [Qemu-devel] Compiling qemu-0.6.1 on Mac OS X
@ 2005-03-17 1:23 Masahiro Knittel
2005-03-17 8:32 ` Jonas Maebe
0 siblings, 1 reply; 5+ messages in thread
From: Masahiro Knittel @ 2005-03-17 1:23 UTC (permalink / raw)
To: qemu-devel
I'm having one hell of a time trying to get QEmu 0.6.1 to work on my
iBook. I'm currently running Mac OS 10.2.8 and am using the dev tools
downloaded from Apple's developer's forum for OS 10.2 released in Dec
2002 which has gcc 3.1. I compiled the latest release of SDL from source.
When I run the configure script for qemu 0.6.1, the script tells me that
it doesn't have SDL support even though I just compiled it. When I run
make, it exits with an error saying it can't find 'sys/poll.h'. I'm
completely stuck and have no clue what to do. The reason I'm compiling
from source is because the binary installer at freeoszoo will install
fine but the binary will crash because it can't resolve some symbols in
a library. I'm assuming this is because the binary was compiled in a
newer version of Mac OS X and the differences in the libraries is
causing this.
Does anyone have any advice? I really would appreciate it. Thanks.
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [Qemu-devel] Compiling qemu-0.6.1 on Mac OS X
2005-03-17 1:23 [Qemu-devel] Compiling qemu-0.6.1 on Mac OS X Masahiro Knittel
@ 2005-03-17 8:32 ` Jonas Maebe
2005-03-18 16:38 ` Pierre d'Herbemont
0 siblings, 1 reply; 5+ messages in thread
From: Jonas Maebe @ 2005-03-17 8:32 UTC (permalink / raw)
To: qemu-devel
On 17 mrt 2005, at 02:23, Masahiro Knittel wrote:
> When I run the configure script for qemu 0.6.1, the script tells me
> that it doesn't have SDL support even though I just compiled it.
Did you also install it ("sudo make install" in the SDL directory)
> When I run make, it exits with an error saying it can't find
> 'sys/poll.h'.
This file exists under Mac OS X 10.3.x, but there it simply says:
---
#ifndef SYS_POLL_NO_WARN
#warning "Including <sys/poll.h> directly is not recommended. The
POSIX standard suggests that poll.h be installed as <poll.h>. This
header is only provided for compatibility with other systems."
#endif
#include <poll.h>
---
So simply include "poll.h" instead of "sys/poll.h". Given that under
Linux (at least Fedora Core 2) /usr/include/poll.h also exists, maybe
this could be changed in cvs as well?
Jonas
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [Qemu-devel] Compiling qemu-0.6.1 on Mac OS X
2005-03-17 8:32 ` Jonas Maebe
@ 2005-03-18 16:38 ` Pierre d'Herbemont
2005-03-18 23:47 ` David Still
0 siblings, 1 reply; 5+ messages in thread
From: Pierre d'Herbemont @ 2005-03-18 16:38 UTC (permalink / raw)
To: qemu-devel, Jonas Maebe
Selon Jonas Maebe <jonas.maebe@elis.ugent.be>:
>
> On 17 mrt 2005, at 02:23, Masahiro Knittel wrote:
>
> > When I run the configure script for qemu 0.6.1, the script tells me
> > that it doesn't have SDL support even though I just compiled it.
>
> Did you also install it ("sudo make install" in the SDL directory)
You can also try the basic cocoa driver with ./configure --enable-cocoa with the
latest cvs version.
> > When I run make, it exits with an error saying it can't find
> > 'sys/poll.h'.
Download libpoll here:
http://www.clapper.org/software/poll/
Pierre.
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [Qemu-devel] Compiling qemu-0.6.1 on Mac OS X
2005-03-18 16:38 ` Pierre d'Herbemont
@ 2005-03-18 23:47 ` David Still
2005-03-19 18:58 ` Pierre d'Herbemont
0 siblings, 1 reply; 5+ messages in thread
From: David Still @ 2005-03-18 23:47 UTC (permalink / raw)
To: qemu-devel
One issue that I've found with the cocoa driver is that the mouse won't
grab. Is this a known issue or a bug? Or is it just me? :)
- Dave
On Mar 18, 2005, at 8:38 AM, Pierre d'Herbemont wrote:
> Selon Jonas Maebe <jonas.maebe@elis.ugent.be>:
>
>>
>> On 17 mrt 2005, at 02:23, Masahiro Knittel wrote:
>>
>>> When I run the configure script for qemu 0.6.1, the script tells me
>>> that it doesn't have SDL support even though I just compiled it.
>>
>> Did you also install it ("sudo make install" in the SDL directory)
>
> You can also try the basic cocoa driver with ./configure
> --enable-cocoa with the
> latest cvs version.
>
>>> When I run make, it exits with an error saying it can't find
>>> 'sys/poll.h'.
>
> Download libpoll here:
> http://www.clapper.org/software/poll/
>
> Pierre.
>
>
>
> _______________________________________________
> Qemu-devel mailing list
> Qemu-devel@nongnu.org
> http://lists.nongnu.org/mailman/listinfo/qemu-devel
>
>
^ permalink raw reply [flat|nested] 5+ messages in thread
* Re: [Qemu-devel] Compiling qemu-0.6.1 on Mac OS X
2005-03-18 23:47 ` David Still
@ 2005-03-19 18:58 ` Pierre d'Herbemont
0 siblings, 0 replies; 5+ messages in thread
From: Pierre d'Herbemont @ 2005-03-19 18:58 UTC (permalink / raw)
To: qemu-devel
On 19 mars 05, at 00:47, David Still wrote:
> One issue that I've found with the cocoa driver is that the mouse
> won't grab. Is this a known issue or a bug? Or is it just me? :)
There is simply no support for it... Feel free to add it ;) (shouldn't
be that hard if you look at the sdl driver and sdl 1.2 code)
Pierre.
^ permalink raw reply [flat|nested] 5+ messages in thread
end of thread, other threads:[~2005-03-19 19:17 UTC | newest]
Thread overview: 5+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-03-17 1:23 [Qemu-devel] Compiling qemu-0.6.1 on Mac OS X Masahiro Knittel
2005-03-17 8:32 ` Jonas Maebe
2005-03-18 16:38 ` Pierre d'Herbemont
2005-03-18 23:47 ` David Still
2005-03-19 18:58 ` Pierre d'Herbemont
This is an external index of several public inboxes,
see mirroring instructions on how to clone and mirror
all data and code used by this external index.