aboutsummaryrefslogtreecommitdiffstats
path: root/configure
diff options
context:
space:
mode:
authorLibravatar netblue30 <netblue30@yahoo.com>2017-02-05 11:50:04 -0500
committerLibravatar netblue30 <netblue30@yahoo.com>2017-02-05 11:50:04 -0500
commitd17ce1322e6e42ca905393545db03a13570da1b0 (patch)
tree86b598adb3ac57adafe55a62996b9e37325a1eec /configure
parentenable strict seccomp filter on overlay options (diff)
downloadfirejail-d17ce1322e6e42ca905393545db03a13570da1b0.tar.gz
firejail-d17ce1322e6e42ca905393545db03a13570da1b0.tar.zst
firejail-d17ce1322e6e42ca905393545db03a13570da1b0.zip
disable --git-install at compile time
Diffstat (limited to 'configure')
-rwxr-xr-xconfigure16
1 files changed, 16 insertions, 0 deletions
diff --git a/configure b/configure
index 9efba1b1d..bdffba2ad 100755
--- a/configure
+++ b/configure
@@ -625,6 +625,7 @@ ac_includes_default="\
625ac_subst_vars='LTLIBOBJS 625ac_subst_vars='LTLIBOBJS
626LIBOBJS 626LIBOBJS
627HAVE_SECCOMP_H 627HAVE_SECCOMP_H
628HAVE_GIT_INSTALL
628HAVE_GCOV 629HAVE_GCOV
629BUSYBOX_WORKAROUND 630BUSYBOX_WORKAROUND
630HAVE_FATAL_WARNINGS 631HAVE_FATAL_WARNINGS
@@ -711,6 +712,7 @@ enable_whitelist
711enable_fatal_warnings 712enable_fatal_warnings
712enable_busybox_workaround 713enable_busybox_workaround
713enable_gcov 714enable_gcov
715enable_git_install
714' 716'
715 ac_precious_vars='build_alias 717 ac_precious_vars='build_alias
716host_alias 718host_alias
@@ -1349,6 +1351,7 @@ Optional Features:
1349 --enable-busybox-workaround 1351 --enable-busybox-workaround
1350 enable busybox workaround 1352 enable busybox workaround
1351 --enable-gcov Gcov instrumentation 1353 --enable-gcov Gcov instrumentation
1354 --disable-git-install disable git install feature
1352 1355
1353Some influential environment variables: 1356Some influential environment variables:
1354 CC C compiler command 1357 CC C compiler command
@@ -3710,6 +3713,18 @@ if test "x$enable_gcov" = "xyes"; then :
3710 3713
3711fi 3714fi
3712 3715
3716HAVE_GIT_INSTALL=""
3717# Check whether --enable-git-install was given.
3718if test "${enable_git_install+set}" = set; then :
3719 enableval=$enable_git_install;
3720fi
3721
3722if test "x$enable_git_install" != "xno"; then :
3723
3724 HAVE_GIT_INSTALL="-DHAVE_GIT_INSTALL"
3725
3726
3727fi
3713 3728
3714 3729
3715# checking pthread library 3730# checking pthread library
@@ -4971,6 +4986,7 @@ echo " whitelisting: $HAVE_WHITELIST"
4971echo " private home support: $HAVE_PRIVATE_HOME" 4986echo " private home support: $HAVE_PRIVATE_HOME"
4972echo " file transfer support: $HAVE_FILE_TRANSFER" 4987echo " file transfer support: $HAVE_FILE_TRANSFER"
4973echo " overlayfs support: $HAVE_OVERLAYFS" 4988echo " overlayfs support: $HAVE_OVERLAYFS"
4989echo " git install support: $HAVE_GIT_INSTALL"
4974echo " busybox workaround: $BUSYBOX_WORKAROUND" 4990echo " busybox workaround: $BUSYBOX_WORKAROUND"
4975echo " EXTRA_LDFLAGS: $EXTRA_LDFLAGS" 4991echo " EXTRA_LDFLAGS: $EXTRA_LDFLAGS"
4976echo " fatal warnings: $HAVE_FATAL_WARNINGS" 4992echo " fatal warnings: $HAVE_FATAL_WARNINGS"