aboutsummaryrefslogtreecommitdiff
path: root/global.c
diff options
context:
space:
mode:
authorRoland McGrath <roland@gnu.org>2001-06-08 00:49:10 +0000
committerRoland McGrath <roland@gnu.org>2001-06-08 00:49:10 +0000
commit1a10fa88882c793dd77cb11a2c70760a970ffbec (patch)
tree3c9432e7b0d6517c0b4a3d85664475949d20e9c0 /global.c
parent7ac5b7901a929f676620f8e0816047478f9a5b25 (diff)
downloadmig-1a10fa88882c793dd77cb11a2c70760a970ffbec.tar.gz
mig-1a10fa88882c793dd77cb11a2c70760a970ffbec.tar.bz2
mig-1a10fa88882c793dd77cb11a2c70760a970ffbec.zip
2001-06-07 Roland McGrath <roland@frob.com>
* global.c (DefaultFiles): New variable, boolean initialized to true. (more_global): Leave null file name variables alone if it's false. * global.h (DefaultFiles): Declare it. * migcom.c (parseArgs): New option -n clears it. * mig.in: Grok -n (pass it through) and put it in the usage message.
Diffstat (limited to 'global.c')
-rw-r--r--global.c42
1 files changed, 23 insertions, 19 deletions
diff --git a/global.c b/global.c
index f1b25ac..4a8a42c 100644
--- a/global.c
+++ b/global.c
@@ -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
+ *
+ * CARNEGIE MELLON ALLOWS FREE USE OF THIS SOFTWARE IN ITS
* 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 the
* rights to redistribute these changes.
*/
@@ -27,6 +27,7 @@
#include "error.h"
#include "global.h"
+boolean_t DefaultFiles = TRUE;
boolean_t BeQuiet = FALSE;
boolean_t BeVerbose = FALSE;
boolean_t UseMsgRPC = TRUE;
@@ -72,20 +73,23 @@ more_global(void)
if (SubsystemName == strNULL)
fatal("no SubSystem declaration");
- if (UserHeaderFileName == strNULL)
- UserHeaderFileName = strconcat(SubsystemName, ".h");
- else if (streql(UserHeaderFileName, "/dev/null"))
- UserHeaderFileName = strNULL;
+ if (DefaultFiles)
+ {
+ if (UserHeaderFileName == strNULL)
+ UserHeaderFileName = strconcat(SubsystemName, ".h");
+ else if (streql(UserHeaderFileName, "/dev/null"))
+ UserHeaderFileName = strNULL;
- if (UserFileName == strNULL)
- UserFileName = strconcat(SubsystemName, "User.c");
- else if (streql(UserFileName, "/dev/null"))
- UserFileName = strNULL;
+ if (UserFileName == strNULL)
+ UserFileName = strconcat(SubsystemName, "User.c");
+ else if (streql(UserFileName, "/dev/null"))
+ UserFileName = strNULL;
- if (ServerFileName == strNULL)
- ServerFileName = strconcat(SubsystemName, "Server.c");
- else if (streql(ServerFileName, "/dev/null"))
- ServerFileName = strNULL;
+ if (ServerFileName == strNULL)
+ ServerFileName = strconcat(SubsystemName, "Server.c");
+ else if (streql(ServerFileName, "/dev/null"))
+ ServerFileName = strNULL;
+ }
if (ServerDemux == strNULL)
ServerDemux = strconcat(SubsystemName, "_server");