openssl-ibmca/openssl-ibmca-2.0.0-linking.patch

28 lines
855 B
Diff
Raw Normal View History

2018-06-18 12:38:31 +00:00
From a6a837166e45e6537f35f6d35c38db54c6f4a640 Mon Sep 17 00:00:00 2001
From: =?UTF-8?q?Dan=20Hor=C3=A1k?= <dan@danny.cz>
Date: Tue, 12 Jun 2018 12:51:12 +0200
Subject: [PATCH] omit version from filename
The ibmca.so file is a dlopen()-ed module, so having the version info
in the filename is superfluous.
---
src/Makefile.am | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git a/src/Makefile.am b/src/Makefile.am
index fa37e4d..2254379 100644
--- a/src/Makefile.am
+++ b/src/Makefile.am
@@ -13,7 +13,7 @@ ibmca_la_SOURCES=e_ibmca.c \
ibmca_la_LIBADD=-ldl
ibmca_la_LDFLAGS=-module -version-info ${VERSION} -shared -no-undefined \
- -Wl,--version-script=${srcdir}/../ibmca.map
+ -avoid-version -Wl,--version-script=${srcdir}/../ibmca.map
dist_ibmca_la_SOURCES=ibmca.h e_ibmca_err.h
EXTRA_DIST = openssl.cnf.sample
--
2.14.3