2.9
[glibc/nacl-glibc.git] / sysdeps / unix / sysv / linux / i386 / dl-librecon.h
blob9f520315183f891e13751a60339d331e649b6db6
1 /* Optional code to distinguish library flavours.
2 Copyright (C) 1998, 2001, 2002, 2003, 2004 Free Software Foundation, Inc.
3 This file is part of the GNU C Library.
4 Contributed by Ulrich Drepper <drepper@cygnus.com>, 1998.
6 The GNU C Library is free software; you can redistribute it and/or
7 modify it under the terms of the GNU Lesser General Public
8 License as published by the Free Software Foundation; either
9 version 2.1 of the License, or (at your option) any later version.
11 The GNU C Library is distributed in the hope that it will be useful,
12 but WITHOUT ANY WARRANTY; without even the implied warranty of
13 MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
14 Lesser General Public License for more details.
16 You should have received a copy of the GNU Lesser General Public
17 License along with the GNU C Library; if not, write to the Free
18 Software Foundation, Inc., 59 Temple Place, Suite 330, Boston, MA
19 02111-1307 USA. */
21 #ifndef _DL_LIBRECON_H
23 #include <sysdeps/unix/sysv/linux/dl-librecon.h>
25 #define DISTINGUISH_LIB_VERSIONS \
26 do \
27 { \
28 /* We have to find out whether the binary is linked against \
29 libc 5 or glibc. We do this by looking at all the DT_NEEDED \
30 entries. If one is libc.so.5 this is a libc 5 linked binary. */ \
31 if (main_map->l_info[DT_NEEDED]) \
32 { \
33 /* We have dependencies. */ \
34 const ElfW(Dyn) *d; \
35 const char *strtab; \
37 strtab = (const char *) D_PTR (main_map, l_info[DT_STRTAB]); \
39 for (d = main_map->l_ld; d->d_tag != DT_NULL; ++d) \
40 if (d->d_tag == DT_NEEDED \
41 && strcmp (strtab + d->d_un.d_val, "libc.so.5") == 0) \
42 break; \
44 /* We print a `5' or `6' depending on the outcome. */ \
45 _dl_printf (d->d_tag != DT_NULL ? "5\n" : "6\n"); \
46 } \
47 } \
48 while (0)
50 /* Recognizing extra environment variables. */
51 #define EXTRA_LD_ENVVARS \
52 case 15: \
53 if (memcmp (envline, "LIBRARY_VERSION", 15) == 0) \
54 GLRO(dl_correct_cache_id) = envline[16] == '5' ? 2 : 3; \
55 break; \
57 /* Extra unsecure variables. The names are all stuffed in a single
58 string which means they have to be terminated with a '\0' explicitly. */
59 #define EXTRA_UNSECURE_ENVVARS \
60 "LD_AOUT_LIBRARY_PATH\0" \
61 "LD_AOUT_PRELOAD\0"
63 #endif /* dl-librecon.h */