1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44
|
# DP: Description: Enable ldconfig and such on hurd-i386
# DP: Author: Jeff Bailey <jbailey@nisa.net>
# 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
---
elf/ldconfig.c | 4 ++++
sysdeps/mach/hurd/configure | 2 ++
sysdeps/mach/hurd/configure.ac | 2 ++
3 files changed, 8 insertions(+)
--- a/sysdeps/mach/hurd/configure
+++ b/sysdeps/mach/hurd/configure
@@ -49,3 +49,5 @@
# Hurd has libpthread as a separate library.
pthread_in_libc=no
+
+use_ldconfig=yes
--- a/sysdeps/mach/hurd/configure.ac
+++ b/sysdeps/mach/hurd/configure.ac
@@ -29,3 +29,5 @@
# Hurd has libpthread as a separate library.
pthread_in_libc=no
+
+use_ldconfig=yes
--- a/elf/ldconfig.c
+++ b/elf/ldconfig.c
@@ -66,6 +66,10 @@
#define PACKAGE _libc_intl_domainname
+#ifndef PATH_MAX
+#define PATH_MAX 1024
+#endif
+
static const struct
{
const char *name;
|