mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-08 14:20:07 +00:00
0a61487785
1998-02-17 15:10 Ulrich Drepper <drepper@cygnus.com> * elf/dl-load.c (open_path): Use __xstat instead of stat. * localedata/tst-locale.sh: Comment out first test for now. 1998-02-14 14:58 H.J. Lu <hjl@gnu.org> * sysdeps/generic/_G_config.h (_G_HAVE_IO_GETLINE_INFO): Defined as 1. * sysdeps/unix/sysv/linux/_G_config.h (_G_HAVE_IO_GETLINE_INFO): Likewise. * libio/iogetline.c (_IO_getline_info): Renamed from _IO_getline. (_IO_getline): Just call _IO_getline_info. * libio/libioP.h (_IO_getline_info): New declaration. * libc.map (_IO_getline_info, __write): Added. 1998-02-17 Andreas Jaeger <aj@arthur.rhein-neckar.de> * sunrpc/rpc_cout.c (inline_struct): Change typo of plus to const char* to shut up gcc. 1998-02-17 11:37 Ulrich Drepper <drepper@cygnus.com> * eld/dl-open.c (_dl_open): Assign correct value to new->l_global. Patch forwarded by Cristian Gafton <gafton@redhat.com>. * math/math.h: Define M_* constants always as `double' and add new macros M_*l which are of type `long double'. * sysdeps/libm-ieee754/s_cacoshl.c: Use M_*l constants now. * sysdeps/libm-ieee754/s_cacosl.c: Likewise. * sysdeps/libm-ieee754/s_casinhl.c: Likewise. * sysdeps/libm-ieee754/s_catanhl.c: Likewise. * sysdeps/libm-ieee754/s_catanl.c: Likewise. * sysdeps/libm-ieee754/s_clog10l.c: Likewise. * sysdeps/libm-ieee754/s_clogl.c: Likewise. * math/libm-tst.c: Likewise. * sysdeps/i386/fpu/bits/mathinline.h (__M_SQRT2): Don't use _Mdbl, define as long double unconditionally. 1998-02-17 Andreas Jaeger <aj@arthur.rhein-neckar.de> * manual/arith.texi (Old-style number conversion): Correct some typos. 1998-02-16 16:28 H.J. Lu <hjl@gnu.org> * time/Makefile (tz-cflags, CFLAGS-tzfile.c, CFLAGS-tzset.c): Restore. * timezone/Makefile (CFLAGS-tzfile.c, CFLAGS-tzset.c): Deleted.
67 lines
2.5 KiB
Makefile
67 lines
2.5 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
|
|
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)
|
|
|
|
# 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))
|
|
tests: $(objpfx)collate-test $(objpfx)xfrm-test $(objpfx)tst-fmon
|
|
$(SHELL) -e sort-test.sh $(common-objpfx) $(test-input)
|
|
$(SHELL) -e tst-fmon.sh $(common-objpfx) tst-fmon.data
|
|
$(SHELL) -e tst-locale.sh $(common-objpfx)
|
|
endif
|