From: Karel Zak Date: Tue, 13 Aug 2013 12:11:12 +0000 (+0200) Subject: build-sys: enable mesg(1) by default X-Git-Tag: v2.24-rc1~384 X-Git-Url: http://git.ipfire.org/cgi-bin/gitweb.cgi?a=commitdiff_plain;h=1cc62b353872f46753795285e9f65164b67d8031;p=thirdparty%2Futil-linux.git build-sys: enable mesg(1) by default It seems that our mesg(1) implementation is compatible with sysvinit, let's use it by default in mainstream distros. Signed-off-by: Karel Zak --- diff --git a/configure.ac b/configure.ac index 87cffadd29..2ad890b5b8 100644 --- a/configure.ac +++ b/configure.ac @@ -1095,8 +1095,8 @@ AM_CONDITIONAL([BUILD_LINE], [test "x$build_line" = xyes]) AC_ARG_ENABLE([mesg], - AS_HELP_STRING([--enable-mesg], [build mesg]), - [], [enable_mesg=no] + AS_HELP_STRING([--disable-mesg], [do not build mesg]), + [], [enable_mesg=yes] ) UL_BUILD_INIT([mesg]) AM_CONDITIONAL([BUILD_MESG], [test "x$build_mesg" = xyes])