diff options
author | Roland McGrath <roland@gnu.org> | 1995-02-22 03:00:48 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1995-02-22 03:00:48 +0000 |
commit | 23ad311df0e01caa58b54afb8ae999a3ffc1ba7a (patch) | |
tree | d7564cd262bf8f7b5922ee3c9e2af5575bc1ba02 | |
parent | 6b08e0a45557d361d898c821f1203c7be4cab86d (diff) | |
download | glibc-23ad311df0e01caa58b54afb8ae999a3ffc1ba7a.tar.gz glibc-23ad311df0e01caa58b54afb8ae999a3ffc1ba7a.tar.xz glibc-23ad311df0e01caa58b54afb8ae999a3ffc1ba7a.zip |
Tue Feb 21 21:53:30 1995 Roland McGrath <roland@churchy.gnu.ai.mit.edu>
* sysdeps/sparc/Makefile [subdir=crypt] (crypt): Reset only if set to original value of `crypt'. * sysdeps/unix/sysv/sysv4/solaris2/sparc/Makefile [subdir=crypt] (crypt): New variable, set to crypt.solar.
-rw-r--r-- | ChangeLog | 7 | ||||
-rw-r--r-- | hurd/STATUS | 10 | ||||
-rw-r--r-- | sysdeps/sparc/Makefile | 2 |
3 files changed, 10 insertions, 9 deletions
diff --git a/ChangeLog b/ChangeLog index 1bfda73904..929fb46a0d 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,3 +1,10 @@ +Tue Feb 21 21:53:30 1995 Roland McGrath <roland@churchy.gnu.ai.mit.edu> + + * sysdeps/sparc/Makefile [subdir=crypt] (crypt): Reset only if set + to original value of `crypt'. + * sysdeps/unix/sysv/sysv4/solaris2/sparc/Makefile [subdir=crypt] + (crypt): New variable, set to crypt.solar. + Tue Feb 21 11:50:37 1995 Brendan Kehoe (brendan@zen.org) * sysdeps/sparc/Makefile (routines): Reference `dotmul', not `mul'. diff --git a/hurd/STATUS b/hurd/STATUS index ceb0a865d0..35662e2940 100644 --- a/hurd/STATUS +++ b/hurd/STATUS @@ -1,4 +1,4 @@ -Status of Hurd support in libc. Last updated 22 Nov 1994. +Status of Hurd support in libc. Last updated 21 Feb 95. Roland McGrath <roland@gnu.ai.mit.edu> Everything not noted below is implemented, most of it tested. There are @@ -6,10 +6,6 @@ various very small things unfinished or thought to be perhaps wrong throughout the code, marked by comments containing `XXX'. -* Signals and job control work, but are a very hairy area. - There are various ways the signal thread can block and fail - to respond when the program is losing badly. - * We are not sure about possible races between setpgrp (A, pgrp) from process B vs process A receiving proc_newids. @@ -31,9 +27,6 @@ throughout the code, marked by comments containing `XXX'. * malloc is a kludge. -* Nothing uses mapped io. Eventually stdio and read/write/seek should. I - have written a little code for this, but it is far from finished. - * Resource limits do not really work; current implementation is patchy and inconsistent. @@ -65,7 +58,6 @@ profil recvmsg revoke sendmsg -setpriority sstk statfs swapon diff --git a/sysdeps/sparc/Makefile b/sysdeps/sparc/Makefile index 376fbcce53..b651dfb2c6 100644 --- a/sysdeps/sparc/Makefile +++ b/sysdeps/sparc/Makefile @@ -52,6 +52,8 @@ 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 |