summaryrefslogtreecommitdiffstats
path: root/configure.ac
diff options
context:
space:
mode:
authorRuediger Meier2016-12-05 14:24:55 +0100
committerKarel Zak2016-12-07 12:35:24 +0100
commit809869ca8c3d5d548adac9648dbcea2f641a878b (patch)
treea03f86eacc1d7fadcea5726b72cd8d12d5638dd6 /configure.ac
parentagetty: re-add utmp.h for Debian GNU/kFreeBSD (diff)
downloadkernel-qcow2-util-linux-809869ca8c3d5d548adac9648dbcea2f641a878b.tar.gz
kernel-qcow2-util-linux-809869ca8c3d5d548adac9648dbcea2f641a878b.tar.xz
kernel-qcow2-util-linux-809869ca8c3d5d548adac9648dbcea2f641a878b.zip
build-sys: disable tailf by default
It's deprecated since 3f8478a7, so we shouldn't build it by default. Signed-off-by: Ruediger Meier <ruediger.meier@ga-group.nl>
Diffstat (limited to 'configure.ac')
-rw-r--r--configure.ac6
1 files changed, 5 insertions, 1 deletions
diff --git a/configure.ac b/configure.ac
index e9901bc81..08e06ffab 100644
--- a/configure.ac
+++ b/configure.ac
@@ -1592,7 +1592,11 @@ AM_CONDITIONAL([BUILD_HEXDUMP], [test "x$build_hexdump" = xyes])
UL_BUILD_INIT([rev], [yes])
AM_CONDITIONAL([BUILD_REV], [test "x$build_rev" = xyes])
-UL_BUILD_INIT([tailf], [yes])
+AC_ARG_ENABLE([tailf],
+ AS_HELP_STRING([--enable-tailf], [build tailf (deprecated)]),
+ [], [UL_DEFAULT_ENABLE([tailf], [no])]
+)
+UL_BUILD_INIT([tailf])
AM_CONDITIONAL([BUILD_TAILF], [test "x$build_tailf" = xyes])