1996-01-04 17:00:45 +00:00
|
|
|
|
# Copyright (C) 1991, 92, 93, 94, 95, 96 Free Software Foundation, Inc.
|
1995-02-18 01:27:10 +00:00
|
|
|
|
# This file is part of the GNU C Library.
|
|
|
|
|
|
|
|
|
|
# The GNU C Library is free software; you can redistribute it and/or
|
|
|
|
|
# modify it under the terms of the GNU Library General Public License
|
|
|
|
|
# as published by the Free Software Foundation; either version 2 of
|
|
|
|
|
# the License, or (at your option) any later version.
|
|
|
|
|
|
|
|
|
|
# The GNU C Library is distributed in the hope that it will be useful,
|
|
|
|
|
# but WITHOUT ANY WARRANTY; without even the implied warranty of
|
|
|
|
|
# MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the GNU
|
|
|
|
|
# Library General Public License for more details.
|
|
|
|
|
|
|
|
|
|
# You should have received a copy of the GNU Library General Public
|
|
|
|
|
# License along with the GNU C Library; see the file COPYING.LIB. If
|
|
|
|
|
# not, write to the Free Software Foundation, Inc., 675 Mass Ave,
|
|
|
|
|
# Cambridge, MA 02139, USA.
|
|
|
|
|
|
|
|
|
|
subdir := hurd
|
|
|
|
|
|
|
|
|
|
all:
|
|
|
|
|
|
|
|
|
|
# Some things below (but before including Rules) use configuration variables.
|
|
|
|
|
include ../Makeconfig
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
headers = hurd.h $(interface-headers) \
|
1996-01-04 17:00:45 +00:00
|
|
|
|
$(addprefix hurd/,fd.h id.h port.h signal.h sigpreempt.h \
|
|
|
|
|
userlink.h resource.h threadvar.h lookup.h)
|
1995-02-18 01:27:10 +00:00
|
|
|
|
|
1995-08-14 22:49:23 +00:00
|
|
|
|
distribute := hurdstartup.h hurdfault.h intr-rpc.defs STATUS
|
1995-02-18 01:27:10 +00:00
|
|
|
|
|
|
|
|
|
# The RPC interfaces go in a separate library.
|
Thu Mar 16 00:04:41 1995 Roland McGrath <roland@churchy.gnu.ai.mit.edu>
* locale/C-ctype.c: New correct data generated by drepper.
* Rules: Don't use $(libc.a).
Parsing of grouped numbers contributed by Ulrich Drepper.
* stdlib/strtol.c (__strtol_internal): Renamed from strtol. Take
new flag arg; if nonzero, parse locale-dependent thousands
grouping and interpret only the prefix that is correctly grouped.
(strtol): Define this to call _strtol_internal with zero for the flag.
Use a weak symbol for the definition.
* stdlib/strtod.c (strtod, __strtod_internal): Likewise.
Check for the exponent of the number overflowing the float format.
* stdlib/stdlib.h (__strtof, __strtold): Declarations removed.
(__strto{f,d,ld,l,ul,q,uq}_internal): Declare these functions.
[__OPTIMIZE__]: Define inline functions calling those.
* stdlib/grouping.h: New file, written by drepper.
* stdlib/Makefile (distribute): Add grouping.h.
* stdio/vfscanf.c: Grok %' modifier to numeric conversions. Call
__strtoX_internal with the grouping flag set iff the modifier is
present.
Wed Mar 15 00:40:54 1995 Roland McGrath <roland@churchy.gnu.ai.mit.edu>
* sysdeps/generic/memchr.c: Fix typos: limit.h -> limits.h.
* mach/Machrules: Produce static deps for all object flavors.
[interface-library]: Remove all these variables and rules.
($(interface-library)-routines): Define this variable.
(extra-libs): Append $(interface-library) to this.
* mach/Makefile (interface-library): Omit .a suffix.
* hurd/Makefile: Likewise.
Tue Mar 14 23:40:31 1995 Roland McGrath <roland@churchy.gnu.ai.mit.edu>
* stdio/internals.c (flushbuf): If !FLUSH_ONLY, don't skip out
early if no new data in buffer after priming.
* Makerules (object-suffixes, libtypes): Move all these variables
to Makeconfig.
* Makeconfig (object-suffixes, libtypes): Moved here from Makerules.
* Makerules (build-extra-lib): New canned sequence.
* sysdeps/mach/hurd/euidaccess.c: Include fcntl.h. Declare ERR;
fix uses of FILE and PORT. Remove bogus weak alias for `access'.
* sysdeps/mach/hurd/dirfd.c: Include hurd/fd.h and errno.h.
Add missing semicolon.
* sysdeps/mach/hurd/opendir.c: Include hurd/fd.h. Use a `struct
hurd_fd *' temp var, since DIRP->__fd is a `void *'.
* sysdeps/mach/hurd/readdir.c: Include hurd/fd.h.
* stdlib/wcstombs.c: #if 0 out code for non-ASCII chars until the
locale data format is implemented.
* sysdeps/mach/hurd/i386/trampoline.c (_hurd_setup_sighandler):
Pass &__sigreturn on the stack to the trampoline code, so it is
not position-dependent.
* stdio/printf_fp.c (NDEBUG): Define this to disable assert.
Don't include <stdarg.h>.
(__printf_fp): Last arg ARGS is now `const void **const';
dereference ARGS[0] instead of using va_arg.
* locale/setlocale.c: In LC_ALL case, initialize CATEGORY before
loop to install data.
* locale/loadlocale.c (_nl_category_num_items): Use _NL_ITEM_INDEX
to extract number from item code.
(_nl_load_locale): Close the descriptor when finished.
* malloc/realloc.c (_realloc_internal): Call _malloc_internal in
place of malloc.
* time/tzfile.c (__tzfile_default): Initialize RULE_STDOFF to zero.
1995-03-16 05:32:45 +00:00
|
|
|
|
interface-library := libhurduser
|
1995-02-18 01:27:10 +00:00
|
|
|
|
user-interfaces := $(addprefix hurd/,\
|
1995-11-10 20:38:31 +00:00
|
|
|
|
auth startup \
|
|
|
|
|
process process_request \
|
1995-02-18 01:27:10 +00:00
|
|
|
|
msg msg_reply msg_request \
|
1995-10-25 02:19:39 +00:00
|
|
|
|
exec exec_startup crash interrupt \
|
1996-02-10 10:00:27 +00:00
|
|
|
|
fs fsys io term tioctl socket ifsock)
|
1995-02-18 01:27:10 +00:00
|
|
|
|
server-interfaces := hurd/msg
|
|
|
|
|
|
1995-04-24 09:00:07 +00:00
|
|
|
|
routines = hurdstartup hurdinit \
|
|
|
|
|
hurdid hurdlookup hurdpid hurdrlimit hurdprio hurdexec \
|
1995-02-18 01:27:10 +00:00
|
|
|
|
setauth \
|
|
|
|
|
pid2task task2pid \
|
|
|
|
|
getuids setuids getumask fchroot \
|
Sat Oct 14 02:52:36 1995 Ulrich Drepper <drepper@ipd.info.uni-karlsruhe.de>
* malloc/malloc.c (_malloc_internal): Performance fix. Move
if statement out of loop.
* stdio/_itoa.c, stdio/_itoa.h: Complete rewrite. Much faster
implementation using GMP functions. Contributed by
Torbjorn Granlund and Ulrich Drepper.
* stdio/test_rdwr.c: Include <errno.h>.
* sysdeps/i386/i586/Implies: New file.
New highly optimized string functions for i[345]86.
* sysdeps/i386/memchr.S, sysdeps/i386/memcmp.S: New files.
* sysdeps/i386/stpcpy.S, sysdeps/i386/stpncpy.S: New files.
* sysdeps/i386/strchr.S, sysdeps/i386/strcspn.S: New files.
* sysdeps/i386/strpbrk.S, sysdeps/i386/strrchr.S: New files.
* sysdeps/i386/strspn.S, sysdeps/i386/i486/strcat.S: New files.
* sysdeps/i386/i486/strlen.S, sysdeps/i386/i586/strchr.S: New files.
* sysdeps/i386/i586/strlen.S: New file.
* sysdeps/i386/memchr.c: Removed. There is now an assembler version.
* sysdeps/i386/i586/memcopy.h (WORD_COPY_BWD): Parameters did
not correspond to used values.
* sysdeps/unix/sysv/linux/nfs/nfs.h: New file. Simply a wrapper
around a kernel header file.
* sysdeps/unix/sysv/linux/Dist: Add it.
* sysdeps/unix/sysv/linux/Makefile [$(subdir)=sunrpc] (headers):
Likewise.
* sysdeps/unix/sysv/linux/local_lim.h: Rewrite. Instead of
defining ourself we use a kernel header file.
* sysdeps/unix/sysv/linux/i386/sysdep.h (DO_CALL): Optimize system
call handler for i586.
* sysdeps/unix/sysv/linux/sys/param.h: Add copyright and clean up.
Sat Oct 14 02:52:36 1995 Ulrich Drepper <drepper@ipd.info.uni-karlsruhe.de>
* malloc/malloc.c (_malloc_internal): Performance fix. Move
if statement out of loop.
* stdio/_itoa.c, stdio/_itoa.h: Complete rewrite. Much faster
implementation using GMP functions. Contributed by
Torbjorn Granlund and Ulrich Drepper.
* stdio/test_rdwr.c: Include <errno.h>.
* sysdeps/i386/i586/Implies: New file.
New highly optimized string functions for i[345]86.
* sysdeps/i386/memchr.S, sysdeps/i386/memcmp.S: New files.
* sysdeps/i386/stpcpy.S, sysdeps/i386/stpncpy.S: New files.
* sysdeps/i386/strchr.S, sysdeps/i386/strcspn.S: New files.
* sysdeps/i386/strpbrk.S, sysdeps/i386/strrchr.S: New files.
* sysdeps/i386/strspn.S, sysdeps/i386/i486/strcat.S: New files.
* sysdeps/i386/i486/strlen.S, sysdeps/i386/i586/strchr.S: New files.
* sysdeps/i386/i586/strlen.S: New file.
* sysdeps/i386/memchr.c: Removed. There is now an assembler version.
* sysdeps/i386/i586/memcopy.h (WORD_COPY_BWD): Parameters did
not correspond to used values.
* sysdeps/unix/sysv/linux/nfs/nfs.h: New file. Simply a wrapper
around a kernel header file.
* sysdeps/unix/sysv/linux/Dist: Add it.
* sysdeps/unix/sysv/linux/Makefile [$(subdir)=sunrpc] (headers):
Likewise.
* sysdeps/unix/sysv/linux/local_lim.h: Rewrite. Instead of
defining ourself we use a kernel header file.
* sysdeps/unix/sysv/linux/i386/sysdep.h (DO_CALL): Optimize system
call handler for i586.
* sysdeps/unix/sysv/linux/sys/param.h: Add copyright and clean up.
1995-10-16 01:37:51 +00:00
|
|
|
|
hurdsock hurdauth \
|
1995-02-18 01:27:10 +00:00
|
|
|
|
privports \
|
|
|
|
|
msgportdemux \
|
|
|
|
|
fopenport \
|
|
|
|
|
vpprintf \
|
|
|
|
|
ports-get ports-set hurdports hurdmsg \
|
1996-02-08 02:10:15 +00:00
|
|
|
|
$(sig) $(dtable) hurdinline port-cleanup report-wait
|
1995-02-18 01:27:10 +00:00
|
|
|
|
sig = hurdsig hurdfault faultexc siginfo hurd-raise preempt-sig \
|
1995-06-05 03:04:45 +00:00
|
|
|
|
trampoline longjmp-ts catch-exc exc2signal hurdkill sigunwind \
|
1996-01-04 17:00:45 +00:00
|
|
|
|
thread-self thread-cancel intr-msg catch-signal
|
1995-02-18 01:27:10 +00:00
|
|
|
|
dtable = dtable port2fd new-fd alloc-fd intern-fd \
|
|
|
|
|
getdport openport \
|
|
|
|
|
fd-close fd-read fd-write hurdioctl ctty-input ctty-output
|
|
|
|
|
|
|
|
|
|
# XXX this is a temporary hack; see hurdmalloc.h
|
|
|
|
|
routines += hurdmalloc
|
|
|
|
|
distribute += hurdmalloc.h
|
|
|
|
|
|
|
|
|
|
# Get the proper definition of `hurd-srcdir'.
|
|
|
|
|
include ../sysdeps/mach/hurd/Makefile
|
|
|
|
|
|
|
|
|
|
# Use and install the Hurd header files directly out of the Hurd source.
|
|
|
|
|
|
|
|
|
|
# Find the MiG defs files in the Hurd source.
|
|
|
|
|
vpath %.defs $(hurd-srcdir)
|
|
|
|
|
|
|
|
|
|
# Install all .h and .defs files we find in the Hurd's hurd/ directory.
|
|
|
|
|
hurd-headers := $(patsubst $(hurd-srcdir)/%,%,\
|
|
|
|
|
$(wildcard $(addprefix $(hurd-srcdir)/hurd/,\
|
|
|
|
|
*.defs *.h)))
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
# Don't distribute the Hurd headers; they are in the Hurd distribution.
|
|
|
|
|
dont_distribute = $(hurd-headers)
|
|
|
|
|
|
|
|
|
|
# DO NOT try to remake these in any way!!!
|
|
|
|
|
$(addprefix $(hurd-srcdir)/,$(hurd-headers)) : ;
|
|
|
|
|
install-others += $(addprefix $(includedir)/,$(hurd-headers))
|
|
|
|
|
$(includedir)/hurd/%: $(hurd-srcdir)/hurd/%; $(do-install)
|
|
|
|
|
|
|
|
|
|
include ../mach/Machrules
|
|
|
|
|
include ../Rules
|
|
|
|
|
|
|
|
|
|
# intr-rpc.defs defines the INTR_INTERFACE macro to make the generated RPC
|
1995-08-14 22:49:23 +00:00
|
|
|
|
# stubs import <hurd/signal.h> and #define __mach_msg to
|
|
|
|
|
# _hurd_intr_rpc_mach_msg.
|
1995-02-18 01:27:10 +00:00
|
|
|
|
user-MIGFLAGS += -imacros intr-rpc.defs
|
|
|
|
|
|
|
|
|
|
$(objpfx)fault%.c $(objpfx)fault%.h: $(mach-srcdir)/mach/%.defs
|
|
|
|
|
$(MIG) $(MIGFLAGS) -prefix _hurdsig_fault_ \
|
|
|
|
|
-server $(@:.h=.c) -sheader $(@:.c=.h) \
|
|
|
|
|
-user /dev/null -header /dev/null \
|
|
|
|
|
$<
|
|
|
|
|
generated += faultexc.c faultexc.h
|
|
|
|
|
|
|
|
|
|
# We need this static dependency to get faultexc.h generated the first time.
|
|
|
|
|
$(objpfx)hurdfault.o $(objpfx)hurdfault.d: \
|
|
|
|
|
$(objpfx)faultexc.h $(objpfx)faultexc.c
|