aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMike Frysinger <vapier@gentoo.org>2015-08-07 01:43:08 -0400
committerMike Frysinger <vapier@gentoo.org>2015-08-07 01:50:46 -0400
commitf903b287fea685366c0c8b59b01a1df940553458 (patch)
tree1d1cfa8a0e95c415b388801d8c42639fcf179416
parentee2ff82cba61cb45970326e08dbfc0cebe05b4bc (diff)
downloadglibc-f903b287fea685366c0c8b59b01a1df940553458.tar
glibc-f903b287fea685366c0c8b59b01a1df940553458.tar.gz
glibc-f903b287fea685366c0c8b59b01a1df940553458.tar.bz2
glibc-f903b287fea685366c0c8b59b01a1df940553458.zip
hppa: _dl_symbol_address: add missing hidden def
Commit 2a6ad8142d14c998e6c5eb51418aac1f598b621e updated the headers and the common dl-symaddr.c, but missed that hppa has its own dedicated source file for this func. Update that too to fix build errors due to missing exports of the symbol. (cherry picked from commit be144ba68c918a5d7bc964be06fbeb51a0df84fc)
-rw-r--r--ChangeLog4
-rw-r--r--sysdeps/hppa/dl-symaddr.c1
2 files changed, 5 insertions, 0 deletions
diff --git a/ChangeLog b/ChangeLog
index 82331d5860..adde3e23f1 100644
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,7 @@
+2015-08-07 Mike Frysinger <vapier@gentoo.org>
+
+ * sysdeps/hppa/dl-symaddr.c (_dl_symbol_address): Add rtld_hidden_def.
+
2015-08-05 Zack Weinberg <zackw@panix.com>
* misc/regexp.h: Update comments.
diff --git a/sysdeps/hppa/dl-symaddr.c b/sysdeps/hppa/dl-symaddr.c
index b707c19e94..89d8bafcd3 100644
--- a/sysdeps/hppa/dl-symaddr.c
+++ b/sysdeps/hppa/dl-symaddr.c
@@ -33,3 +33,4 @@ _dl_symbol_address (struct link_map *map, const ElfW(Sym) *ref)
else
return (void *) value;
}
+rtld_hidden_def (_dl_symbol_address)