aboutsummaryrefslogtreecommitdiff
path: root/usr.sbin/config/config.h
diff options
context:
space:
mode:
authorWarner Losh <imp@FreeBSD.org>2006-10-24 00:31:59 +0000
committerWarner Losh <imp@FreeBSD.org>2006-10-24 00:31:59 +0000
commit86418d0cef7fa638d3e509c57090923ca791264b (patch)
treed2c2a39616e0e8222e96a33e03e28df657833fef /usr.sbin/config/config.h
parent55659bb594542f8ee487667b4fbf8a2c3ae77179 (diff)
downloadsrc-86418d0cef7fa638d3e509c57090923ca791264b.tar.gz
src-86418d0cef7fa638d3e509c57090923ca791264b.zip
End my resistance to jmg's multiple hints files and bring in support
for having multiple hints files generate a correct hints.c (eg, with all the specified ones catenated together).
Notes
Notes: svn path=/head/; revision=163638
Diffstat (limited to 'usr.sbin/config/config.h')
-rw-r--r--usr.sbin/config/config.h8
1 files changed, 7 insertions, 1 deletions
diff --git a/usr.sbin/config/config.h b/usr.sbin/config/config.h
index 31d3375d6174..08ac7969e228 100644
--- a/usr.sbin/config/config.h
+++ b/usr.sbin/config/config.h
@@ -127,9 +127,15 @@ struct opt_list {
SLIST_HEAD(, opt_list) otab;
+struct hint {
+ char *hint_name;
+ STAILQ_ENTRY(hint) hint_next;
+};
+
+STAILQ_HEAD(hint_head, hint) hints;
+
extern char *ident;
extern char *env;
-extern char *hints;
extern int do_trace;
extern int envmode;
extern int hintmode;