From: Thomas Bushnell, BSG Date: Thu, 29 Aug 1996 19:45:04 +0000 (+0000) Subject: *** empty log message *** X-Git-Tag: cvs/libc-960830~2 X-Git-Url: http://review.tizen.org/git/?a=commitdiff_plain;h=bfb826224b971666d5e9f9ce3b04c1cfbf839258;p=platform%2Fupstream%2Fglibc.git *** empty log message *** * mach/Makefile (MIGFLAGS-mach/mach4): Define variable. mach/Machrules (mig.uh, mig.__h): Include $(user-MIGFLAGS) and $(MIGFLAGS-$*) here too, as well as in the code-generating MiG calls. --- diff --git a/ChangeLog b/ChangeLog index a1332fe..dbee7a6 100644 --- a/ChangeLog +++ b/ChangeLog @@ -1,5 +1,9 @@ Thu Aug 29 12:00:30 1996 Thomas Bushnell, n/BSG + * mach/Makefile (MIGFLAGS-mach/mach4): Define variable. + mach/Machrules (mig.uh, mig.__h): Include $(user-MIGFLAGS) and + $(MIGFLAGS-$*) here too, as well as in the code-generating MiG calls. + * hurd/hurdinline.c: Include "hurd.h" for function definitions too. * stdio/fseek.c (fseek): Don't assume we know the file position; diff --git a/mach/Machrules b/mach/Machrules index 4bde0fe..2cb3158 100644 --- a/mach/Machrules +++ b/mach/Machrules @@ -149,14 +149,14 @@ $(objpfx)%.uh:; $(mig.uh) define mig.uh $(make-target-directory) $(include-%.defs) | \ -$(MIG) - /dev/null $(MIGFLAGS) \ +$(MIG) - /dev/null $(MIGFLAGS) $(user-MIGFLAGS) $(MIGFLAGS-$*) \ -header $@ -server /dev/null -user /dev/null endef $(objpfx)%.__h:; $(mig.__h) define mig.__h $(make-target-directory) $(include-%.defs) | \ -$(MIG) - /dev/null $(MIGFLAGS) -prefix __ \ +$(MIG) - /dev/null $(MIGFLAGS) $(user-MIGFLAGS) $(MIGFLAGS-$*) -prefix __ \ -header $@ -server /dev/null -user /dev/null endef diff --git a/mach/Makefile b/mach/Makefile index 31ec7e0..6d9e6b2 100644 --- a/mach/Makefile +++ b/mach/Makefile @@ -107,6 +107,9 @@ user-interfaces := $(filter-out mach/mach_interface \ $(user-interfaces)) endif +# For some reason, the calls in this file are `protected' by an ifdef. +MIGFLAGS-mach/mach4=-DMACH_PCSAMPLE + # Make the MiG stubs for $(mach-shortcuts) be CALL_rpc. migdefines += $(foreach call,$(mach-shortcuts),-D$(call)=$(call)_rpc) mach/mach_interface.uh mach/mach_host.uh mach/mach_port.uh: $(objpfx)mach-syscalls.mk