summaryrefslogtreecommitdiff
path: root/mbone/mcl/files/patch-mcl_lib.cpp
diff options
context:
space:
mode:
authorPav Lucistnik <pav@FreeBSD.org>2011-03-06 22:36:23 +0000
committerPav Lucistnik <pav@FreeBSD.org>2011-03-06 22:36:23 +0000
commitde05c59dc7246a3a49595d7bb9db844d9a0dd9c2 (patch)
treee0c639a12886e6a16b6b23e3aecc811616aa2654 /mbone/mcl/files/patch-mcl_lib.cpp
parent- Move all 13 ports out of mbone category (diff)
- Remove files of ports that have been moved to other categories
Notes
Notes: svn path=/head/; revision=270388
Diffstat (limited to 'mbone/mcl/files/patch-mcl_lib.cpp')
-rw-r--r--mbone/mcl/files/patch-mcl_lib.cpp27
1 files changed, 0 insertions, 27 deletions
diff --git a/mbone/mcl/files/patch-mcl_lib.cpp b/mbone/mcl/files/patch-mcl_lib.cpp
deleted file mode 100644
index d40dbe58584c..000000000000
--- a/mbone/mcl/files/patch-mcl_lib.cpp
+++ /dev/null
@@ -1,27 +0,0 @@
---- src/alc/mcl_lib.cpp.orig Wed Nov 26 15:38:14 2003
-+++ src/alc/mcl_lib.cpp Tue Dec 16 23:58:46 2003
-@@ -1384,8 +1384,10 @@
- if (id >= MCLCB_MAX_ID || (mclcb = mclcbs[id]) == NULL) {
- TRACE((mcl_stdout, " mcl_recvfrom: not an MCL id, switch to standard recvfrom\n"))
- return (recvfrom(id, (char*)buf, len, 0, saddr,
--#ifdef LINUX
-+#if defined(LINUX)
- (size_t*) /* linux => uint, solaris => int */
-+#elif defined(FREEBSD)
-+ (socklen_t*)
- #endif
- saddr_len));
- }
-@@ -1520,8 +1522,11 @@
- if (id >= MCLCB_MAX_ID || (mclcb = mclcbs[id]) == NULL) {
- TRACE((mcl_stdout, " mcl_recvfrom: not an MCL id, switch to standard recvfrom\n"))
- return (recvfrom(id, (char*)buf, len, 0, saddr,
--#ifdef LINUX
-+#if defined(LINUX)
- (size_t*) /* linux => uint, solaris => int */
-+#elif defined(FREEBSD)
-+ (socklen_t*)
-+
- #endif
- saddr_len));
- }