]> CyberLeo.Net >> Repos - FreeBSD/FreeBSD.git/blob - libexec/rtld-elf/paths.h
MFV r289003:
[FreeBSD/FreeBSD.git] / libexec / rtld-elf / paths.h
1 /*-
2  * Copyright 1996, 1997, 1998, 1999, 2000 John D. Polstra.
3  * Copyright 2003 Alexander Kabaev <kan@FreeBSD.ORG>.
4  * Copyright 2009-2012 Konstantin Belousov <kib@FreeBSD.ORG>.
5  * Copyright 2012 John Marino <draco@marino.st>.
6  * All rights reserved.
7  *
8  * Redistribution and use in source and binary forms, with or without
9  * modification, are permitted provided that the following conditions
10  * are met:
11  * 1. Redistributions of source code must retain the above copyright
12  *    notice, this list of conditions and the following disclaimer.
13  * 2. Redistributions in binary form must reproduce the above copyright
14  *    notice, this list of conditions and the following disclaimer in the
15  *    documentation and/or other materials provided with the distribution.
16  *
17  * THIS SOFTWARE IS PROVIDED BY THE AUTHOR ``AS IS'' AND ANY EXPRESS OR
18  * IMPLIED WARRANTIES, INCLUDING, BUT NOT LIMITED TO, THE IMPLIED WARRANTIES
19  * OF MERCHANTABILITY AND FITNESS FOR A PARTICULAR PURPOSE ARE DISCLAIMED.
20  * IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR ANY DIRECT, INDIRECT,
21  * INCIDENTAL, SPECIAL, EXEMPLARY, OR CONSEQUENTIAL DAMAGES (INCLUDING, BUT
22  * NOT LIMITED TO, PROCUREMENT OF SUBSTITUTE GOODS OR SERVICES; LOSS OF USE,
23  * DATA, OR PROFITS; OR BUSINESS INTERRUPTION) HOWEVER CAUSED AND ON ANY
24  * THEORY OF LIABILITY, WHETHER IN CONTRACT, STRICT LIABILITY, OR TORT
25  * (INCLUDING NEGLIGENCE OR OTHERWISE) ARISING IN ANY WAY OUT OF THE USE OF
26  * THIS SOFTWARE, EVEN IF ADVISED OF THE POSSIBILITY OF SUCH DAMAGE.
27  *
28  * $FreeBSD$
29  */
30
31 #ifndef PATHS_H
32 #define PATHS_H
33
34 #undef _PATH_ELF_HINTS
35
36 #ifdef COMPAT_32BIT
37 #define _PATH_ELF_HINTS         "/var/run/ld-elf32.so.hints"
38 #define _PATH_LIBMAP_CONF       "/etc/libmap32.conf"
39 #define _PATH_RTLD              "/libexec/ld-elf32.so.1"
40 #define STANDARD_LIBRARY_PATH   "/lib32:/usr/lib32"
41 #define LD_                     "LD_32_"
42 #endif
43
44 #ifndef _PATH_ELF_HINTS
45 #define _PATH_ELF_HINTS         "/var/run/ld-elf.so.hints"
46 #endif
47
48 #ifndef _PATH_LIBMAP_CONF
49 #define _PATH_LIBMAP_CONF       "/etc/libmap.conf"
50 #endif
51
52 #ifndef _PATH_RTLD
53 #define _PATH_RTLD              "/libexec/ld-elf.so.1"
54 #endif
55
56 #ifndef STANDARD_LIBRARY_PATH
57 #define STANDARD_LIBRARY_PATH   "/lib:/usr/lib"
58 #endif
59
60 #ifndef LD_
61 #define LD_                     "LD_"
62 #endif
63
64 extern char *ld_path_elf_hints;
65 extern char *ld_path_libmap_conf;
66 extern char *ld_path_rtld;
67 extern char *ld_standard_library_path;
68 extern char *ld_env_prefix;
69
70 #endif /* PATHS_H */