1
0
mirror of git://sourceware.org/git/lvm2.git synced 2024-12-21 13:34:40 +03:00

Remove 3 redundant AC_MSG_RESULTs from configure.in.

This commit is contained in:
Alasdair Kergon 2007-01-09 22:07:20 +00:00
parent e62436fc70
commit 7cb5941799
3 changed files with 1 additions and 18 deletions

View File

@ -1,5 +1,6 @@
Version 2.02.18 - Version 2.02.18 -
==================================== ====================================
Remove 3 redundant AC_MSG_RESULTs from configure.in.
Free memory in _raw_read_mda_header() error paths. Free memory in _raw_read_mda_header() error paths.
Fix ambiguous vgsplit error message for split LV. Fix ambiguous vgsplit error message for split LV.
Fix lvextend man page typo. Fix lvextend man page typo.

12
configure vendored
View File

@ -8268,8 +8268,6 @@ fi
################################################################################ ################################################################################
if test x$SELINUX = xyes; then if test x$SELINUX = xyes; then
echo "$as_me:$LINENO: checking for sepol_check_context function" >&5
echo $ECHO_N "checking for sepol_check_context function... $ECHO_C" >&6
echo "$as_me:$LINENO: checking for sepol_check_context in -lsepol" >&5 echo "$as_me:$LINENO: checking for sepol_check_context in -lsepol" >&5
echo $ECHO_N "checking for sepol_check_context in -lsepol... $ECHO_C" >&6 echo $ECHO_N "checking for sepol_check_context in -lsepol... $ECHO_C" >&6
if test "${ac_cv_lib_sepol_sepol_check_context+set}" = set; then if test "${ac_cv_lib_sepol_sepol_check_context+set}" = set; then
@ -8340,15 +8338,11 @@ else
HAVE_SEPOL=no HAVE_SEPOL=no
fi fi
echo "$as_me:$LINENO: result: $HAVE_SEPOL" >&5
echo "${ECHO_T}$HAVE_SEPOL" >&6
if test x$HAVE_SEPOL = xyes; then if test x$HAVE_SEPOL = xyes; then
LIBS="-lsepol $LIBS" LIBS="-lsepol $LIBS"
fi fi
echo "$as_me:$LINENO: checking for is_selinux_enabled function" >&5
echo $ECHO_N "checking for is_selinux_enabled function... $ECHO_C" >&6
echo "$as_me:$LINENO: checking for is_selinux_enabled in -lselinux" >&5 echo "$as_me:$LINENO: checking for is_selinux_enabled in -lselinux" >&5
echo $ECHO_N "checking for is_selinux_enabled in -lselinux... $ECHO_C" >&6 echo $ECHO_N "checking for is_selinux_enabled in -lselinux... $ECHO_C" >&6
if test "${ac_cv_lib_selinux_is_selinux_enabled+set}" = set; then if test "${ac_cv_lib_selinux_is_selinux_enabled+set}" = set; then
@ -8419,8 +8413,6 @@ else
HAVE_SELINUX=no HAVE_SELINUX=no
fi fi
echo "$as_me:$LINENO: result: $HAVE_SELINUX" >&5
echo "${ECHO_T}$HAVE_SELINUX" >&6
if test x$HAVE_SELINUX = xyes; then if test x$HAVE_SELINUX = xyes; then
@ -8437,8 +8429,6 @@ fi
################################################################################ ################################################################################
if test x$REALTIME = xyes; then if test x$REALTIME = xyes; then
echo "$as_me:$LINENO: checking for clock_gettime function" >&5
echo $ECHO_N "checking for clock_gettime function... $ECHO_C" >&6
echo "$as_me:$LINENO: checking for clock_gettime in -lrt" >&5 echo "$as_me:$LINENO: checking for clock_gettime in -lrt" >&5
echo $ECHO_N "checking for clock_gettime in -lrt... $ECHO_C" >&6 echo $ECHO_N "checking for clock_gettime in -lrt... $ECHO_C" >&6
if test "${ac_cv_lib_rt_clock_gettime+set}" = set; then if test "${ac_cv_lib_rt_clock_gettime+set}" = set; then
@ -8509,8 +8499,6 @@ else
HAVE_REALTIME=no HAVE_REALTIME=no
fi fi
echo "$as_me:$LINENO: result: $HAVE_REALTIME" >&5
echo "${ECHO_T}$HAVE_REALTIME" >&6
if test x$HAVE_REALTIME = xyes; then if test x$HAVE_REALTIME = xyes; then

View File

@ -438,17 +438,13 @@ fi
################################################################################ ################################################################################
dnl -- Check for selinux dnl -- Check for selinux
if test x$SELINUX = xyes; then if test x$SELINUX = xyes; then
AC_MSG_CHECKING(for sepol_check_context function)
AC_CHECK_LIB(sepol, sepol_check_context, HAVE_SEPOL=yes, HAVE_SEPOL=no) AC_CHECK_LIB(sepol, sepol_check_context, HAVE_SEPOL=yes, HAVE_SEPOL=no)
AC_MSG_RESULT($HAVE_SEPOL)
if test x$HAVE_SEPOL = xyes; then if test x$HAVE_SEPOL = xyes; then
LIBS="-lsepol $LIBS" LIBS="-lsepol $LIBS"
fi fi
AC_MSG_CHECKING(for is_selinux_enabled function)
AC_CHECK_LIB(selinux, is_selinux_enabled, HAVE_SELINUX=yes, HAVE_SELINUX=no) AC_CHECK_LIB(selinux, is_selinux_enabled, HAVE_SELINUX=yes, HAVE_SELINUX=no)
AC_MSG_RESULT($HAVE_SELINUX)
if test x$HAVE_SELINUX = xyes; then if test x$HAVE_SELINUX = xyes; then
AC_DEFINE([HAVE_SELINUX], 1, [Define to 1 to include support for selinux.]) AC_DEFINE([HAVE_SELINUX], 1, [Define to 1 to include support for selinux.])
@ -461,9 +457,7 @@ fi
################################################################################ ################################################################################
dnl -- Check for realtime clock support dnl -- Check for realtime clock support
if test x$REALTIME = xyes; then if test x$REALTIME = xyes; then
AC_MSG_CHECKING(for clock_gettime function)
AC_CHECK_LIB(rt, clock_gettime, HAVE_REALTIME=yes, HAVE_REALTIME=no) AC_CHECK_LIB(rt, clock_gettime, HAVE_REALTIME=yes, HAVE_REALTIME=no)
AC_MSG_RESULT($HAVE_REALTIME)
if test x$HAVE_REALTIME = xyes; then if test x$HAVE_REALTIME = xyes; then
AC_DEFINE([HAVE_REALTIME], 1, [Define to 1 to include support for realtime clock.]) AC_DEFINE([HAVE_REALTIME], 1, [Define to 1 to include support for realtime clock.])