mirror of
https://sourceware.org/git/glibc.git
synced 2024-11-21 20:40:05 +00:00
Update.
1998-09-14 15:29 Ulrich Drepper <drepper@cygnus.com> * stdio-common/Makefile (headers): Remove bits/stdio_lim.h. (install-others): Add bits/stdio_lim.h. Add rule to install bits/stdio_lim.h. * sysdeps/unix/sysv/sysv4/solaris2/sparc/Dist: New file. * Makefile (distribute): Add include/sys/mman.h. * sysdeps/powerpc/Dist: Add dl-machine.c and dl-start.S. * sysdeps/unix/sysv/linux/Dist: Add sys/sendfile.h. * sysdeps/unix/sysv/linux/arm/Dist: Add init-first.h.
This commit is contained in:
parent
1ffaaca2a3
commit
14eb5d5d34
14
ChangeLog
14
ChangeLog
@ -1,3 +1,17 @@
|
||||
1998-09-14 15:29 Ulrich Drepper <drepper@cygnus.com>
|
||||
|
||||
* stdio-common/Makefile (headers): Remove bits/stdio_lim.h.
|
||||
(install-others): Add bits/stdio_lim.h.
|
||||
Add rule to install bits/stdio_lim.h.
|
||||
|
||||
* sysdeps/unix/sysv/sysv4/solaris2/sparc/Dist: New file.
|
||||
|
||||
* Makefile (distribute): Add include/sys/mman.h.
|
||||
|
||||
* sysdeps/powerpc/Dist: Add dl-machine.c and dl-start.S.
|
||||
* sysdeps/unix/sysv/linux/Dist: Add sys/sendfile.h.
|
||||
* sysdeps/unix/sysv/linux/arm/Dist: Add init-first.h.
|
||||
|
||||
1998-09-14 22:46 Tim Waugh <tim@cyberelk.demon.co.uk>
|
||||
|
||||
* posix/wordexp-test.c: Chet Ramey confirmed that bash's behaviour
|
||||
|
1
Makefile
1
Makefile
@ -253,6 +253,7 @@ distribute := README README.libm INSTALL FAQ FAQ.in NOTES NEWS BUGS \
|
||||
version.h shlib-versions rpm/Makefile rpm/template \
|
||||
rpm/rpmrc glibcbug.in abi-tags stub-tag.h \
|
||||
test-skeleton.c include/des.h Versions.def \
|
||||
include/sys/mman.h \
|
||||
$(addprefix scripts/, \
|
||||
rellns-sh config.sub config.guess \
|
||||
mkinstalldirs move-if-change install-sh \
|
||||
|
@ -962,10 +962,12 @@ Ordinary programs can perform word expansion just like the shell by
|
||||
calling the library function @code{wordexp}.
|
||||
|
||||
@menu
|
||||
* Expansion Stages:: What word expansion does to a string.
|
||||
* Calling Wordexp:: How to call @code{wordexp}.
|
||||
* Flags for Wordexp:: Options you can enable in @code{wordexp}.
|
||||
* Wordexp Example:: A sample program that does word expansion.
|
||||
* Expansion Stages:: What word expansion does to a string.
|
||||
* Calling Wordexp:: How to call @code{wordexp}.
|
||||
* Flags for Wordexp:: Options you can enable in @code{wordexp}.
|
||||
* Wordexp Example:: A sample program that does word expansion.
|
||||
* Tilde Expansion:: Details of how tilde expansion works.
|
||||
* Variable Substitution:: Different types of variable substitution.
|
||||
@end menu
|
||||
|
||||
@node Expansion Stages
|
||||
@ -1254,9 +1256,6 @@ expand_and_execute (const char *program, const char *options)
|
||||
@}
|
||||
@end smallexample
|
||||
|
||||
|
||||
@c No sense finishing this for here.
|
||||
@ignore
|
||||
@node Tilde Expansion
|
||||
@subsection Details of Tilde Expansion
|
||||
|
||||
@ -1325,6 +1324,7 @@ Otherwise, print @var{message} as an error message on the standard error
|
||||
stream, and consider word expansion a failure.
|
||||
|
||||
@c ??? How does wordexp report such an error?
|
||||
@c WRDE_BADVAL is returned.
|
||||
|
||||
@item $@{@var{variable}:+@var{replacement}@}
|
||||
Substitute @var{replacement}, but only if @var{variable} is defined and
|
||||
@ -1386,4 +1386,4 @@ If there is more than one alternative for how to match against
|
||||
Thus, @samp{$@{foo%%r*@}} substitutes @samp{tracto}, because the shortest
|
||||
match for @samp{r*} at the end of @samp{tractor} is just @samp{r}.
|
||||
|
||||
@end ignore
|
||||
@end table
|
||||
|
@ -21,7 +21,7 @@
|
||||
#
|
||||
subdir := stdio-common
|
||||
|
||||
headers := bits/stdio_lim.h printf.h
|
||||
headers := printf.h
|
||||
|
||||
routines := \
|
||||
ctermid cuserid \
|
||||
@ -36,6 +36,8 @@ routines := \
|
||||
remove rename \
|
||||
lockfile
|
||||
|
||||
install-others := $(inst_includedir)/bits/stdio_lim.h
|
||||
|
||||
aux := errlist siglist
|
||||
distribute := _itoa.h printf-parse.h stdio_lim.h.in
|
||||
|
||||
@ -56,6 +58,12 @@ CFLAGS-scanf4.c = -Wno-format
|
||||
CFLAGS-scanf7.c = -Wno-format
|
||||
CFLAGS-tst-printfsz.c = -Wno-format
|
||||
|
||||
$(inst_includedir)/bits/stdio_lim.h: $(common-objpfx)bits/stdio_lim.h
|
||||
$(make-target-directory)
|
||||
if test -r $@ && cmp -s $< $@; \
|
||||
then echo 'gnu/lib-names.h unchanged'; \
|
||||
else $(INSTALL_DATA) $< $@; fi
|
||||
|
||||
ifeq ($(stdio),libio)
|
||||
ifneq (,$(filter %REENTRANT, $(defines)))
|
||||
CPPFLAGS += -D_IO_MTSAFE_IO
|
||||
|
@ -1,3 +1,5 @@
|
||||
dl-machine.c
|
||||
dl-start.S
|
||||
fenv_const.c
|
||||
fenv_libc.h
|
||||
ppc-mcount.S
|
||||
|
@ -59,6 +59,7 @@ sys/pci.h
|
||||
sys/prctl.h
|
||||
sys/procfs.h
|
||||
sys/quota.h
|
||||
sys/sendfile.h
|
||||
sys/socketvar.h
|
||||
sys/soundcard.h
|
||||
sys/sysctl.h
|
||||
|
@ -1,2 +1,3 @@
|
||||
bits/mman.h
|
||||
clone.S
|
||||
init-first.h
|
||||
|
1
sysdeps/unix/sysv/sysv4/solaris2/sparc/Dist
Normal file
1
sysdeps/unix/sysv/sysv4/solaris2/sparc/Dist
Normal file
@ -0,0 +1 @@
|
||||
sys/trap.h
|
Loading…
Reference in New Issue
Block a user