aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorJoakim <elupus@ecce.se>2011-05-11 00:57:17 +0200
committerJoakim <elupus@ecce.se>2011-05-11 00:58:05 +0200
commit922e218babbe2358aff4ce7e32c4c2f98e32bbf2 (patch)
tree5e2e4755bc2c8e8fa3f9967c29247829093dc778
parent997a5fa107234d2eba3d88460741cb024fd59cea (diff)
added: missing socket include for IOS (and osx?) build
-rw-r--r--xbmc/network/osx/ZeroconfBrowserOSX.cpp5
1 files changed, 4 insertions, 1 deletions
diff --git a/xbmc/network/osx/ZeroconfBrowserOSX.cpp b/xbmc/network/osx/ZeroconfBrowserOSX.cpp
index d8f10d8ebd..199b26e071 100644
--- a/xbmc/network/osx/ZeroconfBrowserOSX.cpp
+++ b/xbmc/network/osx/ZeroconfBrowserOSX.cpp
@@ -26,6 +26,9 @@
#include <guilib/GUIMessage.h>
#include <GUIUserMessages.h>
+#include <arpa/inet.h>
+#include <netinet/in.h>
+
namespace
{
CStdString CFStringToCStdString(const CFStringRef cfstr)
@@ -316,4 +319,4 @@ bool CZeroconfBrowserOSX::doResolveService(CZeroconfBrowser::ZeroconfService& fr
CFRelease(domain);
CFRelease(service);
return ret;
-} \ No newline at end of file
+}