diff --git a/WHATS_NEW b/WHATS_NEW index 6f909abf6..20f86d28f 100644 --- a/WHATS_NEW +++ b/WHATS_NEW @@ -1,5 +1,6 @@ Version 2.02.141 - ==================================== + Fix configure to set proper use_blkid_wiping if autodetected as disabled. Initialise udev in clvmd for use in device scanning. (2.02.116) Add seg_le_ranges report field for common format when displaying seg devices. Honour report/list_item_separator for seg_metadata_le_ranges report field. diff --git a/aclocal.m4 b/aclocal.m4 index 67b2d59a0..05e0ad530 100644 --- a/aclocal.m4 +++ b/aclocal.m4 @@ -15,7 +15,7 @@ m4_ifndef([AC_CONFIG_MACRO_DIRS], [m4_defun([_AM_CONFIG_MACRO_DIRS], [])m4_defun # pkg.m4 - Macros to locate and utilise pkg-config. -*- Autoconf -*- # serial 1 (pkg-config-0.24) # -# Copyright (c) 2004 Scott James Remnant . +# Copyright © 2004 Scott James Remnant . # # This program is free software; you can redistribute it and/or modify # it under the terms of the GNU General Public License as published by diff --git a/configure b/configure index 8a9482de0..f22a11e15 100755 --- a/configure +++ b/configure @@ -11791,7 +11791,7 @@ fi $as_echo "#define BLKID_WIPING_SUPPORT 1" >>confdefs.h else - DEFAULT_USE_BLKID_WIPING=1 + DEFAULT_USE_BLKID_WIPING=0 fi else DEFAULT_USE_BLKID_WIPING=0 diff --git a/configure.in b/configure.in index 8e04782d0..2cad90201 100644 --- a/configure.in +++ b/configure.in @@ -1291,7 +1291,7 @@ if test "$BLKID_WIPING" != no; then DEFAULT_USE_BLKID_WIPING=1 AC_DEFINE([BLKID_WIPING_SUPPORT], 1, [Define to 1 to use libblkid detection of signatures when wiping.]) else - DEFAULT_USE_BLKID_WIPING=1 + DEFAULT_USE_BLKID_WIPING=0 fi else DEFAULT_USE_BLKID_WIPING=0