From: Ruediger Meier Date: Sun, 13 Mar 2016 04:46:07 +0000 (+0100) Subject: build-sys: add missing "not found" strings X-Git-Tag: v2.28-rc2~66^2~4 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=9dd55a048e1725c60c406cd73600bca84c4f1cf5;p=thirdparty%2Futil-linux.git build-sys: add missing "not found" strings Otherwise configure output looks like this: configure: WARNING: not found; not building cfdisk Signed-off-by: Ruediger Meier --- diff --git a/configure.ac b/configure.ac index 0bfe28cc68..bfb12cade7 100644 --- a/configure.ac +++ b/configure.ac @@ -1019,7 +1019,7 @@ AM_CONDITIONAL([BUILD_SFDISK], [test "x$build_sfdisk" = xyes]) UL_BUILD_INIT([cfdisk], [check]) UL_REQUIRES_BUILD([cfdisk], [libfdisk]) UL_REQUIRES_BUILD([cfdisk], [libsmartcols]) -UL_REQUIRES_HAVE([cfdisk], [open_memstream]) +UL_REQUIRES_HAVE([cfdisk], [open_memstream], [open_memstream function]) UL_REQUIRES_HAVE([cfdisk], [ncurses,slang], [ncurses or slang library]) AM_CONDITIONAL([BUILD_CFDISK], [test "x$build_cfdisk" = xyes]) @@ -1469,7 +1469,7 @@ dnl we assume reboot() to be the 1-argument variant, because even considering dnl widely used alternative C libraries like uclibc, dietlibc and musl, dnl reboot() with multiple arguments is yet only found in glibc versions dnl earlier than 2.x. -UL_REQUIRES_HAVE([ctrlaltdel], [reboot]) +UL_REQUIRES_HAVE([ctrlaltdel], [reboot], [reboot function]) AM_CONDITIONAL([BUILD_CTRLALTDEL], [test "x$build_ctrlaltdel" = xyes]) UL_BUILD_INIT([fsfreeze], [check])