openbsd-ports/net/pidgin-sipe/patches/patch-src_purple_purple-dnsquery_c
jasper b59dd8f301 import pidgin-sipe 1.13.1
This project develops a third-party plugin for the Pidgin multi-protocol
instant messenger. It implements the extended version of SIP/SIMPLE used
by various products:
Microsoft Office Communications Server (OCS 2007/2007 R2 and newer)
Microsoft Live Communications Server (LCS 2003/2005) Reuters Messaging
With this plugin you should be able to replace your Microsoft Office
Communicator client with Pidgin.

feedback/ok aja@
based on a submission by tom@singlesecond.com
2012-05-08 06:52:20 +00:00

21 lines
569 B
Plaintext

$OpenBSD: patch-src_purple_purple-dnsquery_c,v 1.1.1.1 2012/05/08 06:52:20 jasper Exp $
--- src/purple/purple-dnsquery.c.orig Wed Mar 21 13:16:46 2012
+++ src/purple/purple-dnsquery.c Thu Apr 19 10:03:54 2012
@@ -24,9 +24,14 @@
#include "win32/win32dep.h" /* for inet_ntop() */
#include <ws2tcpip.h>
#else
-#include <arpa/inet.h>
-#include <netinet/in.h>
+#include <sys/types.h>
#include <sys/socket.h>
+
+#include <netinet/in.h>
+#include <netinet/in_systm.h>
+#include <netinet/tcp.h>
+#include <netinet/ip.h>
+#include <arpa/inet.h>
#endif
#include <glib.h>