diff options
author | Vanilla I. Shu <vanilla@FreeBSD.org> | 2004-02-08 17:02:11 +0000 |
---|---|---|
committer | Vanilla I. Shu <vanilla@FreeBSD.org> | 2004-02-08 17:02:11 +0000 |
commit | d549dd20de22088692a61f8152a60c9c8ded3166 (patch) | |
tree | 62f9f9e6d4e24c859941a2e3136cd78bdbd96a39 /irc/irssi-devel/files/patch-eai_nodata | |
parent | 72f8e7c88136412161e0d242002728650a504f73 (diff) | |
download | ports-d549dd20de22088692a61f8152a60c9c8ded3166.tar.gz ports-d549dd20de22088692a61f8152a60c9c8ded3166.zip |
- Unbreak on -currnet.
- Put USE_OPENSSL before <bsd.port.pre.mk>
- make configure happy
- make pre-configure target non-fatal. This makes interrupting and resuming
the configure stage possible.
PR: ports/62476
Submitted by: Ulrich Spoerlein <q@uni.de>
Notes
Notes:
svn path=/head/; revision=100401
Diffstat (limited to 'irc/irssi-devel/files/patch-eai_nodata')
-rw-r--r-- | irc/irssi-devel/files/patch-eai_nodata | 11 |
1 files changed, 11 insertions, 0 deletions
diff --git a/irc/irssi-devel/files/patch-eai_nodata b/irc/irssi-devel/files/patch-eai_nodata new file mode 100644 index 000000000000..3d5d32db54fc --- /dev/null +++ b/irc/irssi-devel/files/patch-eai_nodata @@ -0,0 +1,11 @@ +--- src/core/network.c.orig Sat Feb 7 12:48:34 2004 ++++ src/core/network.c Sat Feb 7 12:49:40 2004 +@@ -607,7 +607,7 @@ + int net_hosterror_notfound(int error) + { + #ifdef HAVE_IPV6 +- return error != 1 && (error == EAI_NONAME || error == EAI_NODATA); ++ return error != 1 && (error == EAI_NONAME); + #else + return error == HOST_NOT_FOUND || error == NO_ADDRESS; + #endif |