]> git.ipfire.org Git - thirdparty/util-linux.git/commitdiff
build-sys: disable tailf by default
authorRuediger Meier <ruediger.meier@ga-group.nl>
Mon, 5 Dec 2016 13:24:55 +0000 (14:24 +0100)
committerKarel Zak <kzak@redhat.com>
Wed, 7 Dec 2016 11:35:24 +0000 (12:35 +0100)
It's deprecated since 3f8478a7, so we shouldn't build it by default.

Signed-off-by: Ruediger Meier <ruediger.meier@ga-group.nl>
configure.ac

index e9901bc81ec024e3a87d0b000166657316d1cf4e..08e06ffab2e7dda747736c5e60806a1ebcffc64d 100644 (file)
@@ -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])