diff options
author | Ulrich Drepper <drepper@redhat.com> | 1996-10-19 23:33:00 +0000 |
---|---|---|
committer | Ulrich Drepper <drepper@redhat.com> | 1996-10-19 23:33:00 +0000 |
commit | 8145a97443a708443ed2c39e80e681a5c5354e92 (patch) | |
tree | 40db459e77e241ef5b26c92f0111a8bf51eff14d /string | |
parent | 0d204b0a522b9fef2168e1808a0566c9209d0893 (diff) | |
download | glibc-8145a97443a708443ed2c39e80e681a5c5354e92.zip glibc-8145a97443a708443ed2c39e80e681a5c5354e92.tar.gz glibc-8145a97443a708443ed2c39e80e681a5c5354e92.tar.bz2 |
update from main archive 961019cvs/libc-961020
Sat Oct 19 17:42:24 1996 Ulrich Drepper <drepper@cygnus.com>
* intl/locale.alias: Language for entry `czech' is `cs'.
Fri Oct 17 13:20:35 1996 Thorsten Kukuk <kukuk@weber.uni-paderborn.de>
* sunrpc/etc.rpc: Update from ti-rpcsvc 2.3.
Fri Oct 18 22:56:45 1996 Ulrich Drepper <drepper@cygnus.com>
* sunrpc/Makefile (install-sbin): Remove portmap. This version is
buggy and more competent people work on a usable version which is
distributed separately.
* sunrpc/portmap.c: Removed.
Suggested by Thorsten Kukuk.
Fri Oct 18 12:17:09 1996 Enrique Melero <justine@iprolink.ch>
* sysdeps/libm-ieee754/s_finitel.c: Change function name to
`finitel'.
Fri Oct 18 00:01:10 1996 Ulrich Drepper <drepper@cygnus.com>
* string/Makefile (tests): Add stratcliff.
* string/stratcliff.c: New file. Test for string function at
the edge of the usable memory.
Thu Oct 17 22:10:19 1996 Ulrich Drepper <drepper@cygnus.com>
* Makerules ($(libdir)/libc.so): Fix typo.
* elf/ldd.sh.in: Test whether given file really exist and give
better message if it is not available.
Thu Oct 17 04:25:38 1996 Ulrich Drepper <drepper@cygnus.com>
* sysdeps/unix/sysv/linux/sys/shm_buf.h: Add definition for
SHM_R and SHM_W.
* locale/programs/localedef.c (main): Test with -1 to find out
Diffstat (limited to 'string')
-rw-r--r-- | string/Makefile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/string/Makefile b/string/Makefile index c120b7d..d817d15 100644 --- a/string/Makefile +++ b/string/Makefile @@ -38,7 +38,7 @@ routines := strcat strchr strcmp strcoll strcpy strcspn \ delete extract insert stringify) \ envz basename -tests := tester testcopy test-ffs tst-strlen +tests := tester testcopy test-ffs tst-strlen stratcliff distribute := memcopy.h pagecopy.h @@ -47,3 +47,4 @@ include ../Rules tester-ENV = LANGUAGE=C CFLAGS-tester.c = -fno-builtin CFLAGS-tst-strlen.c = -fno-builtin +CFLAGS-stratcliff.c = -fno-builtin |