diff options
author | jkh <jkh@FreeBSD.org> | 2000-02-19 23:22:22 +0000 |
---|---|---|
committer | jkh <jkh@FreeBSD.org> | 2000-02-19 23:22:22 +0000 |
commit | cee74ce38920b8f7c2ff067518c0703bb0de870e (patch) | |
tree | 40bd2f2ed649cfae278188f3e8bb2b4bc20ff77a /release/sysinstall/sysinstall.h | |
parent | 841fc647e82546c5ace4a39b6928db40cb033cc6 (diff) | |
download | FreeBSD-src-cee74ce38920b8f7c2ff067518c0703bb0de870e.zip FreeBSD-src-cee74ce38920b8f7c2ff067518c0703bb0de870e.tar.gz |
If user says they're in the USA, record that fact in /etc/make.conf
Diffstat (limited to 'release/sysinstall/sysinstall.h')
-rw-r--r-- | release/sysinstall/sysinstall.h | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/release/sysinstall/sysinstall.h b/release/sysinstall/sysinstall.h index ce25f58..48c3939 100644 --- a/release/sysinstall/sysinstall.h +++ b/release/sysinstall/sysinstall.h @@ -340,6 +340,7 @@ extern Boolean RunningAsInit; /* Are we running stand-alone? */ extern Boolean DialogActive; /* Is the dialog() stuff up? */ extern Boolean ColorDisplay; /* Are we on a color display? */ extern Boolean OnVTY; /* On a syscons VTY? */ +Boolean USAResident; /* Are we cryptographically challenged? */ extern Variable *VarHead; /* The head of the variable chain */ extern Device *mediaDevice; /* Where we're getting our distribution from */ extern unsigned int Dists; /* Which distributions we want */ @@ -420,6 +421,7 @@ extern void command_func_add(char *key, commandFunc func, void *data); extern void configEnvironmentRC_conf(void); extern void configEnvironmentResolv(char *config); extern void configRC_conf(void); +extern void configMake_conf(char *config); extern int configFstab(dialogMenuItem *self); extern int configRC(dialogMenuItem *self); extern int configResolv(dialogMenuItem *self); |