diff options
author | Ulrich Drepper <drepper@redhat.com> | 1999-12-04 08:00:00 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1999-12-04 08:00:00 +0000 |
commit | 591e1ffbf8db5e059b9bcf3bde6d7758f018a46d (patch) | |
tree | b5e9db8cae0b20da5dfceb7c8e4bd91f84e3ac74 /configure.in | |
parent | 589328764d60283e16442c9c9dcf818346356776 (diff) | |
download | glibc-591e1ffbf8db5e059b9bcf3bde6d7758f018a46d.tar.gz glibc-591e1ffbf8db5e059b9bcf3bde6d7758f018a46d.tar.xz glibc-591e1ffbf8db5e059b9bcf3bde6d7758f018a46d.zip |
Update.
1999-11-30 Andreas Jaeger <aj@suse.de> Add ldconfig: * elf/Makefile (extra-objs): Added ldconfig-modules. (ldconfig-modules): New. Added vpath for xstrdup and xmalloc. Check for use-ldconfig instead of has-ldconfig. ($(objpfx)ldconfig): New rule with dependencies. (distribute): Add new files. * sysdeps/unix/sysv/linux/sparc/readelflib.c: New file, developed together with Jakub Jelinek <jakub@redhat.com>. * sysdeps/generic/readelflib.c: Likewise. * elf/cache.c: New file. * elf/ldconfig.c: New file. * elf/ldconfig.h: New file. * elf/readlib.c: New file. * Makefile (install): Remove flag -d in ldconfig call. * configure.in: Rename has_ldconfig to use_ldconfig, set it to no by default. * config.make.in (has-ldconfig): Renamed to use-ldconfig, changed comment.
Diffstat (limited to 'configure.in')
-rw-r--r-- | configure.in | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/configure.in b/configure.in index d7ff75bdd0..6d86b68a8b 100644 --- a/configure.in +++ b/configure.in @@ -1168,6 +1168,7 @@ libc_link_dests= libc_link_sources= # They also can set these variables. +use_ldconfig=no ldd_rewrite_script=no # Iterate over all the sysdep directories we will use, running their @@ -1282,7 +1283,7 @@ AC_SUBST(libc_cv_slibdir) AC_SUBST(libc_cv_sysconfdir) AC_SUBST(libc_cv_rootsbindir) -AC_SUBST(has_ldconfig) +AC_SUBST(use_ldconfig) AC_SUBST(ldd_rewrite_script) AC_SUBST(gnu_ld) AC_SUBST(gnu_as) AC_SUBST(elf) |