Blob


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