summaryrefslogtreecommitdiff
path: root/openssl-runpath.patch
diff options
context:
space:
mode:
authorFranz Geffke <franz@pantherx.org>2023-09-04 16:09:15 +0100
committerFranz Geffke <franz@pantherx.org>2023-09-04 16:09:15 +0100
commit5aed7a13bcf8929e49138f9658130c2178d5a059 (patch)
treed7bee57374c081f7c536fd74fc717fc38c98f990 /openssl-runpath.patch
parentce512c31c93318f47dc1bb5e32a6cce94aa3b859 (diff)
tls: remove obsolete openssl
Diffstat (limited to 'openssl-runpath.patch')
-rw-r--r--openssl-runpath.patch15
1 files changed, 0 insertions, 15 deletions
diff --git a/openssl-runpath.patch b/openssl-runpath.patch
deleted file mode 100644
index fa7c0b9..0000000
--- a/openssl-runpath.patch
+++ /dev/null
@@ -1,15 +0,0 @@
-This patch makes the build system pass -Wl,-rpath=$out/lib even for
-libraries (it already does so for executables, thanks to 'DO_GNU_APP'
-in 'Makefile.shared'.)
-
---- openssl-1.0.2a/Makefile.shared 2015-04-05 01:07:35.357602454 +0200
-+++ openssl-1.0.2a/Makefile.shared 2015-04-05 01:09:50.474513303 +0200
-@@ -106,7 +106,7 @@ LINK_SO= \
- LIBPATH=`for x in $$LIBDEPS; do echo $$x; done | sed -e 's/^ *-L//;t' -e d | uniq`; \
- LIBPATH=`echo $$LIBPATH | sed -e 's/ /:/g'`; \
- LD_LIBRARY_PATH=$$LIBPATH:$$LD_LIBRARY_PATH \
-- $${SHAREDCMD} $${SHAREDFLAGS} \
-+ $${SHAREDCMD} $${SHAREDFLAGS} -Wl,-rpath,$(LIBRPATH) \
- -o $$SHLIB$$SHLIB_SOVER$$SHLIB_SUFFIX \
- $$ALLSYMSFLAGS $$SHOBJECTS $$NOALLSYMSFLAGS $$LIBDEPS \
- ) && $(SYMLINK_SO)