From: Eric Blake <eblake@redhat.com>
To: Ed Maste <emaste@freebsd.org>,
qemu-devel@nongnu.org, "Daniel P. Berrange" <berrange@redhat.com>
Subject: Re: [Qemu-devel] [PATCH] io: fix build on FreeBSD
Date: Thu, 25 Feb 2016 09:29:02 -0700 [thread overview]
Message-ID: <56CF2BCE.6090504@redhat.com> (raw)
In-Reply-To: <1456414292-55363-1-git-send-email-emaste@freebsd.org>
[-- Attachment #1: Type: text/plain, Size: 1162 bytes --]
On 02/25/2016 08:31 AM, Ed Maste wrote:
> EAI_ADDRFAMILY is obsolete and FreeBSD/s netdb.h does not provide a
> definition.
>
> Signed-off-by: Ed Maste <emaste@freebsd.org>
> ---
> tests/test-io-channel-socket.c | 5 ++++-
> 1 file changed, 4 insertions(+), 1 deletion(-)
>
> diff --git a/tests/test-io-channel-socket.c b/tests/test-io-channel-socket.c
> index 0697363..f4dbd60 100644
> --- a/tests/test-io-channel-socket.c
> +++ b/tests/test-io-channel-socket.c
> @@ -63,7 +63,10 @@ static int check_protocol_support(bool *has_ipv4, bool *has_ipv6)
>
> gaierr = getaddrinfo("::1", NULL, &hints, &ai);
> if (gaierr != 0) {
> - if (gaierr == EAI_ADDRFAMILY ||
> + if (
> +#ifdef EAI_ADDRFAMILY
> + gaierr == EAI_ADDRFAMILY ||
> +#endif
> gaierr == EAI_FAMILY ||
I'm not the biggest-fan of mid-expression #ifdefs. Can we rewrite this
to look more like:
#ifndef EAI_ADDRFAMILY
#define EAI_ADDRFAMILY EAI_FAMILY
#endif
and leave the conditional expression unchanged?
--
Eric Blake eblake redhat com +1-919-301-3266
Libvirt virtualization library http://libvirt.org
[-- Attachment #2: OpenPGP digital signature --]
[-- Type: application/pgp-signature, Size: 604 bytes --]
next prev parent reply other threads:[~2016-02-25 16:29 UTC|newest]
Thread overview: 8+ messages / expand[flat|nested] mbox.gz Atom feed top
2016-02-25 15:31 [Qemu-devel] [PATCH] io: fix build on FreeBSD Ed Maste
2016-02-25 15:46 ` [Qemu-trivial] " Daniel P. Berrange
2016-02-25 15:46 ` [Qemu-devel] " Daniel P. Berrange
2016-02-25 16:29 ` Eric Blake [this message]
2016-02-25 16:32 ` Daniel P. Berrange
2016-02-25 16:37 ` Eric Blake
2016-02-25 16:41 ` Daniel P. Berrange
2016-02-26 14:25 ` Ed Maste
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=56CF2BCE.6090504@redhat.com \
--to=eblake@redhat.com \
--cc=berrange@redhat.com \
--cc=emaste@freebsd.org \
--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 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.