diff options
author | ume <ume@FreeBSD.org> | 2003-10-29 16:25:23 +0000 |
---|---|---|
committer | ume <ume@FreeBSD.org> | 2003-10-29 16:25:23 +0000 |
commit | 40bcfff886f608f362346c4de43748f424a2fb0d (patch) | |
tree | 8bef3c875366fb2d7f719f913d3a8d819cf53f20 /irc | |
parent | 2540054dac6fd665f7ef845d12a8bcc4e7b970a9 (diff) | |
download | FreeBSD-ports-40bcfff886f608f362346c4de43748f424a2fb0d.zip FreeBSD-ports-40bcfff886f608f362346c4de43748f424a2fb0d.tar.gz |
fix build on 5-CURRENT after RFC3542 change (EAI_ADDRFAMILY and
EAI_NODATA were obsoleted).
There is some issue; we have EAI_NODATA as an alias of EAI_NONAME
for workaround. However, some of these ports use it as a case
label of switch. Since our alias broke such code, we may better
to consider deleting such alias.
Requested by: kris
Approved by: portmgr (kris) (implicitly)
Diffstat (limited to 'irc')
-rw-r--r-- | irc/ninja/files/patch-source::ircaux.c | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/irc/ninja/files/patch-source::ircaux.c b/irc/ninja/files/patch-source::ircaux.c new file mode 100644 index 0000000..6cda7ec --- /dev/null +++ b/irc/ninja/files/patch-source::ircaux.c @@ -0,0 +1,16 @@ +Index: source/ircaux.c +diff -u source/ircaux.c.orig source/ircaux.c +--- source/ircaux.c.orig Sun Jan 13 09:41:25 2002 ++++ source/ircaux.c Thu Oct 30 00:57:46 2003 +@@ -852,9 +852,11 @@ + return -10; + #else + { ++#ifdef EAI_ADDRFAMILY + if (err == EAI_ADDRFAMILY) + return -10; + else ++#endif + return -2; + } + #endif |