aboutsummaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorLibravatar netblue30 <netblue30@yahoo.com>2016-03-12 08:29:58 -0500
committerLibravatar netblue30 <netblue30@yahoo.com>2016-03-12 08:29:58 -0500
commit3a42337a9acf9a882f0367a8b1ab7d430fac3f8b (patch)
tree477118e3b31a36ef77e4a4508057448b5a02c2d9 /configure
parentprofile update (diff)
downloadfirejail-3a42337a9acf9a882f0367a8b1ab7d430fac3f8b.tar.gz
firejail-3a42337a9acf9a882f0367a8b1ab7d430fac3f8b.tar.zst
firejail-3a42337a9acf9a882f0367a8b1ab7d430fac3f8b.zip
compile time support to disable file transfer
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure17
1 files changed, 17 insertions, 0 deletions
diff --git a/configure b/configure
index 71f421ff4..258417e3c 100755
--- a/configure
+++ b/configure
@@ -629,6 +629,7 @@ EGREP
629GREP 629GREP
630CPP 630CPP
631HAVE_FATAL_WARNINGS 631HAVE_FATAL_WARNINGS
632HAVE_FILE_TRANSFER
632HAVE_X11 633HAVE_X11
633HAVE_USERNS 634HAVE_USERNS
634HAVE_NETWORK 635HAVE_NETWORK
@@ -693,6 +694,7 @@ enable_bind
693enable_network 694enable_network
694enable_userns 695enable_userns
695enable_x11 696enable_x11
697enable_file_transfer
696enable_fatal_warnings 698enable_fatal_warnings
697' 699'
698 ac_precious_vars='build_alias 700 ac_precious_vars='build_alias
@@ -1321,6 +1323,7 @@ Optional Features:
1321 restrict --net= to root only 1323 restrict --net= to root only
1322 --disable-userns disable user namespace 1324 --disable-userns disable user namespace
1323 --disable-x11 disable X11 support 1325 --disable-x11 disable X11 support
1326 --disable-file-transfer disable file transfer
1324 --enable-fatal-warnings -W -Wall -Werror 1327 --enable-fatal-warnings -W -Wall -Werror
1325 1328
1326Some influential environment variables: 1329Some influential environment variables:
@@ -3147,6 +3150,19 @@ if test "x$enable_x11" != "xno"; then :
3147 3150
3148fi 3151fi
3149 3152
3153HAVE_FILE_TRANSFER=""
3154# Check whether --enable-file-transfer was given.
3155if test "${enable_file_transfer+set}" = set; then :
3156 enableval=$enable_file_transfer;
3157fi
3158
3159if test "x$enable_file_transfer" != "xno"; then :
3160
3161 HAVE_FILE_TRANSFER="-DHAVE_FILE_TRANSFER"
3162
3163
3164fi
3165
3150HAVE_FATAL_WARNINGS="" 3166HAVE_FATAL_WARNINGS=""
3151# Check whether --enable-fatal_warnings was given. 3167# Check whether --enable-fatal_warnings was given.
3152if test "${enable_fatal_warnings+set}" = set; then : 3168if test "${enable_fatal_warnings+set}" = set; then :
@@ -4806,6 +4822,7 @@ echo " bind: $HAVE_BIND"
4806echo " network: $HAVE_NETWORK" 4822echo " network: $HAVE_NETWORK"
4807echo " user namespace: $HAVE_USERNS" 4823echo " user namespace: $HAVE_USERNS"
4808echo " X11 support: $HAVE_X11" 4824echo " X11 support: $HAVE_X11"
4825echo " file transfer support: $HAVE_FILE_TRANSFER"
4809echo " fatal warnings: $HAVE_FATAL_WARNINGS" 4826echo " fatal warnings: $HAVE_FATAL_WARNINGS"
4810echo 4827echo
4811 4828