1/* paths.h - included in man-config.c */
2/*
3 * Define the absolute path to the configuration file and programs used.
4 * (If no configuration file is found then the preset values are used.)
5 */
6#ifndef CONFIG_FILE
7#define CONFIG_FILE "@man_config_file@"
8#endif
9
10static struct paths {
11    char *name;
12    char *path;			/* path plus command options - never NULL */
13} paths[] = {
14    { "MANBIN",	"" },		/* value unused */
15    { "APROPOS",  "@apropos@" },
16    { "WHATIS",   "@whatis@" },
17    { "TROFF",	"@troff@" },
18    { "NROFF",	"@nroff@" },
19    { "JNROFF",	"@jnroff@" },
20    { "EQN",	"@eqn@" },
21    { "NEQN",	"@neqn@" },
22    { "JNEQN",	"@jneqn@" },
23    { "TBL",	"@tbl@" },
24    { "COL",	"@pcol@" },
25    { "REFER",	"@refer@" },
26    { "PIC",	"@pic@" },
27    { "VGRIND",	"@vgrind@" },
28    { "GRAP",	"@grap@" },
29    { "PAGER",	"@pager@" },
30    { "BROWSER","@browser@" },
31    { "HTMLPAGER", "@htmlpager@" },
32    { "CMP",	"@cmp@" },
33    { "CAT",	"@cat@" },
34    { "COMPRESS",	"@compress@" },
35    { "COMPRESS_EXT", "@compress_ext@" }, /* not a path, just a string variable */
36    { "DECOMPRESS",	"@decompress@" },
37    { "MANSECT",  "@sections@"},          /* idem */
38    { "MANDEFOPTIONS", ""}                /* idem */
39};
40