1997-01-20 02:49:49 +00:00
|
|
|
|
# Copyright (C) 1991, 92, 93, 94, 95, 96, 97 Free Software Foundation, Inc.
|
1995-02-18 01:27:10 +00:00
|
|
|
|
# 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
|
1997-01-20 02:49:49 +00:00
|
|
|
|
# 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.
|
1995-02-18 01:27:10 +00:00
|
|
|
|
|
|
|
|
|
dist:
|
|
|
|
|
|
1996-06-16 10:14:04 +00:00
|
|
|
|
# Make the value empty so ifdef fails if it's $(-subdir).
|
|
|
|
|
subdir := $(subdir)
|
1995-02-18 01:27:10 +00:00
|
|
|
|
ifdef subdir
|
|
|
|
|
.. := ../
|
|
|
|
|
else
|
|
|
|
|
.. :=
|
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
include $(..)Makeconfig
|
|
|
|
|
|
|
|
|
|
foo:=$(shell echo 'distribute=$(distribute)'>&2)
|
1996-10-12 00:56:05 +00:00
|
|
|
|
foo:=$(shell echo 'dont_distribute=$(dont_distribute)'>&2)
|
1995-02-18 01:27:10 +00:00
|
|
|
|
foo:=$(shell echo 'foobar=$(filter %.c %.S %.s %.h,$(distribute))'>&2)
|
|
|
|
|
|
|
|
|
|
ifndef sysdep_dirs
|
|
|
|
|
# Find all sysdep directories.
|
1996-06-07 04:36:10 +00:00
|
|
|
|
export sysdep_dirs := $(shell find $(..)sysdeps -type d \
|
|
|
|
|
! -name CVS ! -name RCS -print)
|
1995-02-18 01:27:10 +00:00
|
|
|
|
else
|
|
|
|
|
# Defined by the parent.
|
|
|
|
|
sysdep_dirs := $(addprefix $(..),$(sysdep_dirs))
|
|
|
|
|
endif
|
|
|
|
|
|
1996-09-10 02:00:15 +00:00
|
|
|
|
# Don't distribute add-on subdirs.
|
|
|
|
|
subdirs := $(filter-out $(add-ons),$(subdirs))
|
|
|
|
|
|
1996-06-07 20:37:41 +00:00
|
|
|
|
# Make sure both stdio and libio get in, whichever is in use.
|
|
|
|
|
subdirs += stdio libio
|
|
|
|
|
|
1995-02-18 01:27:10 +00:00
|
|
|
|
sysdep-Subdir-files := $(wildcard $(addsuffix /Subdirs,$(sysdep_dirs)))
|
|
|
|
|
ifdef sysdep-Subdir-files
|
|
|
|
|
subdirs := $(sort $(subdirs) \
|
|
|
|
|
$(shell sed -e 's/\#.*$$//' $(sysdep-Subdir-files)))
|
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# Makefiles can define `source_dirs' to list nonstandard directories
|
|
|
|
|
# where source files might be found.
|
|
|
|
|
|
|
|
|
|
ifdef subdir
|
* time/tzfile.h, time/private.h, time/zdump.c, time/zic.c,
time/africa, time/asia, time/australasia, time/europe,
time/northamerica, time/southamerica: Updated from ADO 96h.
* Make-dist (all-headers): Filter $(sysdep_headers) out of $(headers).
(try-sysdeps, +sysdep-names): Check sysdeps/libm-ieee754 too.
* Makerules (distinfo-vars): Add sysdep_headers.
* sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Append to
this instead of $(headers).
* sysdeps/unix/sysv/linux/alpha/Makefile: Likewise.
* Make-dist [subdirs-dirs]: Don't prefix $(subdir-dirs) with
$(subdir); we are already there.
* sysdeps/unix/sysv/sysv4/solaris2/sparc/Dist: Removed.
1996-06-05 23:25:04 +00:00
|
|
|
|
all-headers = $(filter-out $(sysdep_headers),$(headers))
|
1995-02-18 01:27:10 +00:00
|
|
|
|
else
|
|
|
|
|
+distinfo := $(shell MAKEFLAGS= MFLAGS= $(MAKE) -s no_deps=t \
|
|
|
|
|
inhibit_interface_rules=t inhibit_mach_syscalls=t \
|
|
|
|
|
subdirs='$(subdirs)' echo-distinfo | grep -v '^make')
|
|
|
|
|
foo:=$(shell echo>&2 '+distinfo=$(+distinfo)')
|
|
|
|
|
all-headers := $(patsubst +header+%,%,$(filter +header+%,$(+distinfo)))
|
|
|
|
|
# Ignore subdir headers without top-level indirections.
|
|
|
|
|
all-headers := $(sort $(headers) $(wildcard $(all-headers)))
|
|
|
|
|
+subdir-nodist := $(patsubst +nodist+%,%,$(filter +nodist+%,$(+distinfo)))
|
|
|
|
|
+subdir-headers := $(filter-out $(headers),$(all-headers))
|
|
|
|
|
endif
|
|
|
|
|
foo:=$(shell echo 'IS THIS WORKING??? all-headers=$(all-headers)' >&2)
|
|
|
|
|
|
1996-06-06 06:05:11 +00:00
|
|
|
|
sources += $(addsuffix .c,$(elided-routines) \
|
|
|
|
|
$(foreach l,$(extra-libs),$($l-routines)))
|
|
|
|
|
|
1995-02-18 01:27:10 +00:00
|
|
|
|
# Find all sysdep sources and headers.
|
|
|
|
|
+maybe-sysdeps := $(sources) $(sources:.c=.s) $(sources:.c=.S) $(all-headers) \
|
|
|
|
|
$(filter %.c %.S %.s %.h %.sub,$(distribute))
|
|
|
|
|
foo:=$(shell echo '+maybe-sysdeps=$(+maybe-sysdeps)'>&2)
|
|
|
|
|
# Find all the files that have a stub or generic version.
|
* time/tzfile.h, time/private.h, time/zdump.c, time/zic.c,
time/africa, time/asia, time/australasia, time/europe,
time/northamerica, time/southamerica: Updated from ADO 96h.
* Make-dist (all-headers): Filter $(sysdep_headers) out of $(headers).
(try-sysdeps, +sysdep-names): Check sysdeps/libm-ieee754 too.
* Makerules (distinfo-vars): Add sysdep_headers.
* sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Append to
this instead of $(headers).
* sysdeps/unix/sysv/linux/alpha/Makefile: Likewise.
* Make-dist [subdirs-dirs]: Don't prefix $(subdir-dirs) with
$(subdir); we are already there.
* sysdeps/unix/sysv/sysv4/solaris2/sparc/Dist: Removed.
1996-06-05 23:25:04 +00:00
|
|
|
|
try-sysdeps := $(foreach dir,$(..)sysdeps/stub $(..)sysdeps/generic \
|
|
|
|
|
$(..)sysdeps/libm-ieee754,\
|
1995-02-18 01:27:10 +00:00
|
|
|
|
$(addprefix $(dir)/,$(+maybe-sysdeps)))
|
|
|
|
|
foo:=$(shell echo 'try-sysdeps=$(try-sysdeps)'>&2)
|
|
|
|
|
+sysdeps := $(wildcard $(try-sysdeps))
|
|
|
|
|
foo:=$(shell echo 'stub/generic +sysdeps=$(+sysdeps)'>&2)
|
* time/tzfile.h, time/private.h, time/zdump.c, time/zic.c,
time/africa, time/asia, time/australasia, time/europe,
time/northamerica, time/southamerica: Updated from ADO 96h.
* Make-dist (all-headers): Filter $(sysdep_headers) out of $(headers).
(try-sysdeps, +sysdep-names): Check sysdeps/libm-ieee754 too.
* Makerules (distinfo-vars): Add sysdep_headers.
* sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Append to
this instead of $(headers).
* sysdeps/unix/sysv/linux/alpha/Makefile: Likewise.
* Make-dist [subdirs-dirs]: Don't prefix $(subdir-dirs) with
$(subdir); we are already there.
* sysdeps/unix/sysv/sysv4/solaris2/sparc/Dist: Removed.
1996-06-05 23:25:04 +00:00
|
|
|
|
+sysdep-names := $(sort $(patsubst $(..)sysdeps/generic/%,%,\
|
|
|
|
|
$(patsubst $(..)sysdeps/stub/%,%,\
|
|
|
|
|
$(patsubst $(..)sysdeps/libm-ieee754/%,%,\
|
|
|
|
|
$(+sysdeps)))))
|
1995-02-18 01:27:10 +00:00
|
|
|
|
foo:=$(shell echo '+sysdep-names=$(+sysdep-names)' >&2)
|
|
|
|
|
|
1996-06-05 19:07:37 +00:00
|
|
|
|
ifdef subdir-dirs
|
* time/tzfile.h, time/private.h, time/zdump.c, time/zic.c,
time/africa, time/asia, time/australasia, time/europe,
time/northamerica, time/southamerica: Updated from ADO 96h.
* Make-dist (all-headers): Filter $(sysdep_headers) out of $(headers).
(try-sysdeps, +sysdep-names): Check sysdeps/libm-ieee754 too.
* Makerules (distinfo-vars): Add sysdep_headers.
* sysdeps/unix/sysv/linux/Makefile (sysdep_headers): Append to
this instead of $(headers).
* sysdeps/unix/sysv/linux/alpha/Makefile: Likewise.
* Make-dist [subdirs-dirs]: Don't prefix $(subdir-dirs) with
$(subdir); we are already there.
* sysdeps/unix/sysv/sysv4/solaris2/sparc/Dist: Removed.
1996-06-05 23:25:04 +00:00
|
|
|
|
vpath % $(subdir-dirs)
|
1996-06-05 19:07:37 +00:00
|
|
|
|
endif
|
|
|
|
|
|
1995-02-18 01:27:10 +00:00
|
|
|
|
# Now find all the sysdep versions of those files.
|
1996-06-19 14:52:21 +00:00
|
|
|
|
+sysdeps := $(foreach dir,$(sysdep_dirs) $(source_dirs),\
|
|
|
|
|
$(wildcard $(addprefix $(dir)/, \
|
1995-02-18 01:27:10 +00:00
|
|
|
|
$(+sysdep-names) \
|
|
|
|
|
$(+sysdep-names:.c=.s) \
|
|
|
|
|
$(+sysdep-names:.c=.S) \
|
|
|
|
|
)))
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# Source and header files to go in the distribution tar file.
|
|
|
|
|
|
|
|
|
|
.S.s := $(wildcard $(sources:.c=.S) $(sources:.c=.s))
|
|
|
|
|
sources := $(filter-out $(addsuffix .c,$(basename $(.S.s))),$(sources)) $(.S.s)
|
|
|
|
|
|
|
|
|
|
+out := $(patsubst %.S,%.c,$(+sysdep-names:.s=.c)) \
|
|
|
|
|
$(addsuffix .c,$(sysdep_routines)) \
|
1996-10-12 00:56:05 +00:00
|
|
|
|
$(+subdir-nodist) $(dont_distribute)
|
|
|
|
|
foo:=$(shell echo '+out=$(+out)' >&2; echo foofoo >&2)
|
update from main archive 960921
Sun Sep 22 03:40:52 1996 Ulrich Drepper <drepper@cygnus.com>
* resolv/resolv.h: Update to bind-4.9.5-T4B.
* resolv/base64.c: Likewise.
* resolv/res_debug.c: Likewise.
* resolv/res_query.c: Likewise.
* resolv/gethnamaddr.c: Likewise.
* nss/nss_dns/dns-host.c: Likewise.
* resolv/res_comp.c: Likewise.
* resolv/res_send.c: Likewise.
* resolv/arpa/nameser.h: Likewise. Attention: MAXDNAME is much
higher now.
* resolv/Banner: New file.
* resolv/Makefile (distribute): Add Banner.
Sat Sep 21 19:15:24 1996 Ulrich Drepper <drepper@cygnus.com>
* sysdeps/stub/getsysstats.c: New file.
* sysdeps/unix/sysv/linux/getsysstats.c: New file.
* misc/Makefile (headers): Add sys/sysinfo.h.
(routines): Add getsysstats.
* sysdeps/unix/sysv/linux/Makefile [$(subdir)==misc]
(sysdep_headers): Remove sys/sysinfo.h.
* sysdeps/generic/sys/sysinfo.h: New file.
* sysdeps/unix/sysv/linux/sys/sysinfo.h: Add prototype for get_nprocs,
get_phys_pages, and get_avphys_pages.
* misc/Makefile (routines): Add mntent_r.
* misc/mntent_r.c: New file.
* misc/mntent.c: Remove all functions but getmntent and use
__getmntent_r.
* misc/mntent.h: Add prototype for __getmntent_r.
* misc/fstab.c: Use __getmntent_r function instead of getmntent.
This will not clobber the state in getmntent.
* sysdeps/generic/confname.h: Add _SC_PROCESSORS_CONF,
_SC_NPROCESSORS_ONLN, _SC_PHYS_PAGES, _SC_AVPHYS_PAGES,
_SC_ATEXIT_MAX, and _SC_PASS_MAX.
* sysdeps/stub/sysconf.c: Add handling _SC_PROCESSORS_CONF and
_SC_NPROCESSORS_ONLN by calling __get_nprocs, _SC_PHYS_PAGES by
calling __get_phys_pages, _SY_AVPHYS_PAGES by calling
__get_avphys_pages, _SC_ATEXIT_MAX and _SC_PASS_MAX.
* sysdeps/posix/sysconf.c: Likewise.
* posix/getconf.c (vars): Add _NPROCESSORS_CONF, _NPROCESSORS_ONLN,
_PHYS_PAGES, _AVPHYS_PAGES, ATEXIT_MAX, and PASS_MAX entries.
Sat Sep 21 05:20:36 1996 Ulrich Drepper <drepper@cygnus.com>
* version.h (VERSION): Bump to 1.95.
* Make-dist (+tsrcs): Don't filter out files in subdirs which
match files in the sysdeps hierachy (welcome back,
sys/syscall.h!).
* resolv/Makefile (libresolv-routines): Remove getnetnamad.
Sat Sep 21 03:00:19 1996 Ulrich Drepper <drepper@cygnus.com>
* locale/loadlocale.c (_nl_free_locale): Remove function.
* locale/localeinfo.h: Remove prototype for _nl_free_locale.
* locale/setlocale.c (setlocale): Don't free locale data of
categories which succeeded to load after a wrong or missing data
file was observed.
* locale/setlocale (setlocale): Initialize NEWNAME correctly so
that it works even when the locale data is not used.
* stdlib/random_r.c: Fix typo in comment.
* stdlib/drand48-iter.c: Likewise.
* stdlib/drand48.c: Likewise.
* stdlib/erand48.c: Likewise.
* stdlib/jrand48.c: Likewise.
* stdlib/lcong48.c: Likewise.
* stdlib/lrand48.c: Likewise.
* stdlib/mrand48.c: Likewise.
* stdlib/nrand48.c: Likewise.
* stdlib/random.c: Likewise.
* stdlib/seed48.c: Likewise.
* stdlib/srand48.c: Likewise.
* misc/search.h: Likewise.
* misc/hsearch.c: Likewise.
* misc/hsearch_r.c: Likewise.
* sysdeps/unix/sysv/linux/m68k/sysdep.S (__errno_location):
Thu Sep 19 23:36:19 1996 Thomas Bushnell, n/BSG <thomas@gnu.ai.mit.edu>
* hurd/hurdinit.c (__libc_argv): Provide common decl.
(_hurd_setproc): Don't declare __libc_argv here.
1996-09-22 03:06:42 +00:00
|
|
|
|
+tsrcs := $(filter-out $(+out), $(sources) $(all-headers) $(distribute)) \
|
1995-02-18 01:27:10 +00:00
|
|
|
|
$(+sysdeps)
|
1996-06-18 02:41:29 +00:00
|
|
|
|
foo:=$(shell echo 'made +tsrcs=$(+tsrcs)'>&2)
|
1995-02-18 01:27:10 +00:00
|
|
|
|
foo:=$(shell echo generated='$(generated)' >&2)
|
Update.
1997-04-21 13:25 Ulrich Drepper <drepper@cygnus.com>
* manual/arith.texi: Add description for INFINITY, _Imaginary_I,
fpclassify & friends, and complex number operations.
Update various other math functions for ISO C 9X.
* manual/math.texi: Update various entries for ISO C 9X.
Add description for complex number functions.
Add description of rand48 function family.
* manual/string.h: Add description of a64l and l64a.
* math/cmathcalls.h: Fix typo.
* stdlib/a64l.c: Pretty printing.
* stdlib/seed48_r.c: Also reset `a' and `c' to default values.
* stdlib/srand48_r.c: Likewise.
* stdlib/stdlib.h: Pretty printing.
* sysdeps/i386/fpu/__math.h: Fix typo.
* sysdeps/libm-ieee754/s_nearbyintf.c: Correctly name function.
* sysdeps/libm-ieee754/s_nearbyintl.c: Likewise.
1997-04-19 22:16 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
* sysdeps/m68k/fpu/e_pow.c: Rewrite handling of integral exponent.
1997-04-18 19:34 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
* sysdeps/m68k/fpu/__math.h: Define optimized versions of
isgreater, isgreaterequal, isless, islessequal, islessgreater, and
isunordered.
1997-04-20 01:28 Richard Henderson <rth@tamu.edu>
* rellns-sh: Handle files in the same directory correctly.
1997-04-20 11:22 Ulrich Drepper <drepper@cygnus.com>
* csu/initfini.c: Place ALIGN instruction at correct positions.
Patch by Richard Henderson <richard@twiddle.rth.home>.
1997-04-19 17:12 Ulrich Drepper <drepper@cygnus.com>
* Make-dist: Don't automatically ignore .c files if the .S or .s file
is ignored.
* csu/Makefile (distribute): Add defs.awk.
1997-04-19 15:39 Ulrich Drepper <drepper@cygnus.com>
* sysdeps/stub/shmat.c: Update to XPG4.2 interface.
* sysdeps/stub/shmdt.c: Likewise.
Reported by Thomas Bushnell, n/BSG.
1997-04-19 13:22 Ulrich Drepper <drepper@cygnus.com>
* manual/stdio.texi: Add description of printf_size and
printf_size_info. Partly based on the documentation by Larry McVoy.
1997-04-19 02:21 Ulrich Drepper <drepper@cygnus.com>
* stdio-common/printf_size.c (printf_size): Correct values for
`units'.
Report by Larry McVoy <lm@neteng.engr.sgi.com>.
* stdio-common/tst-printfsz.c: New file.
* stdio-common/Makefile (tests): Add tst-printfsz.c.
(CFLAGS-tst-printfsz.c): Define to prevent warnings about format
strings.
1997-04-18 15:48 Ulrich Drepper <drepper@cygnus.com>
* login/utmp.h: Add prototype for updwtmp.
* login/logwtmp.c: Add new function updwtmp which allows to write
a complete record to the wtmp file.
Patch by Miquel van Smoorenburg <miquels@cistron.nl>.
1997-04-17 17:57 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
* math/Makefile (headers): Add mathbits.h.
1997-04-16 21:20 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
* sysdeps/m68k/fpu/__math.h: Add inlined sincos{,l,f}.
* sysdeps/m68k/fpu/s_sincos.c: New file.
* sysdeps/m68k/fpu/s_sincosf.c: New file.
* sysdeps/m68k/fpu/s_sincosl.c: New file.
* sysdeps/libm-ieee754/e_scalb.c: Use internal names of the
functions.
* sysdeps/libm-ieee754/e_scalbl.c: Likewise.
* sysdeps/libm-ieee754/s_ctanh.c: Use isfinite instead of finite.
* sysdeps/libm-ieee754/s_ctanhf.c: Likewise.
* sysdeps/libm-ieee754/s_ctanhl.c: Likewise.
* sysdeps/libm-ieee754/s_ctan.c: Likewise.
* sysdeps/libm-ieee754/s_ctanf.c: Likewise.
* sysdeps/libm-ieee754/s_ctanl.c: Likewise. Fix type of `res'.
1997-04-18 11:21 Ulrich Drepper <drepper@cygnus.com>
* shadow/fgetspent_r.c: Set *RESULT to NULL before returning error.
Patch by Thorsten Kukuk <kukuk@vt.uni-paderborn.de>.
1997-04-21 11:38:46 +00:00
|
|
|
|
#generated := $(sort $(generated) $(generated:.S=.c) $(generated:.s=.c))
|
|
|
|
|
#foo:=$(shell echo now generated='$(generated)' >&2)
|
1995-02-18 01:27:10 +00:00
|
|
|
|
+tsrcs := $(sort $(filter-out $(generated),$(+tsrcs)))
|
|
|
|
|
foo:=$(shell echo '+tsrcs=$(+tsrcs)'>&2)
|
|
|
|
|
foo:=$(shell echo foobie, dammit! >&2)
|
|
|
|
|
|
|
|
|
|
ifndef tardir
|
Fri Apr 19 00:49:44 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
* stdlib/rpmatch.c (rpmatch: try): Take new arg NOMATCH, return value
for nonmatching nonerror (instead of !MATCH).
(rpmatch): Use it, so we return -1 when NOEXPR doesn't match either.
* resolv/getnetnamadr.c (getnetbyaddr): Use u_int32_t instead of
unsigned long for variable NET2.
* time/etcetera, time/europe, time/solar89: Updated from ADO's 96e.
Tue Apr 9 14:37:31 1996 Ulrich Drepper <drepper@cygnus.com>
* catgets/Makefile, catgets/catgets.c, catgets/catgetsinfo.h,
catgets/config.h, catgets/gencat.c, catgets/nl_types.h,
catgets/open_catalog.c: New files. Implementation of XPG4
compliant catgets() function and needed tools.
* Makefile (subdirs): Add catgets.
Thu Apr 18 23:36:11 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
* math/Makefile (CPPFLAGS): Append -D__NO_MATH_INLINES.
Wed Apr 10 20:48:43 1996 Ulrich Drepper <drepper@cygnus.com>
* stdio-common/vfprintf.c: Correct some typos.
* sysdeps/libm-ieee754/w_gammaf.c, sysdeps/libm-ieee754/w_lgamma.c,
sysdeps/libm-ieee754/w_lgammaf.c: Reference signgam instead of
__signgam.
Thu Apr 18 21:07:27 1996 Roland McGrath <roland@delasyd.gnu.ai.mit.edu>
* Makerules (no-whole-archive): New variable.
(build-shlib): Use it.
* elf/Makefile (libdl.so): Use it.
* configure.in (libc_cv_ld_no_whole_archive): New check for
--no-whole-archive.
* config.make.in (have-no-whole-archive): New variable.
* stdio-common/printf_fp.c: Increase fudge factor for BIGNUM_SIZE calc
from 3 to 4.
* Make-dist: Include version.mk.
(version, release): Variables removed.
* Makeconfig (version.mk): New target.
Fri Apr 19 01:42:18 1996 Ulrich Drepper <drepper@cygnus.com>
* locale/Makefile (headers): Add langinfo.h.
(CPPFLAGS): Remove -Iliblib.
1996-04-20 00:05:25 +00:00
|
|
|
|
-include $(common-objpfx)version.mk
|
1995-02-18 01:27:10 +00:00
|
|
|
|
export tardir := glibc-$(version)
|
|
|
|
|
endif
|
|
|
|
|
|
|
|
|
|
$(..)glibc-$(version):
|
|
|
|
|
ln -s . $@
|
|
|
|
|
|
1996-09-10 02:00:15 +00:00
|
|
|
|
#+tsrcs := $(+tsrcs) \
|
|
|
|
|
# TAGS
|
1995-02-18 01:27:10 +00:00
|
|
|
|
.PHONY: TAGS
|
|
|
|
|
TAGS: $(..)MakeTAGS
|
|
|
|
|
$(MAKE) -f $< $@ -o subdir_TAGS
|
|
|
|
|
|
|
|
|
|
ifdef subdir
|
|
|
|
|
|
|
|
|
|
foo:=$(shell echo subdir foo >&2)
|
|
|
|
|
|
Update.
1997-03-19 01:40 Ulrich Drepper <drepper@cygnus.com>
* sysdeps/unix/sysv/sco3.2.4/Dist: New file.
* sysdeps/unix/sysv/sysv4/Dist: Add __getpgid.c and __setpgid.c.
* sysdeps/unix/bsd/Dist: Add bsdstat.h, setrgid.c, and setruid.c.
* sysdeps/unix/sysv/Dist: Add direct.h.
* sysdeps/unix/sysv/linux/Dist: Add netinet/tcp.h.
* Make-dist ($(tardir).tar): Prefer writing temporary file to
$TMPDIR is available. The default is /tmp.
* sysdeps/generic/ip.h: Move to...
* sysdeps/generic/netinet/ip.h: ...here.
* Makefile (tests): Quote $(CC) argument to isomac program.
Patch by H.J. Lu <hjl@gnu.ai.mit.edu>.
* sysdeps/i386/setjmp.S (__setjmp): Fix fatal bug where 0 argument
is placed in wrong place on the stack.
Reported by Marc Lehmann <mlehmann@hildesheim.sgh-net.de>.
* sysdeps/tst-setjmp.c: Add new test for above problem.
* sysdeps/libm-i387/e_pow.S: Compute PIC addres early.
* sysdeps/libm-i387/e_powf.S: Likewise.
* sysdeps/libm-i387/e_powl.S: Likewise.
1997-03-18 23:18 Ulrich Drepper <drepper@cygnus.com>
* time/offtime.c (__offtime): Change type of `yg' to long int.
Reported by a sun <asun@zoology.washington.edu>.
1997-03-18 23:08 a sun <asun@zoology.washington.edu>
* sysdeps/unix/sysv/linux/net/if_ppp.h (PPP_VERSION): Define to
2.2.0 to prevent version mismatch.
1997-03-17 19:26 Andreas Jaeger <aj@arthur.pfalz.de>
* stdio-common/printf_fphex.c (MIN): Only define MIN if not
already defined.
1997-03-14 23:34 Geoff Keating <geoffk@ozemail.com.au>
* sysdeps/unix/sysv/linux/powerpc/termbits.h: Leave ioctl numbers
in ioctls.h.
* elf/rtld.c (_dl_start): Call elf_machine_runtime_setup when the
loader first relocates itself.
* sysdeps/powerpc/elf/start.c (__start1): Fix bug for static objects.
* sysdeps/powerpc/dl-machine.h (elf_machine_rela): Fix bugs in
jump slot relocation. Prefer relative branches (some PowerPC chips
don't predict absolute branches).
(elf_machine_runtime_setup): Simplify and correct expressions.
(RTLD_START): Fix bug changing _dl_starting_up.
* sysdeps/unix/sysv/linux/powerpc/dl-sysdep.c: Added. Deal with
strange Linux/PPC padding of initial stack.
1997-03-11 04:14 Geoff Keating <geoffk@ozemail.com.au>
* sysdeps/unix/sysv/linux/powerpc/termbits.h: Increase NCCS to 39,
for future expansion.
* sysdeps/unix/sysv/linux/powerpc/sys/kernel_termios.h: Added.
* sysdeps/powerpc/dl-machine.h (elf_machine_rela): Explain why it
can't have a switch statement.
* sysdeps/powerpc/elf/start.c (__start1): Explain why it can't be
static.
* sysdeps/powerpc/elf/start.c (_start): Use .previous to avoid
confusing gcc's idea of the current section.
* sysdeps/powerpc/dl-machine.h (ELF_MACHINE_RUNTIME_TRAMPOLINE,
RTLD_START): Likewise.
1997-03-08 09:10 Geoff Keating <geoffk@ozemail.com.au>
* sysdeps/powerpc/dl-machine.h (elf_machine_rela,
elf_machine_runtime_setup): Flush data & instruction caches when
necessary, for 603/604 support. Add better support for large PLTs.
(elf_machine_rela): Remove relocations that wouldn't work if
anyone ever used them. Use memcpy for copy reloc, it'll be safe.
Never target branch relocations at a PLT entry.
* sysdeps/powerpc/bsd-setjmp.S: Make jump to PLT entry if we are
generating PIC.
* sysdeps/powerpc/bsd-_setjmp.S: Likewise.
* sysdeps/powerpc/setjmp.S: Likewise.
* sysdeps/unix/sysv/linux/powerpc/clone.S: Likewise.
* sysdeps/unix/sysv/linux/powerpc/socket.S: Likewise.
* sysdeps/unix/sysv/linux/powerpc/syscall.S: Likewise.
* sysdeps/unix/sysv/linux/powerpc/sysdep.h: Likewise.
* sysdeps/powerpc/elf/start.c: Clean up.
* sysdeps/powerpc/__longjmp.S: Return 'value' as result from
setjmp call.
* sysdeps/unix/sysv/linux/powerpc/statbuf.h: New file.
1997-03-09 12:36 H.J. Lu <hjl@gnu.ai.mit.edu>
* Make-dist (srcs): Add $(test-srcs).
* MakeTAGS (all-sources): Likewise.
* Makerules (depfiles, common-mostlyclean): Likewise.
* Rules (tests): Likewise.
1997-03-18 05:28 Roland McGrath <roland@frob.com>
* elf/dl-reloc.c (RESOLVE): Don't try to resolve ocal symbols.
1997-03-17 21:39 Philip Blundell <phil@london.uk.eu.org>
* nis/nss_nis/nis-service.c (_nss_nis_getservbyname_r): Allow
protocol=NULL to match any protocol rather than returning an
error.
1997-03-17 19:00 Philip Blundell <phil@london.uk.eu.org>
* nss/nss_files/files-service.c (servbyname): Match any protocol
if proto==NULL.
1997-03-18 05:17 Ulrich Drepper <drepper@cygnus.com>
* sysdeps/unix/sysv/linux/alpha/fcntlbits.h: Don't define O_NORW.
* sysdeps/unix/sysv/linux/fcntlbits.h: Likewise.
Proposed by Thomas Bushnell, n/BSG.
1997-03-18 07:53 H.J. Lu <hjl@gnu.ai.mit.edu>
* sysdeps/generic/setenv.c (setenv): Don't copy name when we reuse
the buffer for replacement.
1997-03-16 19:30 H.J. Lu <hjl@gnu.ai.mit.edu>
* sysdeps/unix/sysv/linux/syscalls.list: Add sys_fstat,
sys_lstat and sys_stat.
1997-03-17 12:43 Thorsten Kukuk <kukuk@vt.uni-paderborn.de>
Add NIS+ functions
* shlib-versions: Add libnss_nisplus.
* nis/Makefile: Add NIS+ source files.
* nis/nis_call.c: New file.
* nis/nis_clone.c: New file.
* nis/nis_error.c: New file.
* nis/nis_file.c: New file.
* nis/nis_free.c: New file.
* nis/nis_intern.c: New file.
* nis/nis_intern.h: New file.
* nis/nis_local_names.c: New file.
* nis/nis_names.c: New file.
* nis/nis_print.c: New file.
* nis/nis_server.c: New file.
* nis/nis_subr.c: New file.
* nis/nis_table.c: New file.
* nis/nis_xdr.c: New file.
* nis/nss-nisplus.h: New file.
* nis/nss_nisplus/nisplus-alias.c: New file.
* nis/nss_nisplus/nisplus-ethers.c: New file.
* nis/nss_nisplus/nisplus-grp.c: New file.
* nis/nss_nisplus/nisplus-hosts.c: New file.
* nis/nss_nisplus/nisplus-netgrp.c: New file.
* nis/nss_nisplus/nisplus-network.c: New file.
* nis/nss_nisplus/nisplus-proto.c: New file.
* nis/nss_nisplus/nisplus-publickey.c: New file.
* nis/nss_nisplus/nisplus-pwd.c: New file.
* nis/nss_nisplus/nisplus-rpc.c: New file.
* nis/nss_nisplus/nisplus-service.c: New file.
* nis/nss_nisplus/nisplus-spwd.c: New file.
* nis/rpcsvc/nis.h: New file.
* nis/rpcsvc/nis.x: New file.
* nis/rpcsvc/nis_object.x: New file.
* nis/rpcsvc/nis_tags.h: New file.
* nis/rpcsvc/nislib.h: New file.
1997-03-17 12:52 Thomas Bushnell, n/BSG <thomas@gnu.ai.mit.edu>
* mach/devstream.c (output/write_some): Don't try and write more
than IO_INBAND_MAX in a single call to device_write_inband.
* sysdeps/libm-ieee754/w_atan2.c: Don't ignore exception if library
* sysdeps/libm-ieee754/w_atan2f.c: Likewise.
* sysdeps/libm-ieee754/w_atan2l.c: Likewise.
* sysdeps/unix/sysv/linux/sys/mman.h (msync): Add description for
* stdlib/atoll.c: Undefine atoll, not atol.
1997-03-19 05:47:56 +00:00
|
|
|
|
+tsrcs := Makefile $(+tsrcs) \
|
|
|
|
|
$(addsuffix .c,$(others) $(tests) $(test-srcs)) \
|
|
|
|
|
$(wildcard $(addsuffix .input,$(tests) $(test-srcs)) \
|
|
|
|
|
$(addsuffix .args,$(tests) $(test-srcs)))
|
1995-02-18 01:27:10 +00:00
|
|
|
|
+tardeps := $(strip $(+tsrcs))
|
|
|
|
|
|
|
|
|
|
verbose = v
|
|
|
|
|
|
|
|
|
|
.PHONY: dist
|
|
|
|
|
dist: $(..)$(tardir) $(+tardeps)
|
|
|
|
|
@cd ..; if test -f dist.tar; then c=u; else c=c; fi; \
|
|
|
|
|
$(+cmdecho) "cd ..; tar $${c}h$(verbose)f dist.tar ..."; \
|
1996-06-06 04:54:33 +00:00
|
|
|
|
tar $${c}h$(verbose)f dist.tar \
|
|
|
|
|
$(addprefix $(tardir)/$(subdir)/,$(filter-out $<,$^))
|
1995-02-18 01:27:10 +00:00
|
|
|
|
|
|
|
|
|
else # Parent makefile.
|
|
|
|
|
|
|
|
|
|
# Find what other things sysdep directories want to distribute.
|
|
|
|
|
|
|
|
|
|
foo:=$(shell echo parent foobie>&2)
|
|
|
|
|
+sysdep-distfiles := $(wildcard $(addsuffix /Dist,$(sysdep_dirs)))
|
|
|
|
|
foo:=$(shell echo +sysdep-distfiles='$(+sysdep-distfiles)'>&2)
|
|
|
|
|
+sysdep-dist := $(foreach file,$(+sysdep-distfiles),\
|
|
|
|
|
$(addprefix $(dir $(file)), \
|
|
|
|
|
$(shell sed -e 's/\#.*$$//' $(file)))) \
|
|
|
|
|
$(+sysdep-distfiles) \
|
|
|
|
|
$(sysdep-Subdir-files)
|
|
|
|
|
foo:=$(shell echo '+sysdep-dist=$(+sysdep-dist)' >&2)
|
|
|
|
|
|
1996-06-07 20:37:41 +00:00
|
|
|
|
+sysdep-tsrcs := $(wildcard $(foreach file,Makefile Implies syscalls.list\
|
1995-02-18 01:27:10 +00:00
|
|
|
|
configure configure.in,\
|
|
|
|
|
$(addsuffix /$(file),$(sysdep_dirs)))) \
|
|
|
|
|
$(+sysdep-dist)
|
|
|
|
|
|
|
|
|
|
+tsrcs := $(+tsrcs) $(+sysdep-tsrcs)
|
|
|
|
|
|
|
|
|
|
define autoconf-it
|
|
|
|
|
autoconf $(ACFLAGS) $< > $@.new
|
|
|
|
|
mv -f $@.new $@
|
1995-05-20 00:13:43 +00:00
|
|
|
|
test ! -d CVS || cvs commit -m'Regenerated: autoconf $(ACFLAGS) $<' $@
|
1995-02-18 01:27:10 +00:00
|
|
|
|
endef
|
|
|
|
|
|
1996-02-13 05:46:59 +00:00
|
|
|
|
configure: configure.in aclocal.m4; $(autoconf-it)
|
|
|
|
|
%/configure: %/configure.in aclocal.m4; $(autoconf-it)
|
1995-02-18 01:27:10 +00:00
|
|
|
|
|
1996-06-25 13:49:53 +00:00
|
|
|
|
dist: $(tardir).tar.gz
|
1995-02-18 01:27:10 +00:00
|
|
|
|
|
|
|
|
|
subdir_dist: dist.tar
|
1996-11-10 02:21:51 +00:00
|
|
|
|
dist.tar: README $(tardir) $(+tsrcs)
|
1995-02-18 01:27:10 +00:00
|
|
|
|
tar chvf $@ $(addprefix $(tardir)/,$(filter-out $(tardir),$^))
|
|
|
|
|
|
|
|
|
|
$(tardir).tar: dist.tar subdir_dist
|
1996-06-09 07:55:33 +00:00
|
|
|
|
@echo Files listed here have names exceeding 14 chars.
|
1997-04-30 15:51:34 +00:00
|
|
|
|
tar xfv $< -C $${TMPDIR-/tmp} | sed -n '/[^/]\{15,\}/p'
|
|
|
|
|
tar covf $@ -C $${TMPDIR-/tmp} $(tardir)
|
|
|
|
|
-rm -fr $${TMPDIR-/tmp}/$(tardir) dist.tar &
|
1995-02-18 01:27:10 +00:00
|
|
|
|
|
|
|
|
|
%.Z: %
|
|
|
|
|
compress -c $< > $@
|
|
|
|
|
|
|
|
|
|
%.gz: %
|
|
|
|
|
gzip -9 -v -c $< > $@
|
|
|
|
|
|
|
|
|
|
foo:=$(shell echo subdirs=$(subdirs) >&2)
|
|
|
|
|
dist-subdirs := $(addprefix dist-,$(subdirs)) # dist-manual
|
|
|
|
|
.PHONY: subdir_dist $(dist-subdirs)
|
|
|
|
|
subdir_dist: $(dist-subdirs)
|
|
|
|
|
$(dist-subdirs):
|
|
|
|
|
$(MAKE) -C $(patsubst dist-%,%,$@) dist
|
|
|
|
|
|
|
|
|
|
# This is here instead of in Makefile so it can use $(release) and $(version).
|
update from main archive 970121
Thu Jan 23 04:06:42 1997 Ulrich Drepper <drepper@cygnus.com>
* Make-dist (.PHONY: dist): Remove duplicate declaration.
(README): Depend on version.h not version.c.
* Makefile (README): Depend on version.h not version.c.
* Makeconfig (inst_libdir, inst_slibdir, inst_includedir,
inst_datadir, inst_zonedir, inst_localedir, inst_i18ndir, inst_bindir,
inst_sbindir, inst_infodir, inst_sysconfdir): New variables. Same
as variable withough inst_ but prepended with $(install_root).
(localtime-time): Use $(inst_sysconfdir) not $(sysconfdir).
* Makefile (install-others): Use $(inst_includedir).
(gnu/stabs.h, gnu/lib-names.h): Use $(inst_includedir).
* Makerules (tons of install rules): Use inst_% variables.
* elf/Makefile: Likewise.
* hurd/Makefile: Likewise.
* intl/Makefile: Likewise.
* manual/Makefile: Likewise.
* po/Makefile: Likewise.
* sunrpc/Makefile: Likewise.
* sysdeps/mach/hurd/Makefile: Likewise.
* sysdeps/standalone/i386/force_cpu386/Makefile: Likewise.
* time/Makefile: Likewise.
* config.make.in: Revert patch from Sat Jan 18 22:15:26 1997,
leave install_root in place.
* gnu-versions.h (_GNU_GETOPT_INTERFACE_VERSION): Define to 2.
* posix/getopt.c (GETOPT_INTERFACE_VERSION): Define to 2.
* posix/getopt1.c (GETOPT_INTERFACE_VERSION): Define to 2.
* elf/Makefile [yes==$(has-ldconfig)]: Correct dependencies of
ldconfig.
(CFLAGS-dl-load.c): New variable, avoid gcc warning.
* sysdeps/mach/hurd/configure.in: Add _LIBC_REENTRENT to DEFINES.
* sysdeps/mach/hurd/getdents.c: Update copyright. De-ANSI-declfy.
* sysdeps/stub/getdents.c: Likewise. Correct return value.
* sysdeps/unix/getdents.c: Likewise.
* sysdeps/unix/sysv/getdents.c: Likewise.
* sysdeps/unix/readdir.c: Update copyright.
* sysdeps/unix/bsd/sony/newsos4/Makefile: Correct ifeq arguments.
* sysdeps/unix/bsd/sun/sunos4/Makefile: Likewise.
* sysdeps/unix/sysv/Makefile: Likewise.
* sysdeps/unix/sysv/linux/Makefile: Likewise.
* sysdeps/unix/sysv/linux/alpha/Makefile: Likewise.
* sysdeps/unix/sysv/linux/i386/Makefile: Likewise.
* sysdeps/unix/sysv/linux/Dist: Don't distribute kernel_termios.h,
but sys/kernel_termios.h.
* sysdeps/unix/sysv/linux/alpha/Dist: Likewise.
* sysdeps/unix/sysv/linux/Makefile [$(subdir)==termios]
(sysdep_headers): Add sys/kernel_termios.h.
* sysdeps/unix/sysv/linux/kernel_termios.h: Moved to...
* sysdeps/unix/sysv/linux/sys/kernel_termios.h: ...here.
* sysdeps/unix/sysv/linux/sys/tcgetattr.c: Use __kernel_termios and
__KERNEL_NCCS instead of kernel_termios and KERNEL_NCCS resp.
* sysdeps/unix/sysv/linux/alpha/ioctls.h: New file.
* sysdeps/unix/sysv/linux/getdents.c: Correct problems with alignment.
* sysdeps/unix/sysv/linux/alpha/syscalls.list: Remove getdents.
Reported by Eirik Fuller <eirik@netcom.com>.
* time/Banner: Removed. Wrong and unnecessary information. It's now
in...
* time/README: New file.
* time/Makefile (distribute): Remove Banner, add README.
Wed Jan 22 13:19:56 1997 Richard Henderson <rth@tamu.edu>
* sysdeps/unix/sysv/linux/alpha/ioperm.c (platforms): Add Sable.
(init_iosys): Recognize /etc/alpha_systype as a four-tuple for
the purpose of supporting brand new systems.
(*): The type of iosys variables should be iosys_t.
1997-01-22 Paul Eggert <eggert@twinsun.com>
* strftime.c (_strftime_copytm):
New function, to work around Solaris 2.5 tzset bug.
Wed Jan 22 23:05:14 1997 Ulrich Drepper <drepper@cygnus.com>
* sysdeps/mach/hurd/vdprintf.c: Complete de-ANSI-declfication.
* sysdeps/posix/pipestream.c (writedecl): Fix typo.
Reported by Marcus G. Daniels <marcus@shannon.sysc.pdx.edu>.
Wed Jan 22 13:58:56 1997 Andreas Jaeger <aj@arthur.pfalz.de>
* elf/Makefile (CFLAGS-dl-load.c): New Variable to keep gcc silent
since name_copy is initialized.
Wed Jan 22 16:58:12 1997 Ulrich Drepper <drepper@cygnus.com>
* stdio-common/Makefile (tests): Remove scanf11.
* stdio-common/scanf11.c: Removed.
* stdio-common/vfscanf.c Revert patch of Thu Jan 16 23:39:25 1997.
Although the Corrigendum 1 describes the result as implemented the
even more recent Amendement 1 seconds the position of ISO C:1990
where the %n directive has no effect on the assignment count.
* stdio-common/bug10.c: Likewise.
* stdio-common/scanf1.c: Likewise.
* stdio-common/scanf3.c: Likewise.
* stdio-common/scanf10.c: Likewise.
* stdio-common/tstdiomisc.c: Likewise.
* new-malloc/obstack.h: Don't define malloc using bcopy if malloc
is not available. This leads to problems since bcopy does not
return a value. Instead define _obstack_memcpy based on memcpy or
bcopy. This name isn't used outside obstack.h and so no problems
from using the memcpy function in a file including obstack.h can
result.
Reported by Martin Trapp <trapp@ipd.info.uni-karlsruhe.de>.
Tue Jan 21 18:35:55 1997 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
* misc/regexp.h (compile): Fix typos.
Tue Jan 21 01:01:59 1997 Andreas Schwab <schwab@issan.informatik.uni-dortmund.de>
* sysdeps/unix/sysv/linux/sys/procfs.h (struct elf_prpsinfo): Fix
type of pr_{pid,ppid,pgrp,sid} fields.
* sysdeps/unix/sysv/linux/alpha/sys/procfs.h (struct
elf_prpsinfo): Likewise.
1997-01-23 04:24:20 +00:00
|
|
|
|
README: README.template version.h
|
1995-02-18 01:27:10 +00:00
|
|
|
|
-rm -f $@
|
|
|
|
|
sed -e 's/RELEASE/$(release)/' -e 's/VERSION/$(version)/' < $< > $@
|
|
|
|
|
# Make it unwritable so I won't change it by mistake.
|
|
|
|
|
chmod 444 $@
|
1996-06-05 19:07:37 +00:00
|
|
|
|
test ! -d CVS || cvs commit -m'Remade for $(release)-$(version)' $@
|
1995-02-18 01:27:10 +00:00
|
|
|
|
|
|
|
|
|
|
|
|
|
|
endif # Subdirectory vs. parent makefile
|
|
|
|
|
|
|
|
|
|
# Get these things out of the environment because they take up lots of space.
|
|
|
|
|
unexport distribute generated
|
|
|
|
|
|
|
|
|
|
# Fnord.
|
|
|
|
|
export inhibit_mach_syscalls=t
|
|
|
|
|
export no_deps=t
|
|
|
|
|
export inhibit_interface_rules=t
|