summaryrefslogtreecommitdiff
path: root/lang/ruby/3.2/patches/patch-thread_pthread_h
diff options
context:
space:
mode:
authorVineet Kumar <git@vineetk.net>2026-06-15 14:54:51 -0400
committerVineet Kumar <git@vineetk.net>2026-06-15 14:54:51 -0400
commite81f04fa53e7e01afdc834d9c22b5c982c98f59b (patch)
tree763d6d68516ca9d184ddd2402978adcc4027a99d /lang/ruby/3.2/patches/patch-thread_pthread_h
parent92e45e47c29ec037842c4a34ebc0c14143d413ff (diff)
remove all ports to start from clean slateHEADmaster
This is due to the following two reasons: 1. it's very out of date compared with current ports tree (like by 2+ years!) - some of the ports here were mainly just updates I didn't upstream, which have since now been part of openbsd, like verilator 2. removing dependencies is a lot of headache to stay in sync and/or for ports I no longer use - e.g. dbus is very difficult to remove in a desktop while patching to remove from gtk and downstream - I don't want to spend more time reducing number of dependencies when I can be working instead. I no longer have as much free time as I did in high school :(
Diffstat (limited to 'lang/ruby/3.2/patches/patch-thread_pthread_h')
-rw-r--r--lang/ruby/3.2/patches/patch-thread_pthread_h14
1 files changed, 0 insertions, 14 deletions
diff --git a/lang/ruby/3.2/patches/patch-thread_pthread_h b/lang/ruby/3.2/patches/patch-thread_pthread_h
deleted file mode 100644
index 7a0a1d4..0000000
--- a/lang/ruby/3.2/patches/patch-thread_pthread_h
+++ /dev/null
@@ -1,14 +0,0 @@
1base-gcc doesn't support __thread
2
3Index: thread_pthread.h
4--- thread_pthread.h.orig
5+++ thread_pthread.h
6@@ -93,7 +93,7 @@ struct rb_thread_sched {
7 #ifndef RB_THREAD_LOCAL_SPECIFIER_IS_UNSUPPORTED
8 # if __STDC_VERSION__ >= 201112
9 # define RB_THREAD_LOCAL_SPECIFIER _Thread_local
10-# elif defined(__GNUC__)
11+# elif defined(__clang__)
12 /* note that ICC (linux) and Clang are covered by __GNUC__ */
13 # define RB_THREAD_LOCAL_SPECIFIER __thread
14 # endif