pkgsrc-wip/stardict/patches/patch-ac
Rui-Xiang Guo a159306ee8 Make it build under NetBSD, reference to the patches from
Gergely Gábor <elentirmo.gilgalad@gmail.com>
2010-09-09 08:58:25 +00:00

23 lines
613 B
Text

$NetBSD: patch-ac,v 1.1 2010/09/09 08:58:25 rxg Exp $
--- src/lib/sockets.cpp.orig 2007-09-12 09:11:41.000000000 +0000
+++ src/lib/sockets.cpp
@@ -29,6 +29,9 @@ extern "C" {
# include <netdb.h>
# include <cerrno>
# include <fcntl.h>
+#if defined(__NetBSD__)
+# include <arpa/inet.h>
+#endif
}
#endif // _WIN32
@@ -158,7 +161,7 @@ gpointer Socket::dns_thread(gpointer dat
{
DnsQueryData *query_data = (DnsQueryData *)data;
struct hostent *phost;
-#ifndef _WIN32
+#if !defined(_WIN32) && !defined(__NetBSD__)
struct hostent hostinfo;
char buf[1024];
int ret;