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 /config.make.in | |
parent | 589328764d60283e16442c9c9dcf818346356776 (diff) | |
download | glibc-591e1ffbf8db5e059b9bcf3bde6d7758f018a46d.tar.gz |
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 'config.make.in')
-rw-r--r-- | config.make.in | 5 |
1 files changed, 2 insertions, 3 deletions
diff --git a/config.make.in b/config.make.in index 4ba8143f4d..06585d2259 100644 --- a/config.make.in +++ b/config.make.in @@ -15,9 +15,8 @@ sysconfdir = @libc_cv_sysconfdir@ libexecdir = @libexecdir@ rootsbindir = @libc_cv_rootsbindir@ -# If ldconfig exists. This will go away as soon as `ldconfig' is available -# in GNU libc. -has-ldconfig = @has_ldconfig@ +# Should we use and build ldconfig? +use-ldconfig = @use_ldconfig@ # Maybe the `ldd' script must be rewritten. ldd-rewrite-script = @ldd_rewrite_script@ |