mirror of
git://sourceware.org/git/glibc.git
synced 2025-02-23 13:09:58 +08:00
memset: fix define usage for shared libs
The proper define to check "am I in a shared lib" is "SHARED", not "PIC". The two new memset_chk functions incorrectly depend on "PIC". Signed-off-by: Mike Frysinger <vapier@gentoo.org>
This commit is contained in:
parent
5ed848f3d8
commit
1e4920e080
@ -1,3 +1,8 @@
|
||||
2012-04-07 Mike Frysinger <vapier@gentoo.org>
|
||||
|
||||
* sysdeps/i386/i686/memset_chk.S: Change PIC to SHARED.
|
||||
* sysdeps/x86_64/memset_chk.S: Likewise.
|
||||
|
||||
2012-04-07 David S. Miller <davem@davemloft.net>
|
||||
|
||||
* elf/elf.h (R_SPARC_WDISP10): Define.
|
||||
|
@ -19,7 +19,7 @@
|
||||
#include <sysdep.h>
|
||||
#include "asm-syntax.h"
|
||||
|
||||
#ifndef PIC
|
||||
#ifndef SHARED
|
||||
/* For libc.so this is defined in memset.S.
|
||||
For libc.a, this is a separate source to avoid
|
||||
memset bringing in __chk_fail and all routines
|
||||
|
@ -19,7 +19,7 @@
|
||||
#include <sysdep.h>
|
||||
#include "asm-syntax.h"
|
||||
|
||||
#ifndef PIC
|
||||
#ifndef SHARED
|
||||
/* For libc.so this is defined in memset.S.
|
||||
For libc.a, this is a separate source to avoid
|
||||
memset bringing in __chk_fail and all routines
|
||||
|
Loading…
Reference in New Issue
Block a user