From 1cd1d1b7994b7d103b1824eb9e9cfa19fa5dc858 Mon Sep 17 00:00:00 2001 From: GNU Libc Maintainers Date: Wed, 31 Jan 2024 21:45:37 +0100 Subject: [PATCH] local-enable-ldconfig # DP: Description: Enable ldconfig and such on hurd-i386 # DP: Author: Jeff Bailey # DP: Related Bugs: #309489 # DP: Upstream status: Not submitted # DP: Status Details: Upstream disagrees with this patch, but I'm # DP: putting it in so that we have expected Debian behaviour on the # DP: Hurd. We should review this when the ELF standard supports runpath. # DP: Date: 08 Apr 2003 # DP: Description: Enable ldconfig and such on hurd-i386 # DP: Author: Jeff Bailey # DP: Related Bugs: #309489 # DP: Upstream status: Not submitted # DP: Status Details: Upstream disagrees with this patch, but I'm # DP: putting it in so that we have expected Debian behaviour on the # DP: Hurd. We should review this when the ELF standard supports runpath. # DP: Date: 08 Apr 2003 Gbp-Pq: Topic hurd-i386 Gbp-Pq: Name local-enable-ldconfig.diff --- elf/ldconfig.c | 4 ++++ sysdeps/mach/hurd/configure | 2 ++ sysdeps/mach/hurd/configure.ac | 2 ++ 3 files changed, 8 insertions(+) diff --git a/elf/ldconfig.c b/elf/ldconfig.c index 5b1c9139f..e5db83658 100644 --- a/elf/ldconfig.c +++ b/elf/ldconfig.c @@ -55,6 +55,10 @@ #define PACKAGE _libc_intl_domainname +#ifndef PATH_MAX +#define PATH_MAX 1024 +#endif + /* List of directories to handle. */ struct dir_entry { diff --git a/sysdeps/mach/hurd/configure b/sysdeps/mach/hurd/configure index 8d0702ad4..22af5c688 100644 --- a/sysdeps/mach/hurd/configure +++ b/sysdeps/mach/hurd/configure @@ -49,3 +49,5 @@ fi # Hurd has libpthread as a separate library. pthread_in_libc=no + +use_ldconfig=yes diff --git a/sysdeps/mach/hurd/configure.ac b/sysdeps/mach/hurd/configure.ac index 82d085af3..72df4f7ff 100644 --- a/sysdeps/mach/hurd/configure.ac +++ b/sysdeps/mach/hurd/configure.ac @@ -29,3 +29,5 @@ fi # Hurd has libpthread as a separate library. pthread_in_libc=no + +use_ldconfig=yes -- 2.30.2