* [Qemu-devel] Missing ENOTSUP def for OpenBSD
@ 2005-11-27 14:38 Dave Feustel
2005-11-27 15:23 ` David Coppa
0 siblings, 1 reply; 4+ messages in thread
From: Dave Feustel @ 2005-11-27 14:38 UTC (permalink / raw)
To: qemu-devel
When I attempt to build qemu from CVS on OpenbSD 3.7
using gcc 3.3.5 (propolice), ENOTSUP is reported as an
undefined symbol. ENOTSUP is defined in vl.h, but it is
only defined for Win32. Could a #define OPENBSD
be added to qemu source for building qemu on OpenBSD
platforms?
Thanks,
Dave Feustel
--
Switch to Secure OpenBSD with a KDE desktop!!!
NOW with Virtual PC OS support via QEMU and
Beowulf clustering using PETSc and MPICH2!
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [Qemu-devel] Missing ENOTSUP def for OpenBSD
2005-11-27 14:38 [Qemu-devel] Missing ENOTSUP def for OpenBSD Dave Feustel
@ 2005-11-27 15:23 ` David Coppa
2005-11-27 18:24 ` Dave Feustel
0 siblings, 1 reply; 4+ messages in thread
From: David Coppa @ 2005-11-27 15:23 UTC (permalink / raw)
To: dfeustel, qemu-devel
Hi Dave,
take a look at these (unofficial) ports:
http://todd.fries.net/ports/qemu-0.7.0.tgz
http://todd.fries.net/ports/qemu-0.7.1.tgz
http://todd.fries.net/ports/qemu-20050427.tgz
A lot of patches need to be applied in order to have a working qemu on OpenBSD:
$ ls -1 qemu/patches/
patch-Makefile
patch-Makefile_target
patch-audio_audio_c
patch-audio_ossaudio_c
patch-configure
patch-dis-asm_h
patch-dyngen-exec_h
patch-exec_c
patch-fpu_softfloat-native_c
patch-fpu_softfloat-native_h
patch-gnu-c99-math_h
patch-hw_pc_c
patch-hw_pcnet_c
patch-hw_pcnet_h
patch-osdep_h
patch-slirp_slirp_config_h
patch-target-arm_cpu_h
patch-target-i386_cpu_h
patch-target-ppc_cpu_h
patch-target-ppc_op_helper_c
patch-target-sparc_cpu_h
patch-vl_c
patch-vl_h
patch-x_keymap_c
$ grep ENOTSUP qemu/patches/*
qemu/patches/patch-configure:+ echo "#define ENOTSUP 4096" >> $config_h
Regards,
David
On 11/27/05, Dave Feustel <dfeustel@verizon.net> wrote:
> When I attempt to build qemu from CVS on OpenbSD 3.7
> using gcc 3.3.5 (propolice), ENOTSUP is reported as an
> undefined symbol. ENOTSUP is defined in vl.h, but it is
> only defined for Win32. Could a #define OPENBSD
> be added to qemu source for building qemu on OpenBSD
> platforms?
>
> Thanks,
> Dave Feustel
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [Qemu-devel] Missing ENOTSUP def for OpenBSD
2005-11-27 15:23 ` David Coppa
@ 2005-11-27 18:24 ` Dave Feustel
2005-11-28 8:46 ` David Coppa
0 siblings, 1 reply; 4+ messages in thread
From: Dave Feustel @ 2005-11-27 18:24 UTC (permalink / raw)
To: David Coppa; +Cc: qemu-devel
On Sunday 27 November 2005 10:23, David Coppa wrote:
> Hi Dave,
> take a look at these (unofficial) ports:
>
> http://todd.fries.net/ports/qemu-0.7.0.tgz
> http://todd.fries.net/ports/qemu-0.7.1.tgz
> http://todd.fries.net/ports/qemu-20050427.tgz
>
> A lot of patches need to be applied in order to have a working qemu on OpenBSD:
I had been looking at the patches in the OpenBSD port of qemu.
It would be nice (for me, at least :-) ) if the patches for OpenBSD
were incorporated into the qemu source tree via conditional compilation.
> $ ls -1 qemu/patches/
In what directory is the ls command invoked?
Thanks,
Dave Feustel
--
Switch to Secure OpenBSD with a KDE desktop!!!
NOW with Virtual PC OS support via QEMU and
Beowulf clustering using PETSc and MPICH2!
^ permalink raw reply [flat|nested] 4+ messages in thread
* Re: [Qemu-devel] Missing ENOTSUP def for OpenBSD
2005-11-27 18:24 ` Dave Feustel
@ 2005-11-28 8:46 ` David Coppa
0 siblings, 0 replies; 4+ messages in thread
From: David Coppa @ 2005-11-28 8:46 UTC (permalink / raw)
To: dfeustel; +Cc: qemu-devel
Hi,
I've made a mistake: the qemu port is not unofficial yet, it's in the tree.
# cd /usr/ports/emulators/qemu && make install clean
Regards,
David
On 11/27/05, Dave Feustel <dfeustel@verizon.net> wrote:
> On Sunday 27 November 2005 10:23, David Coppa wrote:
> > Hi Dave,
> > take a look at these (unofficial) ports:
> >
> > http://todd.fries.net/ports/qemu-0.7.0.tgz
> > http://todd.fries.net/ports/qemu-0.7.1.tgz
> > http://todd.fries.net/ports/qemu-20050427.tgz
> >
> > A lot of patches need to be applied in order to have a working qemu on OpenBSD:
>
> I had been looking at the patches in the OpenBSD port of qemu.
> It would be nice (for me, at least :-) ) if the patches for OpenBSD
> were incorporated into the qemu source tree via conditional compilation.
>
> > $ ls -1 qemu/patches/
> In what directory is the ls command invoked?
>
> Thanks,
> Dave Feustel
> --
> Switch to Secure OpenBSD with a KDE desktop!!!
> NOW with Virtual PC OS support via QEMU and
> Beowulf clustering using PETSc and MPICH2!
>
^ permalink raw reply [flat|nested] 4+ messages in thread
end of thread, other threads:[~2005-11-28 8:46 UTC | newest]
Thread overview: 4+ messages (download: mbox.gz follow: Atom feed
-- links below jump to the message on this page --
2005-11-27 14:38 [Qemu-devel] Missing ENOTSUP def for OpenBSD Dave Feustel
2005-11-27 15:23 ` David Coppa
2005-11-27 18:24 ` Dave Feustel
2005-11-28 8:46 ` David Coppa
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).