mirror of
https://gitlab.isc.org/isc-projects/bind9
synced 2025-08-29 21:47:59 +00:00
[master] add configured prefixes to summary
4746. [cleanup] Add configured prefixes to configure summary output. [RT #46153]
This commit is contained in:
parent
a57a6dbe62
commit
c0f8a8f30a
3
CHANGES
3
CHANGES
@ -1,3 +1,6 @@
|
|||||||
|
4746. [cleanup] Add configured prefixes to configure summary
|
||||||
|
output. [RT #46153]
|
||||||
|
|
||||||
4745. [test] Add color-coded pass/fail messages to system
|
4745. [test] Add color-coded pass/fail messages to system
|
||||||
tests when running on terminals that support them.
|
tests when running on terminals that support them.
|
||||||
[RT #45977]
|
[RT #45977]
|
||||||
|
25
configure
vendored
25
configure
vendored
@ -937,6 +937,7 @@ infodir
|
|||||||
docdir
|
docdir
|
||||||
oldincludedir
|
oldincludedir
|
||||||
includedir
|
includedir
|
||||||
|
runstatedir
|
||||||
localstatedir
|
localstatedir
|
||||||
sharedstatedir
|
sharedstatedir
|
||||||
sysconfdir
|
sysconfdir
|
||||||
@ -1100,6 +1101,7 @@ datadir='${datarootdir}'
|
|||||||
sysconfdir='${prefix}/etc'
|
sysconfdir='${prefix}/etc'
|
||||||
sharedstatedir='${prefix}/com'
|
sharedstatedir='${prefix}/com'
|
||||||
localstatedir='${prefix}/var'
|
localstatedir='${prefix}/var'
|
||||||
|
runstatedir='${localstatedir}/run'
|
||||||
includedir='${prefix}/include'
|
includedir='${prefix}/include'
|
||||||
oldincludedir='/usr/include'
|
oldincludedir='/usr/include'
|
||||||
docdir='${datarootdir}/doc/${PACKAGE_TARNAME}'
|
docdir='${datarootdir}/doc/${PACKAGE_TARNAME}'
|
||||||
@ -1352,6 +1354,15 @@ do
|
|||||||
| -silent | --silent | --silen | --sile | --sil)
|
| -silent | --silent | --silen | --sile | --sil)
|
||||||
silent=yes ;;
|
silent=yes ;;
|
||||||
|
|
||||||
|
-runstatedir | --runstatedir | --runstatedi | --runstated \
|
||||||
|
| --runstate | --runstat | --runsta | --runst | --runs \
|
||||||
|
| --run | --ru | --r)
|
||||||
|
ac_prev=runstatedir ;;
|
||||||
|
-runstatedir=* | --runstatedir=* | --runstatedi=* | --runstated=* \
|
||||||
|
| --runstate=* | --runstat=* | --runsta=* | --runst=* | --runs=* \
|
||||||
|
| --run=* | --ru=* | --r=*)
|
||||||
|
runstatedir=$ac_optarg ;;
|
||||||
|
|
||||||
-sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb)
|
-sbindir | --sbindir | --sbindi | --sbind | --sbin | --sbi | --sb)
|
||||||
ac_prev=sbindir ;;
|
ac_prev=sbindir ;;
|
||||||
-sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \
|
-sbindir=* | --sbindir=* | --sbindi=* | --sbind=* | --sbin=* \
|
||||||
@ -1489,7 +1500,7 @@ fi
|
|||||||
for ac_var in exec_prefix prefix bindir sbindir libexecdir datarootdir \
|
for ac_var in exec_prefix prefix bindir sbindir libexecdir datarootdir \
|
||||||
datadir sysconfdir sharedstatedir localstatedir includedir \
|
datadir sysconfdir sharedstatedir localstatedir includedir \
|
||||||
oldincludedir docdir infodir htmldir dvidir pdfdir psdir \
|
oldincludedir docdir infodir htmldir dvidir pdfdir psdir \
|
||||||
libdir localedir mandir
|
libdir localedir mandir runstatedir
|
||||||
do
|
do
|
||||||
eval ac_val=\$$ac_var
|
eval ac_val=\$$ac_var
|
||||||
# Remove trailing slashes.
|
# Remove trailing slashes.
|
||||||
@ -1642,6 +1653,7 @@ Fine tuning of the installation directories:
|
|||||||
--sysconfdir=DIR read-only single-machine data [PREFIX/etc]
|
--sysconfdir=DIR read-only single-machine data [PREFIX/etc]
|
||||||
--sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com]
|
--sharedstatedir=DIR modifiable architecture-independent data [PREFIX/com]
|
||||||
--localstatedir=DIR modifiable single-machine data [PREFIX/var]
|
--localstatedir=DIR modifiable single-machine data [PREFIX/var]
|
||||||
|
--runstatedir=DIR modifiable per-process data [LOCALSTATEDIR/run]
|
||||||
--libdir=DIR object code libraries [EPREFIX/lib]
|
--libdir=DIR object code libraries [EPREFIX/lib]
|
||||||
--includedir=DIR C header files [PREFIX/include]
|
--includedir=DIR C header files [PREFIX/include]
|
||||||
--oldincludedir=DIR C header files for non-gcc [/usr/include]
|
--oldincludedir=DIR C header files for non-gcc [/usr/include]
|
||||||
@ -26173,7 +26185,8 @@ report() {
|
|||||||
test "no" = "$use_dlz_stub" || \
|
test "no" = "$use_dlz_stub" || \
|
||||||
echo " Stub (--with-dlz-stub)"
|
echo " Stub (--with-dlz-stub)"
|
||||||
test "$use_dlz_bdb $use_dlz_ldap $use_dlz_mysql $use_dlz_odbc $use_dlz_postgres $use_dlz_filesystem $use_dlz_stub" = "no no no no no no no" && echo " None"
|
test "$use_dlz_bdb $use_dlz_ldap $use_dlz_mysql $use_dlz_odbc $use_dlz_postgres $use_dlz_filesystem $use_dlz_stub" = "no no no no no no no" && echo " None"
|
||||||
echo
|
|
||||||
|
echo "-------------------------------------------------------------------------------"
|
||||||
|
|
||||||
echo "Features disabled or unavailable on this platform:"
|
echo "Features disabled or unavailable on this platform:"
|
||||||
$use_threads || echo " Multiprocessing support (--enable-threads)"
|
$use_threads || echo " Multiprocessing support (--enable-threads)"
|
||||||
@ -26225,11 +26238,19 @@ report() {
|
|||||||
test "X$ZLIB" = "X" && echo " HTTP zlib compression (--with-zlib)"
|
test "X$ZLIB" = "X" && echo " HTTP zlib compression (--with-zlib)"
|
||||||
test "X$NZD_TOOLS" = "X" && echo " LMDB database to store configuration for 'addzone' zones (--with-lmdb)"
|
test "X$NZD_TOOLS" = "X" && echo " LMDB database to store configuration for 'addzone' zones (--with-lmdb)"
|
||||||
|
|
||||||
|
echo "-------------------------------------------------------------------------------"
|
||||||
|
echo "Configured paths:"
|
||||||
|
echo " prefix: $prefix"
|
||||||
|
echo " sysconfdir: $sysconfdir"
|
||||||
|
echo " localstatedir: $localstatedir"
|
||||||
|
|
||||||
|
|
||||||
if test "X$ac_unrecognized_opts" != "X"; then
|
if test "X$ac_unrecognized_opts" != "X"; then
|
||||||
echo
|
echo
|
||||||
echo "Unrecognized options:"
|
echo "Unrecognized options:"
|
||||||
echo " $ac_unrecognized_opts"
|
echo " $ac_unrecognized_opts"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if test "yes" != "$enable_full_report"; then
|
if test "yes" != "$enable_full_report"; then
|
||||||
echo "-------------------------------------------------------------------------------"
|
echo "-------------------------------------------------------------------------------"
|
||||||
echo "For more detail, use --enable-full-report."
|
echo "For more detail, use --enable-full-report."
|
||||||
|
11
configure.in
11
configure.in
@ -5507,7 +5507,8 @@ report() {
|
|||||||
test "no" = "$use_dlz_stub" || \
|
test "no" = "$use_dlz_stub" || \
|
||||||
echo " Stub (--with-dlz-stub)"
|
echo " Stub (--with-dlz-stub)"
|
||||||
test "$use_dlz_bdb $use_dlz_ldap $use_dlz_mysql $use_dlz_odbc $use_dlz_postgres $use_dlz_filesystem $use_dlz_stub" = "no no no no no no no" && echo " None"
|
test "$use_dlz_bdb $use_dlz_ldap $use_dlz_mysql $use_dlz_odbc $use_dlz_postgres $use_dlz_filesystem $use_dlz_stub" = "no no no no no no no" && echo " None"
|
||||||
echo
|
|
||||||
|
echo "-------------------------------------------------------------------------------"
|
||||||
|
|
||||||
echo "Features disabled or unavailable on this platform:"
|
echo "Features disabled or unavailable on this platform:"
|
||||||
$use_threads || echo " Multiprocessing support (--enable-threads)"
|
$use_threads || echo " Multiprocessing support (--enable-threads)"
|
||||||
@ -5559,11 +5560,19 @@ report() {
|
|||||||
test "X$ZLIB" = "X" && echo " HTTP zlib compression (--with-zlib)"
|
test "X$ZLIB" = "X" && echo " HTTP zlib compression (--with-zlib)"
|
||||||
test "X$NZD_TOOLS" = "X" && echo " LMDB database to store configuration for 'addzone' zones (--with-lmdb)"
|
test "X$NZD_TOOLS" = "X" && echo " LMDB database to store configuration for 'addzone' zones (--with-lmdb)"
|
||||||
|
|
||||||
|
echo "-------------------------------------------------------------------------------"
|
||||||
|
echo "Configured paths:"
|
||||||
|
echo " prefix: $prefix"
|
||||||
|
echo " sysconfdir: $sysconfdir"
|
||||||
|
echo " localstatedir: $localstatedir"
|
||||||
|
|
||||||
|
|
||||||
if test "X$ac_unrecognized_opts" != "X"; then
|
if test "X$ac_unrecognized_opts" != "X"; then
|
||||||
echo
|
echo
|
||||||
echo "Unrecognized options:"
|
echo "Unrecognized options:"
|
||||||
echo " $ac_unrecognized_opts"
|
echo " $ac_unrecognized_opts"
|
||||||
fi
|
fi
|
||||||
|
|
||||||
if test "yes" != "$enable_full_report"; then
|
if test "yes" != "$enable_full_report"; then
|
||||||
echo "-------------------------------------------------------------------------------"
|
echo "-------------------------------------------------------------------------------"
|
||||||
echo "For more detail, use --enable-full-report."
|
echo "For more detail, use --enable-full-report."
|
||||||
|
Loading…
x
Reference in New Issue
Block a user