From: Ulrich Drepper Date: Thu, 13 Mar 2003 01:06:30 +0000 (+0000) Subject: Use shlib-compat.h macros instead of .symver directly. X-Git-Tag: cvs/glibc-2_3_3~1264 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=959c5bbfeee074dbd3dcef98acd41b2e53d14cec;p=thirdparty%2Fglibc.git Use shlib-compat.h macros instead of .symver directly. --- diff --git a/nptl/sysdeps/unix/sysv/linux/i386/i486/sem_post.S b/nptl/sysdeps/unix/sysv/linux/i386/i486/sem_post.S index 439004a55b5..3d67329bd15 100644 --- a/nptl/sysdeps/unix/sysv/linux/i386/i486/sem_post.S +++ b/nptl/sysdeps/unix/sysv/linux/i386/i486/sem_post.S @@ -77,11 +77,11 @@ __new_sem_post: popl %ebx ret .size __new_sem_post,.-__new_sem_post - .symver __new_sem_post, sem_post@@GLIBC_2.1 + versioned_symbol(libpthread, __new_sem_post, sem_post, GLIBC_2_1) #if SHLIB_COMPAT(libpthread, GLIBC_2_0, GLIBC_2_1) .global __old_sem_post __old_sem_post = __new_sem_post - .symver __old_sem_post, sem_post@GLIBC_2.0 + compat_symbol(libpthread, __old_sem_post, sem_post, GLIBC_2_0) #endif diff --git a/nptl/sysdeps/unix/sysv/linux/i386/i486/sem_trywait.S b/nptl/sysdeps/unix/sysv/linux/i386/i486/sem_trywait.S index 8dfbe9c12e8..65def2971ef 100644 --- a/nptl/sysdeps/unix/sysv/linux/i386/i486/sem_trywait.S +++ b/nptl/sysdeps/unix/sysv/linux/i386/i486/sem_trywait.S @@ -69,11 +69,11 @@ __new_sem_trywait: orl $-1, %eax ret .size __new_sem_trywait,.-__new_sem_trywait - .symver __new_sem_trywait, sem_trywait@@GLIBC_2.1 + versioned_symbol(libpthread, __new_sem_trywait, sem_trywait, GLIBC_2_1) #if SHLIB_COMPAT(libpthread, GLIBC_2_0, GLIBC_2_1) .global __old_sem_trywait __old_sem_trywait = __new_sem_trywait - .symver __old_sem_trywait, sem_trywait@GLIBC_2.0 + compat_symbol(libpthread, __old_sem_trywait, sem_trywait, GLIBC_2_0) #endif diff --git a/nptl/sysdeps/unix/sysv/linux/i386/i486/sem_wait.S b/nptl/sysdeps/unix/sysv/linux/i386/i486/sem_wait.S index ba5f5cf427b..eb01ca84f79 100644 --- a/nptl/sysdeps/unix/sysv/linux/i386/i486/sem_wait.S +++ b/nptl/sysdeps/unix/sysv/linux/i386/i486/sem_wait.S @@ -88,9 +88,9 @@ __new_sem_wait: popl %ebx ret .size __new_sem_wait,.-__new_sem_wait - .symver __new_sem_wait, sem_wait@@GLIBC_2.1 + versioned_symbol(libpthread, __new_sem_wait, sem_wait, GLIBC_2_1) #if SHLIB_COMPAT(libpthread, GLIBC_2_0, GLIBC_2_1) .global __old_sem_wait __old_sem_wait = __new_sem_wait - .symver __old_sem_wait, sem_wait@GLIBC_2.0 + compat_symbol(libpthread, __old_sem_wait, sem_wait, GLIBC_2_0) #endif