mirror of git://sourceware.org/git/glibc.git
Update.
* Makefile (install): Correct passing -r parameter to ldconfig.
This commit is contained in:
parent
ce75c139ac
commit
03c0d6ef17
|
@ -1,5 +1,7 @@
|
||||||
2000-01-12 Ulrich Drepper <drepper@cygnus.com>
|
2000-01-12 Ulrich Drepper <drepper@cygnus.com>
|
||||||
|
|
||||||
|
* Makefile (install): Correct passing -r parameter to ldconfig.
|
||||||
|
|
||||||
* iconvdata/gconv-modules: Add aliases ISO-IR-199 and ISO-IR-203.
|
* iconvdata/gconv-modules: Add aliases ISO-IR-199 and ISO-IR-203.
|
||||||
Reported by Bruno Haible <haible@ilog.fr>.
|
Reported by Bruno Haible <haible@ilog.fr>.
|
||||||
|
|
||||||
|
|
5
Makefile
5
Makefile
|
@ -1,4 +1,4 @@
|
||||||
# Copyright (C) 1991,92,93,94,95,96,97,98,99 Free Software Foundation, Inc.
|
# Copyright (C) 1991-1999, 2000 Free Software Foundation, Inc.
|
||||||
# This file is part of the GNU C Library.
|
# This file is part of the GNU C Library.
|
||||||
|
|
||||||
# The GNU C Library is free software; you can redistribute it and/or
|
# The GNU C Library is free software; you can redistribute it and/or
|
||||||
|
@ -106,7 +106,8 @@ install-symbolic-link: subdir_install
|
||||||
|
|
||||||
install:
|
install:
|
||||||
-test ! -x $(common-objpfx)elf/ldconfig || \
|
-test ! -x $(common-objpfx)elf/ldconfig || \
|
||||||
$(common-objpfx)elf/ldconfig -r $(install_root) $(inst_slibdir) $(inst_libdir)
|
$(common-objpfx)elf/ldconfig $(addprefix -r ,$(install_root)) \
|
||||||
|
$(inst_slibdir) $(inst_libdir)
|
||||||
ifneq (no,$(PERL))
|
ifneq (no,$(PERL))
|
||||||
ifeq (/usr,$(prefix))
|
ifeq (/usr,$(prefix))
|
||||||
ifeq (,$(install_root))
|
ifeq (,$(install_root))
|
||||||
|
|
|
@ -1,3 +1,20 @@
|
||||||
|
2000-01-12 Ulrich Drepper <drepper@cygnus.com>
|
||||||
|
|
||||||
|
* internals.h (pthread_readlock_info): New structure.
|
||||||
|
(_pthread_descr_struct): Add p_readlock_list, p_readlock_free, and
|
||||||
|
p_untracked_readlock_count.
|
||||||
|
* pthread.c (__pthread_initial_thread, pthread_manager_thread):
|
||||||
|
Add initializers for new fields.
|
||||||
|
* manager.c (pthread_free): Free read/write lock lists.
|
||||||
|
* queue.h (queue_is_empty): New function.
|
||||||
|
* rwlock.c: Implement requirements about when readers should get
|
||||||
|
locks assigned.
|
||||||
|
* sysdeps/pthread/pthread.h
|
||||||
|
(PTHREAD_RWLOCK_PREFER_WRITER_NONRECURSIVE_NP): New definition.
|
||||||
|
* sysdeps/pthread/bits/pthreadtypes.h (struct _pthread_rwlock_t):
|
||||||
|
Define this name as well.
|
||||||
|
Patches by Kaz Kylheku <kaz@ashi.footprints.net>.
|
||||||
|
|
||||||
2000-01-05 Ulrich Drepper <drepper@cygnus.com>
|
2000-01-05 Ulrich Drepper <drepper@cygnus.com>
|
||||||
|
|
||||||
* pthread.c (__pthread_initial_thread, pthread_manager_thread):
|
* pthread.c (__pthread_initial_thread, pthread_manager_thread):
|
||||||
|
|
|
@ -1,3 +1,8 @@
|
||||||
|
2000-01-12 Ulrich Drepper <drepper@cygnus.com>
|
||||||
|
|
||||||
|
* charmaps/ISO-8859-16: Add mapping for /xba.
|
||||||
|
Reported by Bruno Haible <haible@ilog.fr>.
|
||||||
|
|
||||||
2000-01-05 Ulrich Drepper <drepper@cygnus.com>
|
2000-01-05 Ulrich Drepper <drepper@cygnus.com>
|
||||||
|
|
||||||
* tst-trans.sh: Add directory names to charmap and repertoire file
|
* tst-trans.sh: Add directory names to charmap and repertoire file
|
||||||
|
|
Loading…
Reference in New Issue