qemu-devel.nongnu.org archive mirror
 help / color / mirror / Atom feed
From: "Christian MICHON" <christian.michon@gmail.com>
To: qemu-devel@nongnu.org
Subject: Re: [Qemu-devel] [PATCH] VNC display support for QEMU
Date: Mon, 1 May 2006 00:14:45 +0200	[thread overview]
Message-ID: <46d6db660604301514l2c2dec9elf32db5e9a9d3d8d9@mail.gmail.com> (raw)
In-Reply-To: <44551A8A.9090802@codemonkey.ws>

just a quick note: your patch breaks the mingw32 build on winXP.
Christian

for d in i386-softmmu; do \
make -C $d all || exit 1 ; \
        done
make[1]: Entering directory `/home/root/qemu/i386-softmmu'
gcc -Wall -O2 -g -fno-strict-aliasing -fomit-frame-pointer -I. -I..
-I/home/root/qemu/target-i386 -I/home/root/qemu -D_GNU_SOURCE
-D_FILE_OFFSET_BITS=64 -D_LARGEFILE_SOURCE -I/home/root/qemu/fpu
-DHAS_AUDIO -I/home/root/qemu/slirp -c -o vnc.o /home/root/qemu/vnc.c
c:/qemu/mingw/home/root/qemu/vnc.c:3:24: sys/socket.h: No such file or directory
c:/qemu/mingw/home/root/qemu/vnc.c:4:24: netinet/in.h: No such file or directory
c:/qemu/mingw/home/root/qemu/vnc.c:5:25: netinet/tcp.h: No such file
or directory
c:/qemu/mingw/home/root/qemu/vnc.c: In function `vnc_client_write':
c:/qemu/mingw/home/root/qemu/vnc.c:414: error: `ssize_t' undeclared
(first use in this function)
c:/qemu/mingw/home/root/qemu/vnc.c:414: error: (Each undeclared
identifier is reported only once
c:/qemu/mingw/home/root/qemu/vnc.c:414: error: for each function it appears in.)
c:/qemu/mingw/home/root/qemu/vnc.c:414: error: syntax error before "ret"
c:/qemu/mingw/home/root/qemu/vnc.c:417: error: `ret' undeclared (first
use in this function)
c:/qemu/mingw/home/root/qemu/vnc.c: In function `vnc_client_read':
c:/qemu/mingw/home/root/qemu/vnc.c:439: error: `ssize_t' undeclared
(first use in this function)
c:/qemu/mingw/home/root/qemu/vnc.c:439: error: syntax error before "ret"
c:/qemu/mingw/home/root/qemu/vnc.c:443: error: `ret' undeclared (first
use in this function)
c:/qemu/mingw/home/root/qemu/vnc.c: In function `vnc_listen_read':
c:/qemu/mingw/home/root/qemu/vnc.c:810: error: storage size of `addr'
isn't known
c:/qemu/mingw/home/root/qemu/vnc.c:811: error: `socklen_t' undeclared
(first use in this function)
c:/qemu/mingw/home/root/qemu/vnc.c:811: error: syntax error before "addrlen"
c:/qemu/mingw/home/root/qemu/vnc.c:813: warning: implicit declaration
of function `accept'
c:/qemu/mingw/home/root/qemu/vnc.c:813: error: `addrlen' undeclared
(first use in this function)
c:/qemu/mingw/home/root/qemu/vnc.c:815: warning: implicit declaration
of function `fcntl'
c:/qemu/mingw/home/root/qemu/vnc.c:815: error: `F_SETFL' undeclared
(first use in this function)
c:/qemu/mingw/home/root/qemu/vnc.c:815: error: `O_NONBLOCK' undeclared
(first use in this function)
c:/qemu/mingw/home/root/qemu/vnc.c:810: warning: unused variable `addr'
c:/qemu/mingw/home/root/qemu/vnc.c: In function `vnc_display_init':
c:/qemu/mingw/home/root/qemu/vnc.c:830: error: storage size of `addr'
isn't known
c:/qemu/mingw/home/root/qemu/vnc.c:853: warning: implicit declaration
of function `socket'
c:/qemu/mingw/home/root/qemu/vnc.c:853: error: `PF_INET' undeclared
(first use in this function)
c:/qemu/mingw/home/root/qemu/vnc.c:853: error: `SOCK_STREAM'
undeclared (first use in this function)
c:/qemu/mingw/home/root/qemu/vnc.c:859: error: `AF_INET' undeclared
(first use in this function)
c:/qemu/mingw/home/root/qemu/vnc.c:860: warning: implicit declaration
of function `htons'
c:/qemu/mingw/home/root/qemu/vnc.c:864: warning: implicit declaration
of function `setsockopt'
c:/qemu/mingw/home/root/qemu/vnc.c:864: error: `SOL_SOCKET' undeclared
(first use in this function)
c:/qemu/mingw/home/root/qemu/vnc.c:864: error: `SO_REUSEADDR'
undeclared (first use in this function)
c:/qemu/mingw/home/root/qemu/vnc.c:871: warning: implicit declaration
of function `bind'
c:/qemu/mingw/home/root/qemu/vnc.c:876: warning: implicit declaration
of function `listen'
c:/qemu/mingw/home/root/qemu/vnc.c:830: warning: unused variable `addr'
make[1]: *** [vnc.o] Error 1
make[1]: Leaving directory `/home/root/qemu/i386-softmmu'
make: *** [all] Error 1

  reply	other threads:[~2006-04-30 22:14 UTC|newest]

Thread overview: 14+ messages / expand[flat|nested]  mbox.gz  Atom feed  top
2006-04-29 21:34 [Qemu-devel] [PATCH] VNC display support for QEMU Anthony Liguori
2006-04-30  1:03 ` Johannes Schindelin
2006-04-30  4:24   ` Anthony Liguori
2006-04-30 10:43     ` Johannes Schindelin
2006-04-30 20:14       ` Anthony Liguori
2006-04-30 22:14         ` Christian MICHON [this message]
2006-04-30 23:11           ` Christian MICHON
2006-04-30 23:46             ` [Qemu-devel] " Anthony Liguori
2006-04-30 20:57       ` [Qemu-devel] [PATCH] Enhanced Documentation Stefan Weil
2006-05-01  5:02   ` [Qemu-devel] [PATCH] VNC display support for QEMU Troy Benjegerdes
2006-05-01  5:29 ` Troy Benjegerdes
2006-05-01  6:01 ` Brad Campbell
2006-05-01  6:03   ` Brad Campbell
2006-05-01  9:08   ` Johannes Schindelin

Reply instructions:

You may reply publicly to this message via plain-text email
using any one of the following methods:

* Save the following mbox file, import it into your mail client,
  and reply-to-all from there: mbox

  Avoid top-posting and favor interleaved quoting:
  https://en.wikipedia.org/wiki/Posting_style#Interleaved_style

* Reply using the --to, --cc, and --in-reply-to
  switches of git-send-email(1):

  git send-email \
    --in-reply-to=46d6db660604301514l2c2dec9elf32db5e9a9d3d8d9@mail.gmail.com \
    --to=christian.michon@gmail.com \
    --cc=qemu-devel@nongnu.org \
    /path/to/YOUR_REPLY

  https://kernel.org/pub/software/scm/git/docs/git-send-email.html

* If your mail client supports setting the In-Reply-To header
  via mailto: links, try the mailto: link
Be sure your reply has a Subject: header at the top and a blank line before the message body.
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).