ports/177488: qemu-1.4
Oliver Pinter
oliver.pntr at gmail.com
Sat Mar 30 17:52:32 UTC 2013
and one more
On 3/30/13, Oliver Pinter <oliver.pntr at gmail.com> wrote:
> yes this is git head, sorry
>
> On 3/30/13, Juergen Lock <nox at jelal.kn-bremen.de> wrote:
>> On Sat, Mar 30, 2013 at 02:36:35AM +0100, Oliver Pinter wrote:
>>>[..]
>>>
>>> disable some unneeded function, and make qemu 1.4 compilable on FreeBSD
>>> 9.1
>>>
>>
>> I think you are building qemu git head as the hexdump function at least
>> isn't in 1.4.0? Anyway I have meanwhile updated the qemu-devel port
>> to 1.4.0 with some similar patches to yours and (among other things)
>> preliminary bsd-user improvements mostly by ssson and cognet, will
>> leave the PR open for when I need the hexdump patch for a future
>> update.
>>
>> Thanx,
>> Juergen
>>
>
-------------- next part --------------
commit 5d6a1ccd8cd97a0708aabcfb5088b44c6ae5395d
Author: Oliver Pinter <oliver.pntr at gmail.com>
Date: Sat Mar 30 18:24:02 2013 +0100
one more hexdump fix
Signed-off-by: Oliver Pinter <oliver.pntr at gmail.com>
diff --git a/util/iov.c b/util/iov.c
index 9dae318..bab3998 100644
--- a/util/iov.c
+++ b/util/iov.c
@@ -211,7 +211,7 @@ void iov_hexdump(const struct iovec *iov, const unsigned int iov_cnt,
size = size > limit ? limit : size;
buf = g_malloc(size);
iov_to_buf(iov, iov_cnt, 0, buf, size);
- hexdump(buf, fp, prefix, size);
+ qemu_hexdump(buf, fp, prefix, size);
g_free(buf);
}
More information about the freebsd-current
mailing list