mirror of
https://git.freebsd.org/ports.git
synced 2025-06-09 14:50:31 -04:00
- 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>
11 lines
368 B
Text
11 lines
368 B
Text
--- 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
|