1
1

Fixes from Brian for OS X 10.4.

This commit was SVN r19953.
Этот коммит содержится в:
Jeff Squyres 2008-11-07 22:13:43 +00:00
родитель 4f028171a2
Коммит 7b32402959
2 изменённых файлов: 14 добавлений и 9 удалений

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

@ -885,15 +885,19 @@ AC_DEFINE_UNQUOTED(OMPI_OFFSET_DATATYPE, $MPI_OFFSET_DATATYPE, [MPI datatype cor
# <unistd.h> and sysconf(), which is ok) OS X 10.4 has <unistd.h> and
# sysconf(), but does not have _SC_NPROCESSORS_ONLN. Doh!
AC_MSG_CHECKING([for _SC_NPROCESSORS_ONLN])
AC_COMPILE_IFELSE(AC_LANG_SOURCE([[#include <unistd.h>
]],[[int i = _SN_NPROCESSORS_ONLN;]]),
[MSG=yes OMPI_HAVE__SC_NPROCESSORS_ONLN=1],
[MSG=no OMPI_HAVE__SC_NPROCESSORS_ONLN=0])
AC_DEFINE_UNQUOTED(OPAL_HAVE__SC_NPROCESSORS_ONLN,
$OMPI_HAVE__SC_NPROCESSORS_ONLN,
[Whether we have the _SC_NPROCESSORS_ONLN])
AC_MSG_RESULT([$MSG])
AC_CACHE_CHECK([for _SC_NPROCESSORS_ONLN],
[ompi_cv_have__SC_NPROCESSORS_ONLN],
[AC_COMPILE_IFELSE([AC_LANG_PROGRAM([
AC_INCLUDES_DEFAULT
#include <unistd.h>
],
[int i = _SC_NPROCESSORS_ONLN;])],
[ompi_cv_have__SC_NPROCESSORS_ONLN="yes"],
[ompi_cv_have__SC_NPROCESSORS_ONLN="no"])])
AS_IF([test "$ompi_cv_have__SC_NPROCESSORS_ONLN" = "yes"],
[result=1], [result=0])
AC_DEFINE_UNQUOTED([OPAL_HAVE__SC_NPROCESSORS_ONLN], [$result],
[Define to 1 ifyou have the declaration of _SC_NPROCESSORS_ONLN, and to 0 otherwise])
# all: endian

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

@ -29,6 +29,7 @@
#include <mach/mach_host.h>
#include <mach/host_info.h>
#include <mach/mach_init.h>
#include "opal/constants.h"
#include "opal/mca/base/mca_base_param.h"