about summary refs log tree commit diff
path: root/ports/sysdeps/unix/sysv/linux/mips
diff options
context:
space:
mode:
authorThomas Schwinge <thomas@codesourcery.com>2013-05-26 20:58:06 +0200
committerThomas Schwinge <thomas@codesourcery.com>2013-08-29 12:22:17 +0200
commitc54290cf086940e3859b236d0fb880bacab2288b (patch)
tree66a48e6382f61753f8b35788689c105bd79ccc28 /ports/sysdeps/unix/sysv/linux/mips
parent0007fc9bdd1d9efcd52d07837f2cd085b5a8f58b (diff)
downloadglibc-c54290cf086940e3859b236d0fb880bacab2288b.tar.gz
glibc-c54290cf086940e3859b236d0fb880bacab2288b.tar.xz
glibc-c54290cf086940e3859b236d0fb880bacab2288b.zip
Use ELFOSABI_GNU instead of ELFOSABI_LINUX.
Diffstat (limited to 'ports/sysdeps/unix/sysv/linux/mips')
-rw-r--r--ports/sysdeps/unix/sysv/linux/mips/ldsodefs.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/ports/sysdeps/unix/sysv/linux/mips/ldsodefs.h b/ports/sysdeps/unix/sysv/linux/mips/ldsodefs.h
index eb45f7229a..76c38c8d29 100644
--- a/ports/sysdeps/unix/sysv/linux/mips/ldsodefs.h
+++ b/ports/sysdeps/unix/sysv/linux/mips/ldsodefs.h
@@ -30,11 +30,11 @@ extern void _dl_static_init (struct link_map *map);
 #define DL_STATIC_INIT(map) _dl_static_init (map)
 
 /* Allow ABIVERSION == 1, meaning PLTs and copy relocations are
-   required, with ELFOSABI_SYSV.  */
+   required, with ELFOSABI_SYSV, and ELFOSABI_GNU.  */
 #undef VALID_ELF_ABIVERSION
 #define VALID_ELF_ABIVERSION(osabi,ver)			\
   (ver == 0						\
    || (osabi == ELFOSABI_SYSV && ver < 2)		\
-   || (osabi == ELFOSABI_LINUX && ver < LIBC_ABI_MAX))
+   || (osabi == ELFOSABI_GNU && ver < LIBC_ABI_MAX))
 
 #endif /* ldsodefs.h */