mirror of
https://sourceware.org/git/glibc.git
synced 2024-12-22 19:00:07 +00:00
9afc8a5964
1998-03-30 12:53 Ulrich Drepper <drepper@cygnus.com> * sysdeps/i386/i486/bits/string.h (__strcat_c) [__i686__]: Correct scanning for \0. (__strncat_g): Add i686 specific code. 1998-03-30 Andreas Jaeger <aj@arthur.rhein-neckar.de> * manual/install.texi (Reporting Bugs): Ask to include section names in reports. 1998-03-28 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de> * sysdeps/unix/sysv/linux/Makefile ($(objpfx)syscall-%.h): Emit guard against direct inclusion. 1998-03-28 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de> Rework support for libc_nonshared.a: * Makeconfig (object-suffixes-for-libc): New variable. * Rules: Remove handling of static-only and shared-only routines. * Makerules: Handle them here instead. Use object-suffixes-for-libc instead of object-suffixes when dealing with libc objects. (object-suffixes-for-rules): Remove variable. (elide-routines.oS): Elide all routines except static-only routines. ($(objpfx)stamp.oS): Special rule for when static-only-routines is empty. (installed-libcs): Remove special case for .oS. (rmobjs): Likewise. 1998-03-28 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de> * Makefile (do-collate-test, do-xfrm-test, do-tst-fmon, do-tst-rpmatch): New targets. (test): Use them. (install-locales): Ignore comment lines. 1998-03-28 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de> * elf/Makefile ($(objpfx)ld.so): Depend on version script. ($(objpfx)trusted-dirs.h): Depend also on $(..)Makeconfig. ($(objpfx)rtldtbl.h): Likewise. (CPPFLAGS-dl-load.c): Fix reference to object directory. 1998-03-30 09:36 Ulrich Drepper <drepper@cygnus.com> * manual/string.texi (Finding Tokens in a String): Extend strsep description and correct example. 1998-03-28 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de> * manual/socket.texi: Remove misguided explicit line breaks and fix the formatting problem instead by reformulating the paragraphs. * manual/filesys.texi: Likewise. * manual/conf.texi: Likewise. Don't typeset table with index fonts, that looks worse than a minimally overfull line. 1998-03-28 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de> * nscd/Makefile (nscd-modules): Move definition outside of conditional. * pwd/Makefile: Use have-thread-library to test for thread library. 1998-03-30 Andreas Jaeger <aj@arthur.rhein-neckar.de> * nss/getXXent_r.c (INTERNAL): Remove unused variable current_nip. * iconvdata/uhc.c (gconv): Remove unused variable idx. 1998-03-30 Ulrich Drepper <drepper@cygnus.com> * sysdeps/unix/sysv/linux/Dist: Add lddlibc4.c.
86 lines
3.2 KiB
Makefile
86 lines
3.2 KiB
Makefile
# Copyright (C) 1996, 1997, 1998 Free Software Foundation, Inc.
|
|
# This file is part of the GNU C Library.
|
|
|
|
# The GNU C Library is free software; you can redistribute it and/or
|
|
# modify it under the terms of the GNU Library General Public License
|
|
# as published by the Free Software Foundation; either version 2 of
|
|
# the License, or (at your option) any later version.
|
|
|
|
# The GNU C Library is distributed in the hope that it will be useful,
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
# Library General Public License for more details.
|
|
|
|
# You should have received a copy of the GNU Library General Public
|
|
# License along with the GNU C Library; see the file COPYING.LIB. If not,
|
|
# write to the Free Software Foundation, Inc., 59 Temple Place - Suite 330,
|
|
# Boston, MA 02111-1307, USA.
|
|
|
|
# Makefile for installing locale data source files.
|
|
|
|
subdir := localedata
|
|
|
|
all: # Make this the default target; it will be defined in Rules.
|
|
|
|
# List with all available character set descriptions.
|
|
charmaps := $(filter-out $(addprefix charmaps/, CVS RCS %~), \
|
|
$(wildcard charmaps/*))
|
|
|
|
# List with all available character set descriptions.
|
|
locales := $(filter-out $(addprefix locales/, CVS RCS %~), \
|
|
$(wildcard locales/*))
|
|
|
|
test-srcs := collate-test xfrm-test tst-fmon tst-rpmatch
|
|
test-input := de_DE.ISO-8859-1 da_DK.ISO-8859-1 fr_CA,2.13.ISO-8859-1
|
|
test-output := $(foreach s, .out .xout, \
|
|
$(addsuffix $s, $(basename $(test-input))))
|
|
generated := $(test-input) $(test-output)
|
|
generated-dirs := $(basename $(test-input)) en_US
|
|
|
|
ld-test-names := test1 test2 test3 test4
|
|
ld-test-srcs := $(addprefix tests/,$(addsuffix .cm,$(ld-test-names)) \
|
|
$(addsuffix .def,$(ld-test-names)))
|
|
|
|
distribute := CHECKSUMS tst-fmon.sh tst-fmon.data ChangeLog sort-test.sh \
|
|
README mnemonic.ds fr_CA,2.13.in de_DE.in da_DK.in \
|
|
$(charmaps) $(locales) $(ld-test-srcs) tst-rpmatch.sh \
|
|
SUPPORTED tst-locale.sh
|
|
|
|
# Get $(inst_i18ndir) defined.
|
|
include ../Makeconfig
|
|
|
|
# Files to install.
|
|
install-others := $(addprefix $(inst_i18ndir)/, $(charmaps) $(locales))
|
|
|
|
include ../Rules
|
|
|
|
# Install the source files in the appropriate directories.
|
|
$(inst_i18ndir)/charmaps/%: charmaps/%; $(do-install)
|
|
$(inst_i18ndir)/locales/%: locales/%; $(do-install)
|
|
|
|
|
|
ifeq (no,$(cross-compiling))
|
|
.PHONY: do-collate-test do-xfrm-test do-tst-fmon do-tst-rpmatch
|
|
tests: do-collate-test do-xfrm-test do-tst-fmon do-tst-rpmatch
|
|
do-collate-test: sort-test.sh $(objpfx)collate-test $(test-input)
|
|
$(SHELL) -e $< $(common-objpfx) $(test-input)
|
|
do-xfrm-test: tst-fmon.sh $(objpfx)xfrm-test tst-fmon.data
|
|
$(SHELL) -e $< $(common-objpfx) tst-fmon.data
|
|
do-tst-fmon: tst-locale.sh $(objpfx)tst-fmon $(ld-test-srcs)
|
|
$(SHELL) -e $< $(common-objpfx)
|
|
do-tst-rpmatch: tst-rpmatch.sh $(objpfx)tst-rpmatch
|
|
$(SHELL) -e $< $(common-objpfx)
|
|
endif
|
|
|
|
# Sometimes the whole collection of locale files should be installed.
|
|
ifneq ($(install_root),)
|
|
LOCALEDEF=chroot $(install_root) $(bindir)/localedef
|
|
else
|
|
LOCALEDEF=$(common-objpfx)locale/localedef
|
|
endif
|
|
install-locales:
|
|
while read locale charset; do \
|
|
case $$locale in \#*) continue;; esac; \
|
|
$(LOCALEDEF) -c -i $$locale -f $$charset $$locale; \
|
|
done < SUPPORTED
|