1
1

Cleanup some autoconf messages - thanks to Paul Hargrove for noting them

cmr=v1.8.3:reviewer=jsquyres

This commit was SVN r32429.
Этот коммит содержится в:
Ralph Castain 2014-08-05 14:48:42 +00:00
родитель ef1fdbb5d7
Коммит 1e93e85403
3 изменённых файлов: 8 добавлений и 2 удалений

Просмотреть файл

@ -28,11 +28,14 @@ AC_DEFUN([OPAL_CHECK_CMA],[
AC_MSG_CHECKING([if user requested CMA build])
if test "$with_cma" = "yes" ; then
ompi_check_cma_happy="yes"
AC_MSG_RESULT([yes])
AC_CHECK_FUNC(process_vm_readv, [ompi_check_cma_need_defs=0],
[ompi_check_cma_need_defs=1])
AC_DEFINE_UNQUOTED([OPAL_CMA_NEED_SYSCALL_DEFS],
[$ompi_check_cma_need_defs],
[Need CMA syscalls defined])
else
AC_MSG_RESULT([no])
fi
AS_IF([test "$ompi_check_cma_happy" = "yes"],
[$2],

Просмотреть файл

@ -2,6 +2,7 @@
#
# Copyright (c) 2011 Los Alamos National Security, LLC.
# All rights reserved.
# Copyright (c) 2014 Intel, Inc. All rights reserved
#
# $COPYRIGHT$
#
@ -15,7 +16,6 @@
AC_DEFUN([MCA_ompi_dpm_orte_CONFIG],[
AC_CONFIG_FILES([ompi/mca/dpm/orte/Makefile])
AC_MSG_CHECKING([orte configuration args])
AC_ARG_WITH([orte],
AC_HELP_STRING([--with-orte],
[Use ORTE run-time environment (default: yes)]))

Просмотреть файл

@ -569,6 +569,7 @@ haveepoll=no
dnl ****** Open MPI Changes ******
AC_MSG_CHECKING([for epoll support])
if test "$enable_epoll" != "no" ; then
AC_MSG_RESULT([enabled])
AC_CHECK_FUNCS(epoll_ctl, [haveepoll=yes], )
if test "x$haveepoll" = "xyes" -a "$cross_compiling" != "yes" ; then
# Unfortunately, it's not sufficient to just test for the
@ -604,7 +605,6 @@ if test "$enable_epoll" != "no" ; then
# written to.
haveepoll=no
AC_MSG_RESULT([yes])
AC_MSG_CHECKING([for working epoll library interface])
AC_RUN_IFELSE([AC_LANG_PROGRAM([
AC_INCLUDES_DEFAULT
@ -645,8 +645,11 @@ int main(int argc, char **argv)
# OMPI: Don't use AC_LIBOBJ
needsignal=yes],
[haveepoll=no], [])
AC_MSG_CHECKING([if epoll can build])
AC_MSG_RESULT([$haveepoll])
fi
else
AC_MSG_RESULT([disabled])
fi
AM_CONDITIONAL(EPOLL_BACKEND, [test "x$haveepoll" = "xyes" -a "$enable_epoll" != "no"])
AS_IF([test "$enable_epoll" != "no" && test "x$haveepoll" = "xyes"],