From: Karel Zak Date: Mon, 7 Nov 2011 10:18:09 +0000 (+0100) Subject: docs: refresh TODO file X-Git-Tag: v2.21-rc1~216 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=f2278b63b802020a5b14e5202f1bb281bcb1b0d7;p=thirdparty%2Futil-linux.git docs: refresh TODO file Signed-off-by: Karel Zak --- diff --git a/Documentation/TODO b/Documentation/TODO index 69ac92a17d..228b9300fb 100644 --- a/Documentation/TODO +++ b/Documentation/TODO @@ -111,36 +111,6 @@ build-sys - use non-recursive build-sys, see http://thread.gmane.org/gmane.linux.utilities.util-linux-ng/3297 - - we use something like - - AC_ARG_ENABLE(...., enable_foo=check) - build_foo=yes - if test "x$enable_foo" = xcheck; then - if test "x$linux_os" = xno; then - build_foo=no - fi - fi - AM_CONDITIONAL(BUILD_FOO, test "x$build_foo" = xyes) - - for Linux-only utils in configure.ac. It would be nice to set all defaults - for all "$enable_" variables at the begin of the configure script according to - $linux_os. Something like: - - if test "x$linux_os" = xno - enable_mount=no - enable_libmount=no - enable_lsblk=no - fi - - then we can remove all "if test "x$enable_foo" = xcheck;" stuff from the rest - of the configure script. - - - it would be nice to remove all "if BUILD_LIB{MOUNT,BLKID,UUID}" from the - Makefiles (e.g. misc-utils/Makefile.am) and use BUILD_ only - - The configure.ac has to care about dependence between utils and librares and - enable BUILD_. - lib/tt.c --------