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
|
# 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
---
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
@@ -52,3 +52,4 @@
# 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
|