From a73035dc74f8f65c5e0becac265fda5c98142608 Mon Sep 17 00:00:00 2001 From: Karel Zak Date: Thu, 22 Apr 2021 15:59:54 +0200 Subject: [PATCH] build-sys: disable po-man by default, cleanup summary Signed-off-by: Karel Zak --- configure.ac | 71 ++++++++++++++++++++++++++-------------------------- 1 file changed, 36 insertions(+), 35 deletions(-) diff --git a/configure.ac b/configure.ac index 6a610b854..38209f73c 100644 --- a/configure.ac +++ b/configure.ac @@ -745,7 +745,7 @@ AM_CONDITIONAL([ENABLE_ASCIIDOC], [test "x$build_asciidoc" = xyes]) AC_ARG_ENABLE([poman], AS_HELP_STRING([--enable-poman], [generate translated man pages]), - [], [UL_DEFAULT_ENABLE([poman], [no])] + [], [enable_poman=no] ) UL_BUILD_INIT([poman]) UL_REQUIRES_PROGRAM([poman], [PO4A], [po4a], [translated man pages]) @@ -2627,50 +2627,51 @@ po-man/Makefile AC_OUTPUT AC_MSG_RESULT([ - ${PACKAGE} ${VERSION} + ${PACKAGE} ${VERSION} - prefix: ${prefix} - exec prefix: ${exec_prefix} + prefix: ${prefix} + exec prefix: ${exec_prefix} - bindir: ${bindir} - sbindir: ${sbindir} - libdir: ${libdir} - usrbin_execdir: ${usrbin_execdir} - usrsbin_execdir: ${usrsbin_execdir} - usrlib_execdir: ${usrlib_execdir} + bindir: ${bindir} + sbindir: ${sbindir} + libdir: ${libdir} + usrbin_execdir: ${usrbin_execdir} + usrsbin_execdir: ${usrsbin_execdir} + usrlib_execdir: ${usrlib_execdir} - localstatedir: ${localstatedir} - runstatedir: ${runstatedir} - includedir: ${includedir} - sysconfdir: ${sysconfdir} - sysconfstaticdir: ${sysconfstaticdir} + localstatedir: ${localstatedir} + runstatedir: ${runstatedir} + includedir: ${includedir} + sysconfdir: ${sysconfdir} + sysconfstaticdir: ${sysconfstaticdir} - vendordir: ${with_vendordir} + vendordir: ${with_vendordir} - compiler: ${CC} - cflags: ${CFLAGS} - suid cflags: ${SUID_CFLAGS} - ldflags: ${LDFLAGS} - suid ldflags: ${SUID_LDFLAGS} - ASAN enabled: ${enable_asan} + Python: ${PYTHON} + Python version: ${PYTHON_VERSION} + Python libs: ${pyexecdir} - Python: ${PYTHON} - Python version: ${PYTHON_VERSION} - Python libs: ${pyexecdir} + Bash completions: ${with_bashcompletiondir} + Systemd support: ${have_systemd} + Systemd unitdir: ${with_systemdsystemunitdir} + libeconf support: ${have_econf} + Btrfs support: ${have_btrfs} + Wide-char support: ${build_widechar} - Bash completions: ${with_bashcompletiondir} - Systemd support: ${have_systemd} - Systemd unitdir: ${with_systemdsystemunitdir} - libeconf support: ${have_econf} - Btrfs support: ${have_btrfs} - Wide-char support: ${build_widechar} + Manual pages: ${build_asciidoc} + Manual pages translated: ${build_poman} - Manual pages: ${build_asciidoc} - Manual pages translated: ${build_poman} + compiler: ${CC} + suid cflags: ${SUID_CFLAGS} + ldflags: ${LDFLAGS} + suid ldflags: ${SUID_LDFLAGS} + ASAN enabled: ${enable_asan} - warnings: + cflags: ${CFLAGS} + + warnings: ${WARN_CFLAGS} - Type 'make' or 'make ' to compile. + Type 'make' or 'make ' to compile. ])