From: Ruediger Meier Date: Mon, 5 Dec 2016 13:24:55 +0000 (+0100) Subject: build-sys: disable tailf by default X-Git-Tag: v2.30-rc1~363 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=809869ca8c3d5d548adac9648dbcea2f641a878b;p=thirdparty%2Futil-linux.git build-sys: disable tailf by default It's deprecated since 3f8478a7, so we shouldn't build it by default. Signed-off-by: Ruediger Meier --- diff --git a/configure.ac b/configure.ac index e9901bc81e..08e06ffab2 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])