aboutsummaryrefslogtreecommitdiff
path: root/devel/clanlib/files/patch-Sources__Network__Socket__unix_socket.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'devel/clanlib/files/patch-Sources__Network__Socket__unix_socket.cpp')
-rw-r--r--devel/clanlib/files/patch-Sources__Network__Socket__unix_socket.cpp20
1 files changed, 0 insertions, 20 deletions
diff --git a/devel/clanlib/files/patch-Sources__Network__Socket__unix_socket.cpp b/devel/clanlib/files/patch-Sources__Network__Socket__unix_socket.cpp
deleted file mode 100644
index dc3f9a016b11..000000000000
--- a/devel/clanlib/files/patch-Sources__Network__Socket__unix_socket.cpp
+++ /dev/null
@@ -1,20 +0,0 @@
---- ./Sources/Network/Socket/unix_socket.cpp.orig 2012-09-25 07:45:17.000000000 -0400
-+++ ./Sources/Network/Socket/unix_socket.cpp 2012-09-25 08:00:41.000000000 -0400
-@@ -39,7 +39,7 @@
- #include <netinet/tcp.h>
- #include <errno.h>
-
--#ifdef __APPLE__
-+#if defined(__APPLE__) || defined(__FreeBSD__)
- # define SOL_TCP IPPROTO_TCP // Fix for BSD systems. --NDT
- #endif
-
-@@ -140,7 +140,7 @@
-
- void CL_UnixSocket::set_keep_alive(bool enable, int timeout, int interval)
- {
--#ifndef __APPLE__
-+#if !(defined(__APPLE__) || defined(__FreeBSD__))
- int value = enable ? 1 : 0;
- int result = setsockopt(handle, SOL_SOCKET, SO_KEEPALIVE, (const char *) &value, sizeof(int));
- throw_if_failed(result);