Blame SOURCES/0001-test-Fix-dlwrap-on-ppc64-and-s390x.patch
|
|
db2a1c |
From ce5afcca4648b34e2ce9f7804a5444f81d94e07d Mon Sep 17 00:00:00 2001
|
|
|
db2a1c |
From: Adam Jackson <ajax@redhat.com>
|
|
|
db2a1c |
Date: Thu, 5 Nov 2015 10:26:03 -0500
|
|
|
db2a1c |
Subject: [PATCH] test: Fix dlwrap on ppc64 and s390x
|
|
|
db2a1c |
|
|
|
db2a1c |
These have dlsym versions of GLIBC_2.3 and GLIBC_2.2, respectively.
|
|
|
db2a1c |
|
|
|
db2a1c |
Signed-off-by: Adam Jackson <ajax@redhat.com>
|
|
|
db2a1c |
---
|
|
|
db2a1c |
test/dlwrap.c | 2 ++
|
|
|
db2a1c |
1 file changed, 2 insertions(+)
|
|
|
db2a1c |
|
|
|
db2a1c |
diff --git a/test/dlwrap.c b/test/dlwrap.c
|
|
|
db2a1c |
index b104da4..9d1add5 100644
|
|
|
db2a1c |
--- a/test/dlwrap.c
|
|
|
db2a1c |
+++ b/test/dlwrap.c
|
|
|
db2a1c |
@@ -232,7 +232,9 @@ dlwrap_real_dlsym(void *handle, const char *name)
|
|
|
db2a1c |
* In the meantime, I'll just keep augmenting this
|
|
|
db2a1c |
* hard-coded version list as people report bugs. */
|
|
|
db2a1c |
const char *version[] = {
|
|
|
db2a1c |
+ "GLIBC_2.3",
|
|
|
db2a1c |
"GLIBC_2.2.5",
|
|
|
db2a1c |
+ "GLIBC_2.2",
|
|
|
db2a1c |
"GLIBC_2.0"
|
|
|
db2a1c |
};
|
|
|
db2a1c |
int num_versions = sizeof(version) / sizeof(version[0]);
|
|
|
db2a1c |
--
|
|
|
db2a1c |
2.9.3
|
|
|
db2a1c |
|