diff options
author | Roland McGrath <roland@gnu.org> | 1999-10-09 02:05:37 +0000 |
---|---|---|
committer | Roland McGrath <roland@gnu.org> | 1999-10-09 02:05:37 +0000 |
commit | 9711ee5c1f6949affbb66994d2c5443ad9394e70 (patch) | |
tree | 93aa52ad6b32951c337bf3c2eb65e59bb8c2ee38 /server.c | |
parent | 3485a16e54e689ff0e7f3d6b26e44bad76c547c5 (diff) | |
download | mig-9711ee5c1f6949affbb66994d2c5443ad9394e70.tar.gz mig-9711ee5c1f6949affbb66994d2c5443ad9394e70.tar.bz2 mig-9711ee5c1f6949affbb66994d2c5443ad9394e70.zip |
1999-10-08 Roland McGrath <roland@baalperazim.frob.com>
* server.c (WriteIncludes): Write:
#ifndef _GNU_SOURCE
#define _GNU_SOURCE 1
#endif
into the output before all else. This is required for building
stubs with GNU libc's built-in Mach/MiG support code.
* user.c (WriteIncludes): Likewise.
Diffstat (limited to 'server.c')
-rw-r--r-- | server.c | 20 |
1 files changed, 12 insertions, 8 deletions
@@ -1,25 +1,25 @@ -/* +/* * Mach Operating System * Copyright (c) 1991,1990 Carnegie Mellon University * All Rights Reserved. - * + * * Permission to use, copy, modify and distribute this software and its * documentation is hereby granted, provided that both the copyright * notice and this permission notice appear in all copies of the * software, derivative works or modified versions, and any portions * thereof, and that both notices appear in supporting documentation. - * + * * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS "AS IS" * CONDITION. CARNEGIE MELLON DISCLAIMS ANY LIABILITY OF ANY KIND FOR * ANY DAMAGES WHATSOEVER RESULTING FROM THE USE OF THIS SOFTWARE. - * + * * Carnegie Mellon requests users of this software to return to - * + * * Software Distribution Coordinator or Software.Distribution@CS.CMU.EDU * School of Computer Science * Carnegie Mellon University * Pittsburgh PA 15213-3890 - * + * * any improvements or extensions that they make and grant Carnegie Mellon * the rights to redistribute these changes. */ @@ -35,6 +35,10 @@ static void WriteIncludes(FILE *file) { + fprintf(file, "#ifndef _GNU_SOURCE\n"); + fprintf(file, "#define _GNU_SOURCE 1"); + fprintf(file, "#endif\n\n"); + fprintf(file, "#define EXPORT_BOOLEAN\n"); fprintf(file, "#include <mach/boolean.h>\n"); fprintf(file, "#include <mach/kern_return.h>\n"); @@ -81,7 +85,7 @@ WriteProlog(FILE *file) { fprintf(file, "/* Module %s */\n", SubsystemName); fprintf(file, "\n"); - + WriteIncludes(file); WriteBogusDefines(file); WriteGlobalDecls(file); @@ -348,7 +352,7 @@ WriteReplyInit(FILE *file, const routine_t *rt) { printed_nl = TRUE; fprintf(file, "\n"); - fprintf(file, "\tmsgh_simple = %s;\n", + fprintf(file, "\tmsgh_simple = %s;\n", strbool(rt->rtSimpleSendReply)); } |