aboutsummaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorLibravatar startx2017 <vradu.startx@protonmail.com>2021-02-28 07:49:20 -0500
committerLibravatar startx2017 <vradu.startx@protonmail.com>2021-02-28 07:49:20 -0500
commit72ba0b7e5e5baf79fa4f33000e45d2ad48d54708 (patch)
treedea7d33b9075fcc3aef7bbbf9060b06e7d896ce7 /configure
parentdbus.c: check_object_path: Allow /StatusNotifierWatcher (#4015) (diff)
downloadfirejail-72ba0b7e5e5baf79fa4f33000e45d2ad48d54708.tar.gz
firejail-72ba0b7e5e5baf79fa4f33000e45d2ad48d54708.tar.zst
firejail-72ba0b7e5e5baf79fa4f33000e45d2ad48d54708.zip
compile time: disable --output
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure17
1 files changed, 17 insertions, 0 deletions
diff --git a/configure b/configure
index 84bcafaf7..fc8048ffb 100755
--- a/configure
+++ b/configure
@@ -645,6 +645,7 @@ HAVE_FIRETUNNEL
645HAVE_GAWK 645HAVE_GAWK
646HAVE_MAN 646HAVE_MAN
647HAVE_USERTMPFS 647HAVE_USERTMPFS
648HAVE_OUTPUT
648HAVE_OVERLAYFS 649HAVE_OVERLAYFS
649HAVE_DBUSPROXY 650HAVE_DBUSPROXY
650EXTRA_LDFLAGS 651EXTRA_LDFLAGS
@@ -711,6 +712,7 @@ enable_option_checking
711enable_analyzer 712enable_analyzer
712enable_apparmor 713enable_apparmor
713enable_dbusproxy 714enable_dbusproxy
715enable_output
714enable_usertmpfs 716enable_usertmpfs
715enable_man 717enable_man
716enable_firetunnel 718enable_firetunnel
@@ -1366,6 +1368,7 @@ Optional Features:
1366 --enable-analyzer enable GCC 10 static analyzer 1368 --enable-analyzer enable GCC 10 static analyzer
1367 --enable-apparmor enable apparmor 1369 --enable-apparmor enable apparmor
1368 --disable-dbusproxy disable dbus proxy 1370 --disable-dbusproxy disable dbus proxy
1371 --disable-output disable --output logging
1369 --disable-usertmpfs disable tmpfs as regular user 1372 --disable-usertmpfs disable tmpfs as regular user
1370 --disable-man disable man pages 1373 --disable-man disable man pages
1371 --disable-firetunnel disable firetunnel 1374 --disable-firetunnel disable firetunnel
@@ -3539,6 +3542,19 @@ HAVE_OVERLAYFS=""
3539# AC_SUBST(HAVE_OVERLAYFS) 3542# AC_SUBST(HAVE_OVERLAYFS)
3540#]) 3543#])
3541 3544
3545HAVE_OUTPUT=""
3546# Check whether --enable-output was given.
3547if test "${enable_output+set}" = set; then :
3548 enableval=$enable_output;
3549fi
3550
3551if test "x$enable_output" != "xno"; then :
3552
3553 HAVE_OUTPUT="-DHAVE_OUTPUT"
3554
3555
3556fi
3557
3542HAVE_USERTMPFS="" 3558HAVE_USERTMPFS=""
3543# Check whether --enable-usertmpfs was given. 3559# Check whether --enable-usertmpfs was given.
3544if test "${enable_usertmpfs+set}" = set; then : 3560if test "${enable_usertmpfs+set}" = set; then :
@@ -5480,6 +5496,7 @@ echo " file transfer support: $HAVE_FILE_TRANSFER"
5480echo " overlayfs support: $HAVE_OVERLAYFS" 5496echo " overlayfs support: $HAVE_OVERLAYFS"
5481echo " DBUS proxy support: $HAVE_DBUSPROXY" 5497echo " DBUS proxy support: $HAVE_DBUSPROXY"
5482echo " allow tmpfs as regular user: $HAVE_USERTMPFS" 5498echo " allow tmpfs as regular user: $HAVE_USERTMPFS"
5499echo " enable --ouput logging: $HAVE_OUTPUT"
5483echo " Manpage support: $HAVE_MAN" 5500echo " Manpage support: $HAVE_MAN"
5484echo " firetunnel support: $HAVE_FIRETUNNEL" 5501echo " firetunnel support: $HAVE_FIRETUNNEL"
5485echo " busybox workaround: $BUSYBOX_WORKAROUND" 5502echo " busybox workaround: $BUSYBOX_WORKAROUND"