2
0
mirror of https://gitlab.isc.org/isc-projects/bind9 synced 2025-08-29 21:47:59 +00:00

[master] Fix OPTIONS formatting

This commit is contained in:
Michał Kępień 2017-11-27 09:35:08 +01:00
parent 19f6a63184
commit 31b6ae485e
2 changed files with 24 additions and 20 deletions

41
OPTIONS
View File

@ -4,21 +4,26 @@ defined in configure.
Some of these settings are: Some of these settings are:
|Setting |Description | |-----------------------------------| Setting Description
----------------------------------------| |-DISC_MEM_DEFAULTFILL=1| Overwrite memory with tag values when allocating
Overwrite memory with tag values when allocating or freeing it; this -DISC_MEM_DEFAULTFILL=1 or freeing it; this impairs performance but
impairs performance but makes debugging of memory problems easier.| | makes debugging of memory problems easier.
-DISC_MEM_TRACKLINES=0|Don't track memory allocations by file and line Don't track memory allocations by file and line
number; this improves performance but makes debugging more difficult.| | -DISC_MEM_TRACKLINES=0 number; this improves performance but makes
-DISC_FACILITY=LOG_LOCAL0|Change the default syslog facility for named| | debugging more difficult.
-DNS_CLIENT_DROPPORT=0|Disable dropping queries from particular well-known -DISC_FACILITY=LOG_LOCAL0 Change the default syslog facility for named
ports:| |-DCHECK_SIBLING=0|Don't check sibling glue in named-checkzone| | -DNS_CLIENT_DROPPORT=0 Disable dropping queries from particular
-DCHECK_LOCAL=0|Don't check out-of-zone addresses in named-checkzone| | well-known ports:
-DNS_RUN_PID_DIR=0|Create default PID files in ${localstatedir}/run rather -DCHECK_SIBLING=0 Don't check sibling glue in named-checkzone
than ${localstatedir}/run/named/| |-DNS_RPZ_MAX_ZONES=64|Increase the -DCHECK_LOCAL=0 Don't check out-of-zone addresses in
maximum number of configurable response policy zones from 32 to 64; this named-checkzone
is the highest possible setting| |-DISC_BUFFER_USEINLINE=0|Disable the use -DNS_RUN_PID_DIR=0 Create default PID files in ${localstatedir}/run
of inline functions to implement the isc_buffer API: this reduces rather than ${localstatedir}/run/named/
performance but may be useful when debugging | |-DISC_HEAP_CHECK|Test heap Increase the maximum number of configurable
consistency after every heap operation; used when debugging | -DNS_RPZ_MAX_ZONES=64 response policy zones from 32 to 64; this is the
highest possible setting
Disable the use of inline functions to implement
-DISC_BUFFER_USEINLINE=0 the isc_buffer API: this reduces performance but
may be useful when debugging
-DISC_HEAP_CHECK Test heap consistency after every heap operation;
used when debugging

View File

@ -22,5 +22,4 @@ Some of these settings are:
|`-DNS_RUN_PID_DIR=0`|Create default PID files in `${localstatedir}/run` rather than `${localstatedir}/run/named/`| |`-DNS_RUN_PID_DIR=0`|Create default PID files in `${localstatedir}/run` rather than `${localstatedir}/run/named/`|
|`-DNS_RPZ_MAX_ZONES=64`|Increase the maximum number of configurable response policy zones from 32 to 64; this is the highest possible setting| |`-DNS_RPZ_MAX_ZONES=64`|Increase the maximum number of configurable response policy zones from 32 to 64; this is the highest possible setting|
|`-DISC_BUFFER_USEINLINE=0`|Disable the use of inline functions to implement the `isc_buffer` API: this reduces performance but may be useful when debugging | |`-DISC_BUFFER_USEINLINE=0`|Disable the use of inline functions to implement the `isc_buffer` API: this reduces performance but may be useful when debugging |
|`-DISC_HEAP_CHECK`|Test heap consistency after every heap operation; used |`-DISC_HEAP_CHECK`|Test heap consistency after every heap operation; used when debugging|
when debugging |