diff options
author | Roland McGrath <roland@gnu.org> | 1996-07-17 19:32:22 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1996-07-17 19:32:22 +0000 |
commit | 3867ee645cc03dba836667728d60cabbae111255 (patch) | |
tree | 5d9a19f5037d772d95c4161c11ad05cf532737d7 /sysdeps | |
parent | ec2ac6d5303ac21282d0ab2865f3e00746bedacb (diff) | |
download | glibc-3867ee645cc03dba836667728d60cabbae111255.tar.gz glibc-3867ee645cc03dba836667728d60cabbae111255.tar.xz glibc-3867ee645cc03dba836667728d60cabbae111255.zip |
Wed Jul 17 20:41:30 1996 Ulrich Drepper <drepper@cygnus.com>
* stdio-common/vfscanf.c: Major change. Now read character from stream only if needed. Before it was read after the previous character was used. Bug reported by Martin Goik <goma0002@FH-Karlsruhe.DE> * stdio-common/tstscanf.c: Change test program so that return value is != 0 if one test failed. * sysdeps/m68k/Makefile (crypt): Variable removed. * sysdeps/sparc/Makefile: Likewise.
Diffstat (limited to 'sysdeps')
-rw-r--r-- | sysdeps/m68k/Makefile | 9 | ||||
-rw-r--r-- | sysdeps/sparc/Makefile | 10 |
2 files changed, 1 insertions, 18 deletions
diff --git a/sysdeps/m68k/Makefile b/sysdeps/m68k/Makefile index ffdc68274e..a5e9064767 100644 --- a/sysdeps/m68k/Makefile +++ b/sysdeps/m68k/Makefile @@ -16,15 +16,6 @@ # not, write to the Free Software Foundation, Inc., 675 Mass Ave, # Cambridge, MA 02139, USA. -# This uses MIT assembler syntax. We have no convenient -# way to choose a sysdep file based on MIT vs Motorola syntax. -# No existing m68k ports use Motorola syntax. - -# Don't use crypt/crypt.sun3.S. It's not pic-clean. -ifneq (yes,$(build-shared)) -crypt := crypt.sun3 -endif - # The mpn functions need this. All existing 68k ports use MIT syntax. If # a new port wants to use Motorola or Sony syntax, it can redefine this # variable. diff --git a/sysdeps/sparc/Makefile b/sysdeps/sparc/Makefile index d4124a6eb7..dfe74979b8 100644 --- a/sysdeps/sparc/Makefile +++ b/sysdeps/sparc/Makefile @@ -1,4 +1,4 @@ -# Copyright (C) 1991, 1992, 1993, 1994, 1995 Free Software Foundation, Inc. +# Copyright (C) 1991, 1992, 1993, 1994, 1995, 1996 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 @@ -49,11 +49,3 @@ $(divrem:%=$(sysdep_dir)/sparc/%.S): $(sysdep_dir)/sparc/divrem.m4 test ! -d CVS || cvs commit -m'Regenerated from $<' $@ sysdep-realclean := $(sysdep-realclean) $(divrem:%=sysdeps/sparc/%.S) - -ifeq ($(subdir),crypt) - -ifeq ($(crypt),crypt) -crypt := crypt.sparc # Use crypt/crypt.sparc.S. -endif - -endif # crypt |