aboutsummaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorLibravatar Kelvin M. Klann <kmk3.code@protonmail.com>2021-05-20 01:18:32 -0300
committerLibravatar Kelvin M. Klann <kmk3.code@protonmail.com>2021-05-28 18:02:25 -0300
commitbfbed383d8f1aa41f44d1f2716322ed810d294fe (patch)
treec8fc0ee8dfda9a144aaaa3ec76ed287539d2c019 /configure
parentconfigure.ac: run autoupdate to fix autoconf warning (diff)
downloadfirejail-bfbed383d8f1aa41f44d1f2716322ed810d294fe.tar.gz
firejail-bfbed383d8f1aa41f44d1f2716322ed810d294fe.tar.zst
firejail-bfbed383d8f1aa41f44d1f2716322ed810d294fe.zip
configure*: use cat instead of many echoes
For simplicity and increased portability.
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure83
1 files changed, 42 insertions, 41 deletions
diff --git a/configure b/configure
index b75848bea..f31816599 100755
--- a/configure
+++ b/configure
@@ -5559,48 +5559,49 @@ if test -n "$ac_unrecognized_opts" && test "$enable_option_checking" != no; then
5559$as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2;} 5559$as_echo "$as_me: WARNING: unrecognized options: $ac_unrecognized_opts" >&2;}
5560fi 5560fi
5561 5561
5562cat <<EOF
5563
5564Configuration options:
5565 prefix: $prefix
5566 sysconfdir: $sysconfdir
5567 apparmor: $HAVE_APPARMOR
5568 SELinux labeling support: $HAVE_SELINUX
5569 global config: $HAVE_GLOBALCFG
5570 chroot: $HAVE_CHROOT
5571 network: $HAVE_NETWORK
5572 user namespace: $HAVE_USERNS
5573 X11 sandboxing support: $HAVE_X11
5574 whitelisting: $HAVE_WHITELIST
5575 private home support: $HAVE_PRIVATE_HOME
5576 file transfer support: $HAVE_FILE_TRANSFER
5577 overlayfs support: $HAVE_OVERLAYFS
5578 DBUS proxy support: $HAVE_DBUSPROXY
5579 allow tmpfs as regular user: $HAVE_USERTMPFS
5580 enable --ouput logging: $HAVE_OUTPUT
5581 Manpage support: $HAVE_MAN
5582 firetunnel support: $HAVE_FIRETUNNEL
5583 busybox workaround: $BUSYBOX_WORKAROUND
5584 Spectre compiler patch: $HAVE_SPECTRE
5585 EXTRA_LDFLAGS: $EXTRA_LDFLAGS
5586 EXTRA_CFLAGS: $EXTRA_CFLAGS
5587 fatal warnings: $HAVE_FATAL_WARNINGS
5588 Gcov instrumentation: $HAVE_GCOV
5589 Install contrib scripts: $HAVE_CONTRIB_INSTALL
5590 Install as a SUID executable: $HAVE_SUID
5591 LTS: $HAVE_LTS
5592 Always enforce filters: $HAVE_FORCE_NONEWPRIVS
5593
5594EOF
5562 5595
5563echo 5596if test "$HAVE_LTS" = -DHAVE_LTS; then
5564echo "Configuration options:" 5597 cat <<\EOF
5565echo " prefix: $prefix"
5566echo " sysconfdir: $sysconfdir"
5567echo " apparmor: $HAVE_APPARMOR"
5568echo " SELinux labeling support: $HAVE_SELINUX"
5569echo " global config: $HAVE_GLOBALCFG"
5570echo " chroot: $HAVE_CHROOT"
5571echo " network: $HAVE_NETWORK"
5572echo " user namespace: $HAVE_USERNS"
5573echo " X11 sandboxing support: $HAVE_X11"
5574echo " whitelisting: $HAVE_WHITELIST"
5575echo " private home support: $HAVE_PRIVATE_HOME"
5576echo " file transfer support: $HAVE_FILE_TRANSFER"
5577echo " overlayfs support: $HAVE_OVERLAYFS"
5578echo " DBUS proxy support: $HAVE_DBUSPROXY"
5579echo " allow tmpfs as regular user: $HAVE_USERTMPFS"
5580echo " enable --ouput logging: $HAVE_OUTPUT"
5581echo " Manpage support: $HAVE_MAN"
5582echo " firetunnel support: $HAVE_FIRETUNNEL"
5583echo " busybox workaround: $BUSYBOX_WORKAROUND"
5584echo " Spectre compiler patch: $HAVE_SPECTRE"
5585echo " EXTRA_LDFLAGS: $EXTRA_LDFLAGS"
5586echo " EXTRA_CFLAGS: $EXTRA_CFLAGS"
5587echo " fatal warnings: $HAVE_FATAL_WARNINGS"
5588echo " Gcov instrumentation: $HAVE_GCOV"
5589echo " Install contrib scripts: $HAVE_CONTRIB_INSTALL"
5590echo " Install as a SUID executable: $HAVE_SUID"
5591echo " LTS: $HAVE_LTS"
5592echo " Always enforce filters: $HAVE_FORCE_NONEWPRIVS"
5593echo
5594 5598
5595 5599
5596if test "$HAVE_LTS" = -DHAVE_LTS; then 5600*********************************************************
5597 echo 5601* Warning: Long-term support (LTS) was enabled! *
5598 echo 5602* Most compile-time options have bean rewritten! *
5599 echo "*********************************************************" 5603*********************************************************
5600 echo "* Warning: Long-term support (LTS) was enabled! *"
5601 echo "* Most compile-time options have bean rewritten! *"
5602 echo "*********************************************************"
5603 echo
5604 echo
5605fi
5606 5604
5605
5606EOF
5607fi