git: 076a4dc59b2b - main - rtld-elf: Remove _PATH_ELF32_HINTS and _COMPAT32_PATH_RTLD
- Go to: [ bottom of page ] [ top of archives ] [ this month ]
Date: Sun, 09 Jul 2023 17:52:14 UTC
The branch main has been updated by jrtc27:
URL: https://cgit.FreeBSD.org/src/commit/?id=076a4dc59b2baec42e395064da3bbdb2c5be6ad7
commit 076a4dc59b2baec42e395064da3bbdb2c5be6ad7
Author: Jessica Clarke <jrtc27@FreeBSD.org>
AuthorDate: 2023-07-09 17:50:30 +0000
Commit: Jessica Clarke <jrtc27@FreeBSD.org>
CommitDate: 2023-07-09 17:50:30 +0000
rtld-elf: Remove _PATH_ELF32_HINTS and _COMPAT32_PATH_RTLD
These are no longer referenced, with the one user of each now using the
double-underscore version with "32" as an argument instead.
Reviewed by: kib, brooks, jhb
Differential Revision: https://reviews.freebsd.org/D40935
---
libexec/rtld-elf/rtld_paths.h | 8 --------
1 file changed, 8 deletions(-)
diff --git a/libexec/rtld-elf/rtld_paths.h b/libexec/rtld-elf/rtld_paths.h
index fd61da4507ee..35f30b1d831b 100644
--- a/libexec/rtld-elf/rtld_paths.h
+++ b/libexec/rtld-elf/rtld_paths.h
@@ -87,14 +87,6 @@
#define TOKEN_LIB "lib" _RTLD_COMPAT_LIB_SUFFIX
#endif
-#ifndef _PATH_ELF32_HINTS
-#define _PATH_ELF32_HINTS __PATH_ELF_HINTS("32")
-#endif
-
-#ifndef _COMPAT32_PATH_RTLD
-#define _COMPAT32_PATH_RTLD __PATH_RTLD("32")
-#endif
-
#ifdef IN_RTLD
extern const char *ld_elf_hints_default;
extern const char *ld_path_libmap_conf;