]> git.ipfire.org Git - thirdparty/glibc.git/commitdiff
*** empty log message ***
authorThomas Bushnell, BSG <thomas@gnu.org>
Mon, 23 Sep 1996 21:51:36 +0000 (21:51 +0000)
committerThomas Bushnell, BSG <thomas@gnu.org>
Mon, 23 Sep 1996 21:51:36 +0000 (21:51 +0000)
Mon Sep 23 15:31:04 1996  Thomas Bushnell, n/BSG  <thomas@gnu.ai.mit.edu>

* hurd/Makefile ($(includedir)/rpc/netdb.h): There is no make
variable `top_srcdir' in libc; use $(..) instead.

* sysdeps/mach/hurd/Makefile (rtld-installed-name): Delete special
definition.  It was a *Mistake*.  (With a capital M.)

* sysdeps/mach/getsysstats.c (__get_nprocs): Renamed from
__get_nproc.
(__get_nprocs_conf): Renamed from __get_nproc_conf.

ChangeLog
hurd/Makefile
sysdeps/mach/getsysstats.c
sysdeps/mach/hurd/Makefile

index b538fa6096f326ea23489e12a95da97fd18576af..7520d2258784fea6d30311a2dd0dfa58337290d7 100644 (file)
--- a/ChangeLog
+++ b/ChangeLog
@@ -1,3 +1,15 @@
+Mon Sep 23 15:31:04 1996  Thomas Bushnell, n/BSG  <thomas@gnu.ai.mit.edu>
+
+       * hurd/Makefile ($(includedir)/rpc/netdb.h): There is no make
+       variable `top_srcdir' in libc; use $(..) instead.
+
+       * sysdeps/mach/hurd/Makefile (rtld-installed-name): Delete special
+       definition.  It was a *Mistake*.  (With a capital M.)
+
+       * sysdeps/mach/getsysstats.c (__get_nprocs): Renamed from
+       __get_nproc.
+       (__get_nprocs_conf): Renamed from __get_nproc_conf.
+
 Sun Sep 22 15:18:41 1996  Ulrich Drepper  <drepper@cygnus.com>
 
        * sysdeps/unix/sysv/linux/init-first.c: Define dummy function
index 363aeeaa98f16288ca354bf02aa0010db594cd3b..bb63065383cade4ec2bb29cf887bc51a7f69fb0f 100644 (file)
@@ -73,7 +73,7 @@ include ../Rules
 # from $(subdirs), and this rule arranges for the header in question
 # to get installed.
 install-headers-nosubdir: $(includedir)/rpc/netdb.h
-$(includedir)/rpc/netdb.h: $(top_srcdir)/sunrpc/rpc/netdb.h
+$(includedir)/rpc/netdb.h: $(..)sunrpc/rpc/netdb.h
        $(do-install)
 
 
index cd72e734ae5835373b26732c28ca81306c341220..4d1f671c78e4719c2f8468b87e10071b0bd3c8cd 100644 (file)
@@ -25,7 +25,7 @@ Cambridge, MA 02139, USA.  */
 
 /* Return the number of processors configured on the system. */
 int
-__get_nproc_conf ()
+__get_nprocs_conf ()
 {
   struct host_basic_info hbi;
   kern_return_t err;
@@ -42,7 +42,7 @@ __get_nproc_conf ()
 
 /* Return the number of processors currently available on the system. */
 int
-__get_nproc ()
+__get_nprocs ()
 {
   struct host_basic_info hbi;
   kern_return_t err;
index fa2f66ac5f0767091aa2ae178ae3b56d0384637b..74ceb2e6e1461703da20804ea87faf2b4b874a21 100644 (file)
 
 ifdef in-Makerules
 
-# This should be in a more global place, because the problem it solves
-# is universal, but this is good enough for here.
-rtld-installed-name := ld.so$(libc.so-version)
-
 subdirs := $(filter-out sunrpc,$(subdirs)) # XXX skip broken dirs
 # See hurd/Makefile for commands that install some crucial sunrpc headers.