diff options
author | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2015-05-07 00:10:50 +0200 |
---|---|---|
committer | Samuel Thibault <samuel.thibault@ens-lyon.org> | 2015-05-07 00:10:50 +0200 |
commit | 9aa597d0457d265b9bbdc213de67a8ce9e30f60a (patch) | |
tree | 5ab8af14fe2889b3761b6b9e4e0c9932bf784825 /pthread/pt-internal.h | |
parent | 5f7caa161f5e190c058166dc0ddccae64a258f28 (diff) |
Fix build with glibc < 2.21
* pthread/pt-internal.h: Use IS_IN_libpthread instead of IS_IN (libpthread).
Diffstat (limited to 'pthread/pt-internal.h')
-rw-r--r-- | pthread/pt-internal.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/pthread/pt-internal.h b/pthread/pt-internal.h index f40dd4a..ec8daed 100644 --- a/pthread/pt-internal.h +++ b/pthread/pt-internal.h @@ -35,7 +35,7 @@ #include <pt-sysdep.h> #include <pt-machdep.h> -#if IS_IN (libpthread) +#ifdef IS_IN_libpthread # include <ldsodefs.h> #endif |