#include <sys/types.h>
#include <sys/queue.h>
#include <stdbool.h>
#include <stdlib.h>
#include <string.h>
#ifdef __cplusplus
#include <string>
class configword {
private:
std::string cw_word;
bool cw_eof;
bool cw_eol;
public:
configword() : cw_word(""), cw_eof(false), cw_eol(false) {}
configword(std::string &&word) : cw_word(word), cw_eof(false), cw_eol(false) {}
bool eof() const {
return (cw_eof);
}
bool eol() const {
return (cw_eol);
}
configword &eof(bool eof) {
cw_eof = eof;
return (*this);
}
configword &eol(bool eol) {
cw_eol = eol;
return (*this);
}
char operator[](int idx) {
return (cw_word[idx]);
}
operator const char*() const {
return (cw_word.c_str());
}
const std::string &operator*() const {
return (cw_word);
}
const std::string *operator->() const {
return (&cw_word);
}
};
configword get_word(FILE *);
configword get_quoted_word(FILE *);
#endif
__BEGIN_DECLS
struct cfgfile {
STAILQ_ENTRY(cfgfile) cfg_next;
char *cfg_path;
};
extern STAILQ_HEAD(cfgfile_head, cfgfile) cfgfiles;
struct file_list {
STAILQ_ENTRY(file_list) f_next;
char *f_fn;
int f_type;
u_char f_flags;
char *f_compilewith;
char *f_depends;
char *f_clean;
char *f_warn;
const char *f_objprefix;
const char *f_srcprefix;
};
struct files_name {
char *f_name;
STAILQ_ENTRY(files_name) f_next;
};
#define NORMAL 1
#define NODEPEND 4
#define LOCAL 5
#define DEVDONE 0x80000000
#define TYPEMASK 0x7fffffff
#define NO_IMPLCT_RULE 1
#define NO_OBJ 2
#define BEFORE_DEPEND 4
#define NOWERROR 16
#define NO_CTFCONVERT 32
struct device {
int d_done;
char *d_name;
char *yyfile;
#define UNKNOWN -2
STAILQ_ENTRY(device) d_next;
};
struct config {
char *s_sysname;
};
extern char *machinename;
extern char *machinearch;
struct cputype {
char *cpu_name;
SLIST_ENTRY(cputype) cpu_next;
};
extern SLIST_HEAD(cputype_head, cputype) cputype;
struct opt {
char *op_name;
char *op_value;
int op_ownfile;
char *yyfile;
SLIST_ENTRY(opt) op_next;
SLIST_ENTRY(opt) op_append;
};
extern SLIST_HEAD(opt_head, opt) opt, mkopt, rmopts;
struct opt_list {
char *o_name;
char *o_file;
int o_flags;
#define OL_ALIAS 1
SLIST_ENTRY(opt_list) o_next;
};
extern SLIST_HEAD(opt_list_head, opt_list) otab;
struct envvar {
char *env_str;
bool env_is_file;
STAILQ_ENTRY(envvar) envvar_next;
};
extern STAILQ_HEAD(envvar_head, envvar) envvars;
struct hint {
char *hint_name;
STAILQ_ENTRY(hint) hint_next;
};
extern STAILQ_HEAD(hint_head, hint) hints;
struct includepath {
char *path;
SLIST_ENTRY(includepath) path_next;
};
extern SLIST_HEAD(includepath_head, includepath) includepath;
#define KERNCONFTAG "%%KERNCONFFILE%%"
#define OPT_AUTOGEN "CONFIG_AUTOGENERATED"
extern char *ident;
extern char kernconfstr[];
extern int do_trace;
extern int incignore;
char *path(const char *);
char *raisestr(char *);
void remember(const char *);
void moveifchanged(const char *, const char *);
int yylex(void);
int yyparse(void);
void options(void);
void makefile(void);
void makeenv(void);
void makehints(void);
void headers(void);
void cfgfile_add(const char *);
void cfgfile_removeall(void);
FILE *open_makefile_template(void);
extern STAILQ_HEAD(device_head, device) dtab;
extern char errbuf[80];
extern int yyline;
extern const char *yyfile;
extern STAILQ_HEAD(file_list_head, file_list) ftab;
extern STAILQ_HEAD(files_name_head, files_name) fntab;
extern STAILQ_HEAD(options_files_name_head, files_name) optfntab;
extern int debugging;
extern int found_defaults;
extern int verbose;
extern int maxusers;
extern int versreq;
extern char *PREFIX;
extern char srcdir[];
__END_DECLS;
#define eq(a,b) (!strcmp(a,b))
#define ns(s) strdup(s)