diff options
author | Andreas Schwab <schwab@suse.de> | 2014-07-31 12:46:14 +0200 |
---|---|---|
committer | Andreas Schwab <schwab@suse.de> | 2014-07-31 17:05:19 +0200 |
commit | 6c9578a24b5c4182d1c475a32a147478bc757bf3 (patch) | |
tree | e054a75fa04b39e43997e01593d955bfe39e418f /config.h.in | |
parent | 05f3633da4f9df870d04dd77336e793746e57ed4 (diff) | |
download | glibc-6c9578a24b5c4182d1c475a32a147478bc757bf3.tar.gz glibc-6c9578a24b5c4182d1c475a32a147478bc757bf3.tar.xz glibc-6c9578a24b5c4182d1c475a32a147478bc757bf3.zip |
Fix -Wundef warning for HAVE_IFUNC
Diffstat (limited to 'config.h.in')
-rw-r--r-- | config.h.in | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/config.h.in b/config.h.in index 97b5571a17..d612a04fe8 100644 --- a/config.h.in +++ b/config.h.in @@ -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 |