1
1

Add check for <sysfs/libsysfs.h> since it's needed by OpenIB.

This commit was SVN r10213.
Этот коммит содержится в:
Jeff Squyres 2006-06-05 22:02:40 +00:00
родитель edc2fa9141
Коммит d4b5c98247

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

@ -10,6 +10,7 @@
# University of Stuttgart. All rights reserved.
# Copyright (c) 2004-2005 The Regents of the University of California.
# All rights reserved.
# Copyright (c) 2006 Cisco Systems, Inc. All rights reserved.
# $COPYRIGHT$
#
# Additional copyrights may follow
@ -56,6 +57,14 @@ AC_DEFUN([OMPI_CHECK_OPENIB],[
[AS_IF([test ! -z "$with_openib" -a "$with_openib" != "no"],
[AC_MSG_ERROR([OpenIB support requested but required sysfs not found. Aborting])])])
AC_CHECK_HEADER([sysfs/libsysfs.h],
[ompi_check_openib_sysfs_h=yes],
[ompi_check_openib_sysfs_h=no])
AS_IF([test "$ompi_check_openib_sysfs_h" != "yes"],
[AS_IF([test ! -z "$with_openib" -a "$with_openib" != "no"],
[AC_MSG_ERROR([OpenIB support requested but required sysfs/libsysfs.h not found. Aborting])])])
AS_IF([test "$ompi_check_openib_libdir" = ""],
[ompi_check_openib_my_libdir=$ompi_check_openib_dir],
[ompi_check_openib_my_libdir=$ompi_check_openib_libdir])