aboutsummaryrefslogtreecommitdiffstatshomepage
path: root/manpath.c
Commit message (Collapse)AuthorAgeFilesLines
* Support leading, trailing and double colons in MANPATH to prepend,Kristaps Dzonsons2011-12-241-7/+46
| | | | | | | | append or insert the man.conf(5) default path; compatible with GNU manpath(1), implementation by kristaps@, heavily tweaked by schwarze@. Updates to MANPATH documentation applied to whatis.1, apropos.1, and catman.8 also.
* Remove stray warnx() left in the manpath.c code.Kristaps Dzonsons2011-12-131-2/+1
|
* Have manpath.c properly use manpath(1), that is, using -C and -m and so on.Kristaps Dzonsons2011-12-131-42/+53
| | | | | This also cleans up the code a little bit. While here, make some functions static that are only used within manpath.c.
* implement -C (alternative config file) for apropos(1) and mandocdb(8),Ingo Schwarze2011-12-121-6/+7
| | | | | including various tweaks to the whatis(8) manual; ok kristaps@
* Sync to OpenBSD, mostly gratuitous and whitespace differences,Ingo Schwarze2011-11-261-9/+10
| | | | | | | | | but a few serious things as well: * -M overrides MANPATH * -m prepends to the path * put back database close calls that got lost in mandocdb * missing sys/types.h in manpath.c, needed for size_t ok kristaps@
* Allow man.conf file to be assignable.Kristaps Dzonsons2011-11-241-4/+4
|
* Export the manpath_manconf() function, slightly reorderng manpath.c whileKristaps Dzonsons2011-11-241-14/+21
| | | | | doing so. This will be used by a jailed man.cgi, as the cache built by manup(8) creates a man.conf for it to use.
* Support for Open/NetBSD's /etc/man.conf and others' manpath(1).Kristaps Dzonsons2011-11-231-0/+167
Most of this code (except the manpath part) written by schwarze@. This isn't hooked into anything yet.