summaryrefslogtreecommitdiff
path: root/net-mgmt/tork/files/patch-src-tsocks-dead_pool.c
diff options
context:
space:
mode:
authorRene Ladan <rene@FreeBSD.org>2013-07-26 19:19:20 +0000
committerRene Ladan <rene@FreeBSD.org>2013-07-26 19:19:20 +0000
commit66fee909266a1dedf3dfc1f03bb0841380d78805 (patch)
tree4c98d494bc4532b5dd5b19f4e47bcb3babf104c2 /net-mgmt/tork/files/patch-src-tsocks-dead_pool.c
parentRemove support for Qt3/kde in preparation for full Qt3/kde3 removal (diff)
KDE3 and QT3 expired on 2013-07-01, remove these ports.
Unfortunately, this also affects some ports using QT3 as a GUI toolkit. Changes to infrastructure files: - bsd.kde.mk : obsolete, remove - bsd.qt.mk : note that a CONFLICTS_BUILD line can probably go after a while - CHANGES : document the removals from bsd.port.mk - KNOBS : remove KDE and QT (KDE4 and QT4 should be used instead) - MOVED : add the removed ports PR: ports/180745 Submitted by: rene Approved by: portmgr (bapt) Exp-run by: bapt
Notes
Notes: svn path=/head/; revision=323748
Diffstat (limited to 'net-mgmt/tork/files/patch-src-tsocks-dead_pool.c')
-rw-r--r--net-mgmt/tork/files/patch-src-tsocks-dead_pool.c20
1 files changed, 0 insertions, 20 deletions
diff --git a/net-mgmt/tork/files/patch-src-tsocks-dead_pool.c b/net-mgmt/tork/files/patch-src-tsocks-dead_pool.c
deleted file mode 100644
index fbbfb94f2678..000000000000
--- a/net-mgmt/tork/files/patch-src-tsocks-dead_pool.c
+++ /dev/null
@@ -1,20 +0,0 @@
---- src/tsocks/dead_pool.c.orig 2008-02-11 00:11:18.000000000 +0100
-+++ src/tsocks/dead_pool.c 2008-02-11 00:12:27.000000000 +0100
-@@ -69,7 +69,7 @@
- /* Allocate space for the dead_pool structure */
- newpool = (dead_pool *) mmap(0, sizeof(dead_pool),
- PROT_READ | PROT_WRITE,
-- MAP_SHARED | MAP_ANONYMOUS, -1, 0);
-+ MAP_SHARED | MAP_ANON, -1, 0);
- if(!newpool) {
- show_msg(MSGERR, "init_pool: unable to mmap deadpool "
- "(tried to map %d bytes)\n", sizeof(dead_pool));
-@@ -94,7 +94,7 @@
- /* Allocate space for the entries */
- newpool->entries = (pool_ent *) mmap(0, newpool->n_entries * sizeof(pool_ent),
- PROT_READ | PROT_WRITE,
-- MAP_SHARED | MAP_ANONYMOUS, -1, 0);
-+ MAP_SHARED | MAP_ANON, -1, 0);
- if(!newpool->entries) {
- munmap((void *)newpool, sizeof(dead_pool));
- show_msg(MSGERR, "init_pool: unable to mmap deadpool entries "