![]() ![]() | ![]() |
version 1.1, 2014/08/16 19:00:01 | version 1.10, 2015/11/07 13:14:21 | ||
---|---|---|---|
|
|
||
# $Id$ | # $Id$ | ||
# | # | ||
# Copyright (c) 2014 Ingo Schwarze <schwarze@openbsd.org> | # Copyright (c) 2014, 2015 Ingo Schwarze <schwarze@openbsd.org> | ||
# | # | ||
# Permission to use, copy, modify, and distribute this software for any | # Permission to use, copy, modify, and distribute this software for any | ||
# purpose with or without fee is hereby granted, provided that the above | # purpose with or without fee is hereby granted, provided that the above | ||
|
|
||
HAVE_WCHAR=0 | HAVE_WCHAR=0 | ||
# When man(1) or apropos(1) is called without -m and -M options, | |||
# MANPATH is not set in the environment, man.conf(5) is not available | |||
# and manpath(1) not used, manuals are searched for in the following | |||
# directory trees by default. | |||
MANPATH_DEFAULT="/usr/share/man:/usr/X11R6/man:/usr/local/man" | |||
# In manual pages written in the mdoc(7) language, the operating system | # In manual pages written in the mdoc(7) language, the operating system | ||
# version is displayed in the page footer line. If an operating system | # version is displayed in the page footer line. If an operating system | ||
# is specified as an argument to the .Os macro, that is always used. | # is specified as an argument to the .Os macro, that is always used. | ||
|
|
||
# If you do not want uname(3) to be called but instead want a fixed | # If you do not want uname(3) to be called but instead want a fixed | ||
# string to be used, use the following line: | # string to be used, use the following line: | ||
OSNAME="OpenBSD 5.5" | OSNAME="OpenBSD 5.6" | ||
# The following installation directories are used. | # The following installation directories are used. | ||
# It is possible to set only one or a few of these variables, | # It is possible to set only one or a few of these variables, | ||
|
|
||
INCLUDEDIR="${PREFIX}/include/mandoc" | INCLUDEDIR="${PREFIX}/include/mandoc" | ||
LIBDIR="${PREFIX}/lib/mandoc" | LIBDIR="${PREFIX}/lib/mandoc" | ||
MANDIR="${PREFIX}/man" | MANDIR="${PREFIX}/man" | ||
EXAMPLEDIR="${PREFIX}/share/examples/mandoc" | |||
# The man(1) utility needs to know where the manuals reside. | |||
# We know of two ways to tell it: via manpath(1) or man.conf(5). | |||
# The latter is used by OpenBSD and NetBSD, the former by most | |||
# other systems. | |||
# Force usage of manpath(1). | |||
# If it is not installed or not operational, | |||
# man(1), makewhatis(8), and apropos(1) will not work properly. | |||
HAVE_MANPATH=1 | |||
# Force usage of man.conf(5). | |||
# If it does not exist or contains no valid configuration, | |||
# man(1), makewhatis(8), and apropos(1) will not work properly. | |||
HAVE_MANPATH=0 | |||
# Some distributions may want to avoid naming conflicts | |||
# with the configuration files of other man(1) implementations. | |||
# This changes the name of the installed section 5 manual page as well. | |||
MANM_MANCONF="mandoc.conf" # default is "man.conf" | |||
# Some distributions may want to avoid naming conflicts among manuals. | |||
# If you want to change the names of installed section 7 manual pages, | |||
# the following alternative names are suggested. | |||
# The suffix ".7" will automatically be appended. | |||
# It is possible to set only one or a few of these variables, | |||
# there is no need to copy the whole block. | |||
MANM_MAN="mandoc_man" # default is "man" | |||
MANM_MDOC="mandoc_mdoc" # default is "mdoc" | |||
MANM_ROFF="mandoc_roff" # default is "roff" | |||
MANM_EQN="mandoc_eqn" # default is "eqn" | |||
MANM_TBL="mandoc_tbl" # default is "tbl" | |||
# Some distributions may want to avoid naming conflicts | |||
# with other man(1) and soelim(1) utilities. | |||
# If you want to change the names of binary programs, | |||
# the following alternative names are suggested. | |||
# Using different names is possible as well. | |||
# This changes the names of the installed section 1 manual pages as well. | |||
BINM_MAN=mman # default is "man" | |||
BINM_SOELIM=msoelim # default is "soelim" | |||
# It is possible to change the utility program used for installation | # It is possible to change the utility program used for installation | ||
# and the modes files are installed with. The defaults are: | # and the modes files are installed with. The defaults are: | ||
|
|
||
CFLAGS="${CFLAGS} -I/usr/local/include" | CFLAGS="${CFLAGS} -I/usr/local/include" | ||
# The man(1) utility needs to know where the manuals reside. | # Some distributions may want to avoid naming conflicts | ||
# We know of two ways to tell it: via manpath(1) or man.conf(5). | # with another implementation of apropos(1) and makewhatis(8). | ||
# The latter is used by OpenBSD and NetBSD, the former by most | # If you want to change the names of the binary programs, | ||
# other systems. | # the following alternative names are suggested. | ||
# Using other names is possible as well. | |||
# This changes the names of the installed section 1 and section 8 | |||
# manual pages as well. | |||
# It is possible to set only one or two of these variables, | |||
# there is no need to copy the whole block. | |||
# Force usage of manpath(1). | BINM_APROPOS=mapropos # default is "apropos" | ||
# If it is not installed or not operational, | BINM_WHATIS=mwhatis # default is "whatis" | ||
# makewhatis(8) and apropos(1) will not work properly. | BINM_MAKEWHATIS=mandocdb # default is "makewhatis" | ||
HAVE_MANPATH=1 | # When using the "homebrew" package manager on Mac OS X, the actual | ||
# manuals are located in a so-called "cellar" and only symlinked | |||
# into the manual trees. To allow mandoc to follow such symlinks, | |||
# you have to specify the physical location of the cellar as returned | |||
# by realpath(3), for example: | |||
# Force usage of man.conf(5). | PREFIX="/usr/local" | ||
# If it does not exist or contains no valid configuration, | HOMEBREWDIR="${PREFIX}/Cellar" | ||
# makewhatis(8) and apropos(1) will not work properly. | |||
HAVE_MANPATH=0 | |||
# --- user settings related man.cgi ------------------------------------ | # --- user settings related man.cgi ------------------------------------ | ||
# By default, building man.cgi(8) is disabled. To enable it, copy | # By default, building man.cgi(8) is disabled. To enable it, copy | ||
|
|
||
HAVE_STRLCPY=0 | HAVE_STRLCPY=0 | ||
HAVE_STRPTIME=0 | HAVE_STRPTIME=0 | ||
HAVE_STRSEP=0 | HAVE_STRSEP=0 | ||
HAVE_STRTONUM=0 | |||
HAVE_SQLITE3=0 | HAVE_SQLITE3=0 | ||
HAVE_SQLITE3_ERRSTR=0 | HAVE_SQLITE3_ERRSTR=0 |