mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-21 20:40:05 +00:00
Fix -Wundef warning for HAVE_IFUNC
This commit is contained in:
parent
05f3633da4
commit
6c9578a24b
@ -1,3 +1,9 @@
|
||||
2014-07-31 Andreas Schwab <schwab@suse.de>
|
||||
|
||||
* config.h.in (HAVE_IFUNC): Define to 0.
|
||||
* rt/clock-compat.c [HAVE_IFUNC]: Check for value, not
|
||||
definedness.
|
||||
|
||||
2014-07-30 Ling Ma <ling.ml@alibaba-inc.com>
|
||||
|
||||
* sysdeps/x86_64/multiarch/Makefile (sysdep_routines): Add
|
||||
|
@ -194,8 +194,8 @@
|
||||
/* Define if the dynamic linker should consult an ld.so.cache file. */
|
||||
#undef USE_LDCONFIG
|
||||
|
||||
/* Define if STT_GNU_IFUNC support actually works. */
|
||||
#undef HAVE_IFUNC
|
||||
/* Define to 1 if STT_GNU_IFUNC support actually works. */
|
||||
#define HAVE_IFUNC 0
|
||||
|
||||
/* Define if linux/fanotify.h is available. */
|
||||
#undef HAVE_LINUX_FANOTIFY_H
|
||||
|
@ -27,7 +27,7 @@
|
||||
|
||||
#include <time.h>
|
||||
|
||||
#ifdef HAVE_IFUNC
|
||||
#if HAVE_IFUNC
|
||||
# define COMPAT_REDIRECT(name, proto, arglist) \
|
||||
__typeof (name) *name##_ifunc (void) asm (#name); \
|
||||
__typeof (name) *name##_ifunc (void) \
|
||||
|
Loading…
Reference in New Issue
Block a user