summaryrefslogtreecommitdiff
path: root/lang/ruby/3.2/patches/patch-template_Makefile_in
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-template_Makefile_in
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-template_Makefile_in')
-rw-r--r--lang/ruby/3.2/patches/patch-template_Makefile_in16
1 files changed, 0 insertions, 16 deletions
diff --git a/lang/ruby/3.2/patches/patch-template_Makefile_in b/lang/ruby/3.2/patches/patch-template_Makefile_in
deleted file mode 100644
index 572d5ba..0000000
--- a/lang/ruby/3.2/patches/patch-template_Makefile_in
+++ /dev/null
@@ -1,16 +0,0 @@
1Allow linking libruby to libc++abi on amd64/aarch64, so other
2software that links to libruby other than ruby itself does
3not need to manually handle arch-dependent linking.
4
5Index: template/Makefile.in
6--- template/Makefile.in.orig
7+++ template/Makefile.in
8@@ -339,7 +339,7 @@ verify-static-library: $(LIBRUBY_A)
9 $(LIBRUBY_SO):
10 @-[ -n "$(EXTSTATIC)" ] || $(PRE_LIBRUBY_UPDATE)
11 $(ECHO) linking shared-library $@
12- $(Q) $(LDSHARED) $(DLDFLAGS) $(OBJS) $(DLDOBJS) $(SOLIBS) $(EXTSOLIBS) $(OUTFLAG)$@
13+ $(Q) $(LDSHARED) ${LIBRUBY_DLDFLAGS} $(DLDFLAGS) $(OBJS) $(DLDOBJS) $(SOLIBS) $(EXTSOLIBS) $(OUTFLAG)$@
14 -$(Q) $(OBJCOPY) -w -L '$(SYMBOL_PREFIX)Init_*' -L '$(SYMBOL_PREFIX)ruby_static_id_*' \
15 -L '$(SYMBOL_PREFIX)*_threadptr_*' -L '$(SYMBOL_PREFIX)*_ec_*' $@
16 $(Q) $(POSTLINK)