]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
hppa: _dl_symbol_address: add missing hidden def
authorMike Frysinger <vapier@gentoo.org>
Fri, 7 Aug 2015 05:43:08 +0000 (01:43 -0400)
committerMike Frysinger <vapier@gentoo.org>
Fri, 7 Aug 2015 05:50:46 +0000 (01:50 -0400)
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)

ChangeLog
sysdeps/hppa/dl-symaddr.c

index 82331d586068b392c3fc0aabef4a05dc68ad9e46..adde3e23f1eca4655be5e64798310d166520788a 100644 (file)
--- 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.
index b707c19e94b61cc54c054e8027d7f03a20707fb6..89d8bafcd3fc53d73d41b85b14bd4f66b01cf88c 100644 (file)
@@ -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)