From 3d5ea105bd877f0069452e450320f8877b01cb52 Mon Sep 17 00:00:00 2001 From: Petr Menšík Date: Wed, 18 Jan 2017 17:22:50 +0100 Subject: RTLD_DEEPBIND conflicts with pkcs11 libraries, skip it for dyndb (#1410433) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit Signed-off-by: Petr Menšík --- bind-9.11-rh1410433.patch | 14 ++++++++++++++ 1 file changed, 14 insertions(+) create mode 100644 bind-9.11-rh1410433.patch (limited to 'bind-9.11-rh1410433.patch') diff --git a/bind-9.11-rh1410433.patch b/bind-9.11-rh1410433.patch new file mode 100644 index 0000000..b7fdc48 --- /dev/null +++ b/bind-9.11-rh1410433.patch @@ -0,0 +1,14 @@ +diff --git a/lib/dns/dyndb.c b/lib/dns/dyndb.c +index 0ce5e42..556d920 100644 +--- a/lib/dns/dyndb.c ++++ b/lib/dns/dyndb.c +@@ -130,9 +130,6 @@ load_library(isc_mem_t *mctx, const char *filename, const char *instname, + instname, filename); + + flags = RTLD_NOW|RTLD_LOCAL; +-#ifdef RTLD_DEEPBIND +- flags |= RTLD_DEEPBIND; +-#endif + + handle = dlopen(filename, flags); + if (handle == NULL) -- cgit