Skip site navigation (1)Skip section navigation (2)
Date:      Sat, 30 Mar 2013 18:52:25 +0100
From:      Oliver Pinter <oliver.pntr@gmail.com>
To:        Juergen Lock <nox@jelal.kn-bremen.de>
Cc:        freebsd-ports-bugs@freebsd.org, current@freebsd.org, bug-followup@freebsd.org, Pinter Oliver ICTF <op@crysys.hu>
Subject:   Re: ports/177488: qemu-1.4
Message-ID:  <CAPjTQNG780od3AktTv6Hx65%2BEzmbrcPBamzVWoqATcfHuoAPQQ@mail.gmail.com>
In-Reply-To: <CAPjTQNFZFdmjTi2GGOsKU_2306aV2SW7RLTsTAV6MSggLyMUkQ@mail.gmail.com>
References:  <201303300112.r2U1Cr2Z015577@red.freebsd.org> <201303300120.r2U1K0te098396@freefall.freebsd.org> <20130330013337.GA19871@crysys.hu> <CAPjTQNGwNmQ8dEiSv5iLfErqsKtkrw-r4W_LMP2w9EoEKAPRYQ@mail.gmail.com> <20130330082344.GA11534@triton8.kn-bremen.de> <CAPjTQNFZFdmjTi2GGOsKU_2306aV2SW7RLTsTAV6MSggLyMUkQ@mail.gmail.com>

index | next in thread | previous in thread | raw e-mail

[-- Attachment #1 --]
and one more

On 3/30/13, Oliver Pinter <oliver.pntr@gmail.com> wrote:
> yes this is git head, sorry
>
> On 3/30/13, Juergen Lock <nox@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
>>
>

[-- Attachment #2 --]
commit 5d6a1ccd8cd97a0708aabcfb5088b44c6ae5395d
Author: Oliver Pinter <oliver.pntr@gmail.com>
Date:   Sat Mar 30 18:24:02 2013 +0100

    one more hexdump fix
    
    Signed-off-by: Oliver Pinter <oliver.pntr@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);
 }
 
home | help

Want to link to this message? Use this
URL: <https://mail-archive.FreeBSD.org/cgi/mid.cgi?CAPjTQNG780od3AktTv6Hx65%2BEzmbrcPBamzVWoqATcfHuoAPQQ>