summaryrefslogtreecommitdiffstats
path: root/src/paths.h.in
blob: ee9ec75eb545298750fc6ac618ee0fcf20313855 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
/* paths.h - included in man-config.c */
/*
 * Define the absolute path to the configuration file and programs used.
 * (If no configuration file is found then the preset values are used.)
 */
#ifndef CONFIG_FILE
#define CONFIG_FILE "@man_config_file@"
#endif

static struct paths {
    char *name;
    char *path;			/* path plus command options - never NULL */
} paths[] = {
    { "MANBIN",	"" },		/* value unused */
    { "APROPOS",  "@apropos@" },
    { "WHATIS",   "@whatis@" },
    { "TROFF",	"@troff@" },
    { "NROFF",	"@nroff@" },
    { "JNROFF",	"@jnroff@" },
    { "EQN",	"@eqn@" },
    { "NEQN",	"@neqn@" },
    { "JNEQN",	"@jneqn@" },
    { "TBL",	"@tbl@" },
    { "COL",	"@pcol@" },
    { "REFER",	"@refer@" },
    { "PIC",	"@pic@" },
    { "VGRIND",	"@vgrind@" },
    { "GRAP",	"@grap@" },
    { "PAGER",	"@pager@" },
    { "BROWSER","@browser@" },
    { "HTMLPAGER", "@htmlpager@" },
    { "CMP",	"@cmp@" },
    { "CAT",	"@cat@" },
    { "COMPRESS",	"@compress@" },
    { "COMPRESS_EXT", "@compress_ext@" }, /* not a path, just a string variable */
    { "DECOMPRESS",	"@decompress@" },
    { "MANSECT",  "@sections@"},          /* idem */
    { "MANDEFOPTIONS", ""}                /* idem */
};