diff options
author | perky <perky@FreeBSD.org> | 2003-07-09 14:09:19 +0800 |
---|---|---|
committer | perky <perky@FreeBSD.org> | 2003-07-09 14:09:19 +0800 |
commit | f0efd03cbf1f1daba7999bec4fc82bed64b32f24 (patch) | |
tree | e70a74bd1f49df12daafa6168aa2d86c6d5607e4 /lang | |
parent | 1fdfb0326328b43c3e3e1eec511c875546bb0bb3 (diff) | |
download | freebsd-ports-gnome-f0efd03cbf1f1daba7999bec4fc82bed64b32f24.tar.gz freebsd-ports-gnome-f0efd03cbf1f1daba7999bec4fc82bed64b32f24.tar.zst freebsd-ports-gnome-f0efd03cbf1f1daba7999bec4fc82bed64b32f24.zip |
Remove a unused file.
Diffstat (limited to 'lang')
-rw-r--r-- | lang/python21/files/zwiki.patch | 23 |
1 files changed, 0 insertions, 23 deletions
diff --git a/lang/python21/files/zwiki.patch b/lang/python21/files/zwiki.patch deleted file mode 100644 index af6eba31e6b6..000000000000 --- a/lang/python21/files/zwiki.patch +++ /dev/null @@ -1,23 +0,0 @@ -diff -ruN Python/thread_pthread.h.orig Python/thread_pthread.h ---- Python/thread_pthread.h.orig Wed Feb 5 01:26:59 2003 -+++ Python/thread_pthread.h Wed Feb 5 01:28:32 2003 -@@ -128,6 +128,10 @@ - { - pthread_t th; - int success; -+ pthread_attr_t pta; -+ pthread_attr_init(&pta); -+ pthread_attr_setstacksize(&pta, (1<<17)); -+ - #ifdef PTHREAD_SYSTEM_SCHED_SUPPORTED - pthread_attr_t attrs; - #endif -@@ -156,7 +160,7 @@ - #ifdef PTHREAD_SYSTEM_SCHED_SUPPORTED - &attrs, - #else -- (pthread_attr_t*)NULL, -+ (pthread_attr_t*)&pta, - #endif - (void* (*)(void *))func, - (void *)arg |