From 58794b38b1a24b93c9a8c3321694e3883bae4cd0 Mon Sep 17 00:00:00 2001
From: marcus <marcus@df743ca5-7f9a-e211-a948-0013205c9059>
Date: Fri, 10 Apr 2009 19:24:39 +0000
Subject: Remove these ports now that they have been merged into FreeBSD ports.

git-svn-id: svn://creme-brulee.marcuscom.com/ports/trunk@12240 df743ca5-7f9a-e211-a948-0013205c9059
---
 .../patch-src-OpenThreads-pthreads-PThread.c++     | 37 ----------------------
 1 file changed, 37 deletions(-)
 delete mode 100644 graphics/osg-devel/files/patch-src-OpenThreads-pthreads-PThread.c++

(limited to 'graphics/osg-devel/files/patch-src-OpenThreads-pthreads-PThread.c++')

diff --git a/graphics/osg-devel/files/patch-src-OpenThreads-pthreads-PThread.c++ b/graphics/osg-devel/files/patch-src-OpenThreads-pthreads-PThread.c++
deleted file mode 100644
index d1997c322..000000000
--- a/graphics/osg-devel/files/patch-src-OpenThreads-pthreads-PThread.c++
+++ /dev/null
@@ -1,37 +0,0 @@
---- src/OpenThreads/pthreads/PThread.c++.orig	2008-11-05 13:27:49.000000000 +0300
-+++ src/OpenThreads/pthreads/PThread.c++	2009-02-04 18:06:28.000000000 +0300
-@@ -21,6 +21,7 @@
- #include <sys/types.h>
- #include <unistd.h>
- #include <pthread.h>
-+#include <pthread_np.h>
- 
- #if defined __linux || defined __sun || defined __APPLE__
- #include <string.h>
-@@ -125,7 +126,7 @@
- #if defined(__sgi)
-             pthread_setrunon_np( pd->cpunum );
- #elif defined(HAVE_PTHREAD_SETAFFINITY_NP) || defined(HAVE_THREE_PARAM_SCHED_SETAFFINITY) || defined(HAVE_TWO_PARAM_SCHED_SETAFFINITY)
--            cpu_set_t cpumask;
-+            cpuset_t cpumask;
-             CPU_ZERO( &cpumask );
-             CPU_SET( pd->cpunum, &cpumask );
- 
-@@ -541,7 +542,7 @@
- 
-     if (pd->isRunning && Thread::CurrentThread()==this)
-     {
--        cpu_set_t cpumask;
-+        cpuset_t cpumask;
-         CPU_ZERO( &cpumask );
-         CPU_SET( pd->cpunum, &cpumask );
- #if defined(HAVE_PTHREAD_SETAFFINITY_NP)
-@@ -975,7 +976,7 @@
-     else
-     {
- #if defined(HAVE_PTHREAD_SETAFFINITY_NP) || defined(HAVE_THREE_PARAM_SCHED_SETAFFINITY) || defined(HAVE_TWO_PARAM_SCHED_SETAFFINITY)
--        cpu_set_t cpumask;
-+        cpuset_t cpumask;
-         CPU_ZERO( &cpumask );
-         CPU_SET( cpunum, &cpumask );
- 
-- 
cgit