From 5e5810c13fdec7675a297fd417a3319124f0ccb8 Mon Sep 17 00:00:00 2001 From: Curtis Gedak Date: Thu, 3 Jun 2010 16:48:17 -0600 Subject: [PATCH] Add sector size support message to configure script --- configure.in | 11 ++++++----- 1 file changed, 6 insertions(+), 5 deletions(-) diff --git a/configure.in b/configure.in index cb3be4ca..6f0cd3c8 100644 --- a/configure.in +++ b/configure.in @@ -124,9 +124,9 @@ int main () } ,[AC_MSG_RESULT(yes) AC_DEFINE([HAVE_LIBPARTED_2_2_0_PLUS], [1], [Define to 1 if libparted contains improved partition table re-read code]) - need_pt_reread_work_around=no] + need_pt_reread_work_around=no; support_sector_size_gt_512=yes] ,[AC_MSG_RESULT(no) - need_pt_reread_work_around=yes] + need_pt_reread_work_around=yes; support_sector_size_gt_512=no] ) LIBS="$LIBS_save" @@ -192,11 +192,12 @@ dnl====================== echo "" echo "================ Final configuration ===================" -echo " Installing into prefix : $prefix" +echo " Installing into prefix : $prefix" echo "" -echo " Build documentation? : $enable_doc" +echo " Build documentation? : $enable_doc" echo "" -echo " Need pt re-read work around? : $need_pt_reread_work_around" +echo " Need part table re-read work around? : $need_pt_reread_work_around" +echo " Supports sector sizes > 512 bytes? : $support_sector_size_gt_512" echo "" echo " If all settings are OK, type make and make install " echo "========================================================"