summaryrefslogtreecommitdiff
path: root/net-im/libjingle/files/patch-talk__base__physicalsocketserver.cc
diff options
context:
space:
mode:
authorBaptiste Daroussin <bapt@FreeBSD.org>2014-09-01 22:01:24 +0000
committerBaptiste Daroussin <bapt@FreeBSD.org>2014-09-01 22:01:24 +0000
commit11b0d3ddde2150d23a51c55b5597d968fe3a03bb (patch)
tree033e919c8c3370eefece9a149b26edc18d1cd93f /net-im/libjingle/files/patch-talk__base__physicalsocketserver.cc
parentFix build on local systems when ffmpeg-2.3.3 is installed. This removes the (diff)
Remove non staged ports without pending PR from net-im and net-mgmt
Notes
Notes: svn path=/head/; revision=366966
Diffstat (limited to 'net-im/libjingle/files/patch-talk__base__physicalsocketserver.cc')
-rw-r--r--net-im/libjingle/files/patch-talk__base__physicalsocketserver.cc14
1 files changed, 0 insertions, 14 deletions
diff --git a/net-im/libjingle/files/patch-talk__base__physicalsocketserver.cc b/net-im/libjingle/files/patch-talk__base__physicalsocketserver.cc
deleted file mode 100644
index 1cdbd0805d28..000000000000
--- a/net-im/libjingle/files/patch-talk__base__physicalsocketserver.cc
+++ /dev/null
@@ -1,14 +0,0 @@
---- talk/base/physicalsocketserver.cc.orig Thu May 4 10:51:48 2006
-+++ talk/base/physicalsocketserver.cc Fri May 5 16:16:16 2006
-@@ -222,6 +222,11 @@
- return ::setsockopt(
- s_, IPPROTO_IP, IP_MTU_DISCOVER, &value, sizeof(value));
- #endif
-+#ifdef __FreeBSD__
-+ value = (value == 0) ? 0 : 1;
-+ return ::setsockopt(
-+ s_, IPPROTO_IP, IP_DONTFRAG, &value, sizeof(value));
-+#endif
- #ifdef OSX
- // This is not possible on OSX.
- return -1;