Bring rtld exports in line with corresponding symbols exported from

libc.

Disable SYMVER_DEFAULT n rtld until its implications are understood
better.
This commit is contained in:
Alexander Kabaev 2007-04-09 23:00:29 +00:00
parent 6429a5cb9b
commit 3c0d0ca74b
Notes: svn2git 2020-12-20 02:59:44 +00:00
svn path=/head/; revision=168558
3 changed files with 8 additions and 2 deletions

View File

@ -21,7 +21,7 @@ LDFLAGS+= -shared -Wl,-Bsymbolic
DPADD= ${LIBC_PIC}
LDADD= -lc_pic
.if defined(SYMVER_ENABLED)
.if defined(SYMVER_ENABLED) && 0
SYMBOL_MAPS= ${.CURDIR}/Symbol.map
VERSION_DEF= ${.CURDIR}/Versions.def
VERSION_MAP= Version.map

View File

@ -11,8 +11,11 @@ FBSD_1.0 {
dllockinit;
dlinfo;
dl_iterate_phdr;
__tls_get_addr;
};
FBSDprivate {
_rtld_thread_init;
_rtld_allocate_tls;
_rtld_free_tls;
__tls_get_addr;
};

View File

@ -2,3 +2,6 @@
FBSD_1.0 {
};
FBSDprivate {
};