configure.local.example revision 276219
1# $Id: configure.local.example,v 1.2 2014/12/09 09:14:33 schwarze Exp $
2#
3# Copyright (c) 2014 Ingo Schwarze <schwarze@openbsd.org>
4#
5# Permission to use, copy, modify, and distribute this software for any
6# purpose with or without fee is hereby granted, provided that the above
7# copyright notice and this permission notice appear in all copies.
8#
9# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
10# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
11# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
12# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
13# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
14# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
15# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16
17# For all settings documented in this file, there are reasonable
18# defaults and/or the ./configure script attempts autodetection.
19# Consequently, you only need to create a file ./configure.local
20# and put any of these settings into it if ./configure autodetection
21# fails or if you want to make different choices for other reasons.
22
23# If autodetection fails, please tell <tech@mdocml.bsd.lv>.
24
25# We recommend that you write ./configure.local from scratch and
26# only put the lines there you need.  This file contains examples.
27# It is not intended as a template to be copied as a whole.
28
29# --- user settings relevant for all builds ----------------------------
30
31# For -Tutf8 and -Tlocale operation, mandoc(1) requires <locale.h>
32# providing setlocale(3) and <wchar.h> providing wcwidth(3) and
33# putwchar(3) with a wchar_t storing UCS-4 values.  Theoretically,
34# the latter should be tested with the __STDC_ISO_10646__ feature
35# macro.  In practice, many <wchar.h> headers do not provide that
36# macro even though they treat wchar_t as UCS-4.  So the automatic
37# test only checks that wchar_t is wide enough, that is, at least
38# four bytes.
39
40# The following line forces multi-byte support.
41# If your C library does not treat wchar_t as UCS-4, the UTF-8 output
42# mode will print garbage.
43
44HAVE_WCHAR=1
45
46# The following line disables multi-byte support.
47# The output modes -Tutf8 and -Tlocale will be the same as -Tascii.
48
49HAVE_WCHAR=0
50
51# In manual pages written in the mdoc(7) language, the operating system
52# version is displayed in the page footer line.  If an operating system
53# is specified as an argument to the .Os macro, that is always used.
54# If the .Os macro has no argument and an operation system is specified
55# with the mandoc(1) -Ios= command line option, that is used.
56# Otherwise, the uname(3) library function is called at runtime to find
57# the name of the operating system.
58# If you do not want uname(3) to be called but instead want a fixed
59# string to be used, use the following line:
60
61OSNAME="OpenBSD 5.6"
62
63# The following installation directories are used.
64# It is possible to set only one or a few of these variables,
65# there is no need to copy the whole block.
66# Even if you set PREFIX to something else, the other variables
67# pick it up without copying them all over.
68
69PREFIX="/usr/local"
70BINDIR="${PREFIX}/bin"
71SBINDIR="${PREFIX}/sbin"
72INCLUDEDIR="${PREFIX}/include/mandoc"
73LIBDIR="${PREFIX}/lib/mandoc"
74MANDIR="${PREFIX}/man"
75EXAMPLEDIR="${PREFIX}/share/examples/mandoc"
76
77# Some distributions may want to avoid naming conflicts among manuals.
78# If you want to change the names of installed section 7 manual pages,
79# the following alternative names are suggested.
80# The suffix ".7" will automatically be appended.
81# It is possible to set only one or a few of these variables,
82# there is no need to copy the whole block.
83
84MANM_MAN="mandoc_man"		# default is "man"
85MANM_MDOC="mandoc_mdoc"		# default is "mdoc"
86MANM_ROFF="mandoc_roff"		# default is "roff"
87MANM_EQN="mandoc_eqn"		# default is "eqn"
88MANM_TBL="mandoc_tbl"		# default is "tbl"
89
90# It is possible to change the utility program used for installation
91# and the modes files are installed with.  The defaults are:
92
93INSTALL="install"
94INSTALL_PROGRAM="${INSTALL} -m 0555"
95INSTALL_LIB="${INSTALL} -m 0444"
96INSTALL_MAN="${INSTALL} -m 0444"
97INSTALL_DATA="${INSTALL} -m 0444"
98
99# --- user settings related to database support ------------------------
100
101# By default, building makewhatis(8) and apropos(1) is enabled.
102# To disable it, for example to avoid the dependency on SQLite3,
103# use the following line.  It that case, the remaining settings
104# in this section are irrelevant.
105
106BUILD_DB=0
107
108# Two libraries are needed: SQLite3 and ohash(3).
109# Autoconfiguration tries the following linker flags to find them.
110# If none of these work, add a working DBLIB line to configure.local,
111# disabling autodetection for library directories.
112
113DBLIB="-lsqlite3"
114DBLIB="-lsqlite3 -lutil"
115DBLIB="-L/usr/local/lib -lsqlite3"
116
117# When library autodetection decides to use -L/usr/local/lib,
118# -I/usr/local/include is automatically added to CFLAGS.
119# If you manually set DBLIB to something including -L/usr/local/lib,
120# chances are you will also need the following line:
121
122CFLAGS="${CFLAGS} -I/usr/local/include"
123
124# The man(1) utility needs to know where the manuals reside.
125# We know of two ways to tell it: via manpath(1) or man.conf(5).
126# The latter is used by OpenBSD and NetBSD, the former by most
127# other systems.
128
129# Force usage of manpath(1).
130# If it is not installed or not operational,
131# makewhatis(8) and apropos(1) will not work properly.
132
133HAVE_MANPATH=1
134
135# Force usage of man.conf(5).
136# If it does not exist or contains no valid configuration,
137# makewhatis(8) and apropos(1) will not work properly.
138
139HAVE_MANPATH=0
140
141# Some distributions may want to avoid naming conflicts
142# with groff, man-db, or other tools.
143# If you want to change the names of binary programs,
144# the following alternative names are suggested.
145# Using other names is possible as well.
146# This changes the names of the installed section 1 and section 8
147# manual pages as well.
148# It is possible to set only one or a few of these variables,
149# there is no need to copy the whole block.
150
151BINM_APROPOS=mapropos		# default is "apropos"
152BINM_MAN=mman			# default is "man"
153BINM_WHATIS=mwhatis		# default is "whatis"
154BINM_MAKEWHATIS=mandocdb	# default is "makewhatis"
155
156# --- user settings related man.cgi ------------------------------------
157
158# By default, building man.cgi(8) is disabled.  To enable it, copy
159# cgi.h.example to cgi.h, edit it, and use the following line.
160# Obviously, this requires that BUILD_DB is enabled, too.
161
162BUILD_CGI=1
163
164# The remaining settings in this section are only relevant if BUILD_CGI
165# is enabled.  Otherwise, they have no effect either way.
166
167# By default, man.cgi(8) is linked statically.
168# Some systems do not support static linking, for example Mac OS X.
169# In that case, use the following line:
170
171STATIC=
172
173# Some systems, for example Linux, require -pthread for static linking:
174
175STATIC="-static -pthread"
176
177# Some directories.
178# This works just like PREFIX, see above.
179
180WWWPREFIX="/var/www"
181HTDOCDIR="${WWWPREFIX}/htdocs"
182CGIBINDIR="${WWWPREFIX}/cgi-bin"
183
184# --- settings that rarely need to be touched --------------------------
185
186# Do not set these variables unless you really need to.
187
188# You can manually override the compiler to be used.
189# But that's rarely useful because ./configure asks your make(1)
190# which compiler to use, and that answer will hardly be wrong.
191
192CC=cc
193
194# The default compiler flags are:
195
196CFLAGS="-g -W -Wall -Wstrict-prototypes -Wno-unused-parameter -Wwrite-strings"
197
198# In rare cases, it may be required to skip individual automatic tests.
199# Each of the following variables can be set to 0 (test will not be run
200# and will be regarded as failed) or 1 (test will not be run and will
201# be regarded as successful).
202
203HAVE_DIRENT_NAMLEN=0
204HAVE_FGETLN=0
205HAVE_FTS=0
206HAVE_GETSUBOPT=0
207HAVE_MMAP=0
208HAVE_REALLOCARRAY=0
209HAVE_STRCASESTR=0
210HAVE_STRLCAT=0
211HAVE_STRLCPY=0
212HAVE_STRPTIME=0
213HAVE_STRSEP=0
214
215HAVE_SQLITE3=0
216HAVE_SQLITE3_ERRSTR=0
217HAVE_OHASH=0
218