02
2022-07-04
op
# Copyright (c) 2014-2022 Ingo Schwarze <schwarze@openbsd.org>
04
2022-07-04
op
# Permission to use, copy, modify, and distribute this software for any
05
2022-07-04
op
# purpose with or without fee is hereby granted, provided that the above
06
2022-07-04
op
# copyright notice and this permission notice appear in all copies.
08
2022-07-04
op
# THE SOFTWARE IS PROVIDED "AS IS" AND THE AUTHOR DISCLAIMS ALL WARRANTIES
09
2022-07-04
op
# WITH REGARD TO THIS SOFTWARE INCLUDING ALL IMPLIED WARRANTIES OF
10
2022-07-04
op
# MERCHANTABILITY AND FITNESS. IN NO EVENT SHALL THE AUTHOR BE LIABLE FOR
11
2022-07-04
op
# ANY SPECIAL, DIRECT, INDIRECT, OR CONSEQUENTIAL DAMAGES OR ANY DAMAGES
12
2022-07-04
op
# WHATSOEVER RESULTING FROM LOSS OF USE, DATA OR PROFITS, WHETHER IN AN
13
2022-07-04
op
# ACTION OF CONTRACT, NEGLIGENCE OR OTHER TORTIOUS ACTION, ARISING OUT OF
14
2022-07-04
op
# OR IN CONNECTION WITH THE USE OR PERFORMANCE OF THIS SOFTWARE.
16
2022-07-04
op
# For all settings documented in this file, there are reasonable
17
2022-07-04
op
# defaults and/or the ./configure script attempts autodetection.
18
2022-07-04
op
# Consequently, you only need to create a file ./configure.local
19
2022-07-04
op
# and put any of these settings into it if ./configure autodetection
20
2022-07-04
op
# fails or if you want to make different choices for other reasons.
22
2022-07-04
op
# If autodetection fails, please tell <gmid@omarpolo.com>.
24
2022-07-04
op
# We recommend that you write ./configure.local from scratch and
25
2022-07-04
op
# only put the lines there you need. This file contains examples.
26
2022-07-04
op
# It is not intended as a template to be copied as a whole.
28
2022-07-04
op
# Some systems may want to set additional linker flags for all the
29
2022-07-04
op
# binaries, not only for those using libmandoc, for example for
30
2022-07-04
op
# hardening options.
32
2022-07-04
op
LDFLAGS="-Wl,-z,relro"
34
2022-07-04
op
# It is possible to change the utility program used for installation
35
2022-07-04
op
# and the modes files are installed with. The defaults are:
37
2022-07-04
op
INSTALL="install"
38
2022-07-04
op
INSTALL_PROGRAM="${INSTALL} -m 0555"
39
2022-07-04
op
INSTALL_LIB="${INSTALL} -m 0444"
40
2022-07-04
op
INSTALL_MAN="${INSTALL} -m 0444"
41
2022-07-04
op
INSTALL_DATA="${INSTALL} -m 0444"
43
2022-07-04
op
# In rare cases, it may be required to skip individual automatic tests.
44
2022-07-04
op
# Each of the following variables can be set to 0 (test will not be run
45
2022-07-04
op
# and will be regarded as failed) or 1 (test will not be run and will
46
2022-07-04
op
# be regarded as successful).
49
2022-07-04
op
HAVE_EXPLICIT_BZERO=0
50
2022-07-04
op
HAVE_FREEZERO=0
51
2022-07-04
op
HAVE_GETDTABLECOUNT=0
52
2022-07-04
op
HAVE_GETDTABLESIZE=0
53
2022-07-04
op
HAVE_GETPROGNAME=0
54
2022-07-04
op
HAVE_IMSG=0
55
2022-07-04
op
HAVE_LANDLOCK=0
56
2022-07-04
op
HAVE_PR_SET_NAME=0
57
2022-07-04
op
HAVE_PROGRAM_INVOCATION_SHORT_NAME=0
58
2022-07-04
op
HAVE_QUEUE_H=0
59
2022-07-04
op
HAVE_REALLOCARRAY=0
60
2022-07-04
op
HAVE_RECALLOCARRAY=0
61
2022-07-04
op
HAVE_SETPROCTITLE=0
62
2022-07-04
op
HAVE_STRLCAT=0
63
2022-07-04
op
HAVE_STRLCPY=0
64
2022-07-04
op
HAVE_STRTONUM=0
65
2022-07-04
op
HAVE_TREE_H=0
66
2022-07-04
op
HAVE_VASPRINTF=0