mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-05 21:00:05 +00:00
a1d84548c8
2000-02-11 Ulrich Drepper <drepper@redhat.com> * stdio-common/printf-parse.h (parse_one_spec): Set wide elements. * stdio-common/printf_fp.c: Truely support wide characater output. Finally handle decimal points and thousands separator characters correctly for multibyte output. * stdio-common/printf_size.c: Likewise. * sysdeps/generic/printf_fphex.c: Likewise. * sysdeps/ieee754/ldbl-96/printf_fphex.c: Likewise. * stdio-common/vfscanf.c: Implement I modifier for numbers to read locale dependent digits. * locale/C-monetary.c (_nl_C_LC_MONETARY): Change wide character decimal point and thousands separator values to wide characters from wide character strings. * locale/C-numeric.c (_nl_C_LC_NUMERIC): Likewise. * locale/indigitswc.h: Dereference wcdigits array elements. 2000-02-03 Jakub Jelinek <jakub@redhat.com> * stdlib/canonicalize.c (canonicalize): Zero terminate path to copy on error. 2000-02-01 Cristian Gafton <gafton@redhat.com> * misc/syslog.c (closelog): Reset LogType to SOCK_DGRAM. 2000-01-31 Philip Blundell <philb@gnu.org> * sysdeps/arm/fpu/fpu_control.h (_FPU_DEFAULT): Set the AC bit. 2000-01-31 Andreas Jaeger <aj@suse.de> * intl/Makefile (generated): msgs.h is generated. * localedata/Makefile (generated-dirs): Add de_DE.437. 2000-01-31 Jakub Jelinek <jakub@redhat.com> * config.make.in: Allow default localedir to come from configure. * configure.in: Export libc_cv_localedir. * sysdeps/unix/sysv/linux/configure.in: For sparc64, put locale stuff into $exec_prefix/lib/locale because it can be shared between 32bit and 64bit libraries. * configure: Rebuilt. * sysdeps/unix/sysv/linux/configure: Rebuilt. 2000-01-31 Andreas Jaeger <aj@suse.de> * inet/tst-network.c: New file. * inet/Makefile (tests): Add tst-network. * inet/inet_net.c (inet_network): Don't overwrite memory or allow to great last digits.
102 lines
4.0 KiB
Makefile
102 lines
4.0 KiB
Makefile
# Copyright (C) 1996, 1997, 1998, 1999, 2000 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 SCCS %~), \
|
|
$(wildcard charmaps/[A-I]*) \
|
|
$(wildcard charmaps/[J-Z]*))
|
|
|
|
# List with all available character set descriptions.
|
|
locales := $(filter-out $(addprefix locales/, CVS RCS SCCS %~), \
|
|
$(wildcard locales/*))
|
|
|
|
# List of repertoire maps.
|
|
repertoiremaps := $(filter-out $(addprefix repertoiremaps/, CVS RCS SCCS %~), \
|
|
$(wildcard repertoiremaps/*))
|
|
|
|
test-srcs := collate-test xfrm-test tst-fmon tst-rpmatch tst-trans
|
|
test-input := de_DE.ISO-8859-1 da_DK.ISO-8859-1 fr_CA,2.13.ISO-8859-1 \
|
|
hr_HR.ISO-8859-2 # once it is fixed: cs_CZ.ISO-8859-2
|
|
test-input-data = $(addsuffix .in, $(basename $(test-input)))
|
|
test-output := $(foreach s, .out .xout, \
|
|
$(addsuffix $s, $(basename $(test-input))))
|
|
ld-test-names := test1 test2 test3 test4 test5
|
|
ld-test-srcs := $(addprefix tests/,$(addsuffix .cm,$(ld-test-names)) \
|
|
$(addsuffix .def,$(ld-test-names)))
|
|
|
|
generated := $(test-input) $(test-output)
|
|
generated-dirs := $(basename $(test-input)) en_US $(ld-test-names) tt_TT\
|
|
de_DE.437
|
|
|
|
distribute := CHECKSUMS README SUPPORTED ChangeLog \
|
|
$(charmaps) $(locales) $(repertoiremaps) \
|
|
tst-rpmatch.sh tst-locale.sh tst-fmon.sh sort-test.sh \
|
|
tst-fmon.data $(test-input-data) $(ld-test-srcs) \
|
|
th_TH.in cs_CZ.in
|
|
|
|
# Get $(inst_i18ndir) defined.
|
|
include ../Makeconfig
|
|
|
|
# Files to install.
|
|
install-others := $(addprefix $(inst_i18ndir)/, $(charmaps) $(locales) \
|
|
$(repertoiremaps))
|
|
|
|
include ../Rules
|
|
|
|
# Install the source files in the appropriate directories.
|
|
$(inst_i18ndir)/charmaps/%: charmaps/% $(+force); $(do-install)
|
|
$(inst_i18ndir)/locales/%: locales/% $(+force); $(do-install)
|
|
$(inst_i18ndir)/repertoiremaps/%: repertoiremaps/% $(+force); $(do-install)
|
|
|
|
|
|
ifeq (no,$(cross-compiling))
|
|
ifeq (yes,$(build-shared))
|
|
.PHONY: do-collate-test do-tst-fmon do-tst-locale do-tst-rpmatch do-tst-trans
|
|
tests: do-collate-test do-tst-fmon do-tst-locale do-tst-rpmatch do-tst-trans
|
|
do-collate-test: sort-test.sh $(objpfx)collate-test $(objpfx)xfrm-test \
|
|
$(test-input-data)
|
|
$(SHELL) -e $< $(common-objpfx) $(test-input)
|
|
do-tst-fmon: tst-fmon.sh $(objpfx)tst-fmon tst-fmon.data do-collate-test
|
|
$(SHELL) -e $< $(common-objpfx) tst-fmon.data
|
|
do-tst-locale: tst-locale.sh $(ld-test-srcs)
|
|
$(SHELL) -e $< $(common-objpfx)
|
|
do-tst-rpmatch: tst-rpmatch.sh $(objpfx)tst-rpmatch do-tst-fmon
|
|
$(SHELL) -e $< $(common-objpfx)
|
|
do-tst-trans: tst-trans.sh $(objpfx)tst-trans
|
|
$(SHELL) -e $< $(common-objpfx)
|
|
endif
|
|
endif
|
|
|
|
# Sometimes the whole collection of locale files should be installed.
|
|
LOCALEDEF=I18NPATH=. $(common-objpfx)elf/ld.so --library-path $(rpath-link) $(common-objpfx)locale/localedef
|
|
install-locales:
|
|
$(..)./scripts/mkinstalldirs $(inst_localedir)
|
|
while read locale charset; do \
|
|
case $$locale in \#*) continue;; esac; \
|
|
$(LOCALEDEF) -i locales/`echo $$locale | sed 's/\([^.]*\).*/\1/'` \
|
|
-c -f charmaps/$$charset \
|
|
-u repertoiremaps/mnemonic.ds \
|
|
$(inst_localedir)/$$locale; \
|
|
done < SUPPORTED
|