[Lldb-commits] [lldb] r125655 - /lldb/trunk/source/Core/ConnectionFileDescriptor.cpp
Stephen Wilson
wilsons at start.ca
Tue Feb 15 21:36:26 PST 2011
Author: wilsons
Date: Tue Feb 15 23:36:26 2011
New Revision: 125655
URL: http://llvm.org/viewvc/llvm-project?rev=125655&view=rev
Log:
Expose includes for the socket layer on all platforms.
This patch reverts a portion of r125199 to allow the tree to build again on
linux. The specific mingw issues that revision intended to address can be
sorted out at a later time.
Modified:
lldb/trunk/source/Core/ConnectionFileDescriptor.cpp
Modified: lldb/trunk/source/Core/ConnectionFileDescriptor.cpp
URL: http://llvm.org/viewvc/llvm-project/lldb/trunk/source/Core/ConnectionFileDescriptor.cpp?rev=125655&r1=125654&r2=125655&view=diff
==============================================================================
--- lldb/trunk/source/Core/ConnectionFileDescriptor.cpp (original)
+++ lldb/trunk/source/Core/ConnectionFileDescriptor.cpp Tue Feb 15 23:36:26 2011
@@ -12,14 +12,12 @@
// C Includes
#include <errno.h>
#include <fcntl.h>
-#ifdef __APPLE__
#include <arpa/inet.h>
#include <netdb.h>
#include <netinet/in.h>
#include <netinet/tcp.h>
#include <sys/socket.h>
#include <sys/un.h>
-#endif
#include <sys/types.h>
#include <string.h>
#include <stdlib.h>
More information about the lldb-commits
mailing list