~vcs-imports/eglibc/trunk

« back to all changes in this revision

Viewing changes to libc/ports/sysdeps/unix/sysv/linux/mips/ldsodefs.h

  • Committer: joseph
  • Date: 2013-09-05 22:41:05 UTC
  • Revision ID: svn-v4:7b3dc134-2b1b-0410-93df-9e9f96275f8d:trunk:23928
Merge changes between r23795 and r23927 from /fsf/trunk.

Show diffs side-by-side

added added

removed removed

Lines of Context:
30
30
#define DL_STATIC_INIT(map) _dl_static_init (map)
31
31
 
32
32
/* Allow ABIVERSION == 1, meaning PLTs and copy relocations are
33
 
   required, with ELFOSABI_SYSV.  */
 
33
   required, with ELFOSABI_SYSV, and ELFOSABI_GNU.  */
34
34
#undef VALID_ELF_ABIVERSION
35
35
#define VALID_ELF_ABIVERSION(osabi,ver)                 \
36
36
  (ver == 0                                             \
37
37
   || (osabi == ELFOSABI_SYSV && ver < 2)               \
38
 
   || (osabi == ELFOSABI_LINUX && ver < LIBC_ABI_MAX))
 
38
   || (osabi == ELFOSABI_GNU && ver < LIBC_ABI_MAX))
39
39
 
40
40
#endif /* ldsodefs.h */