Skip to content

Commit

Permalink
Merge pull request #4864 from ggouaillardet/topic/pmix_configury
Browse files Browse the repository at this point in the history
configury: look for PMI header in DIR provided by --with-pmi=DIR
  • Loading branch information
Ralph Castain authored Feb 26, 2018
2 parents 75acb17 + 83dd8cd commit 5c59876
Showing 1 changed file with 15 additions and 10 deletions.
25 changes: 15 additions & 10 deletions config/opal_check_pmi.m4
Original file line number Diff line number Diff line change
Expand Up @@ -40,24 +40,29 @@ AC_DEFUN([OPAL_CHECK_PMI_LIB],
# check for the header
AS_IF([test -n "$1"],
[AC_MSG_CHECKING([for $3.h in $1/include])
AS_IF([test -f $1/include/$3.h],
[AC_MSG_CHECKING([for $3.h in $1])
AS_IF([test -f $1/$3.h && test -r $1/$3.h],
[AC_MSG_RESULT([found])
opal_check_$3_mycppflags="-I$1/include"],
opal_check_$3_mycppflags="-I$1"],
[AC_MSG_RESULT([not found])
AC_MSG_CHECKING([for $3.h in $1/include/slurm])
AS_IF([test -f $1/include/slurm/$3.h],
AC_MSG_CHECKING([for $3.h in $1/include])
AS_IF([test -f $1/include/$3.h && test -r $1/include/$3.h],
[AC_MSG_RESULT([found])
opal_check_$3_mycppflags="-I$1/include/slurm"
$5],
opal_check_$3_mycppflags="-I$1/include"],
[AC_MSG_RESULT([not found])
opal_check_$3_hdr_happy=no])])],
AC_MSG_CHECKING([for $3.h in $1/include/slurm])
AS_IF([test -f $1/include/slurm/$3.h && test -r $1/include/slurm/$3.h],
[AC_MSG_RESULT([found])
opal_check_$3_mycppflags="-I$1/include/slurm"
$5],
[AC_MSG_RESULT([not found])
opal_check_$3_hdr_happy=no])])])],
[AC_MSG_CHECKING([for $3.h in /usr/include])
AS_IF([test -f /usr/include/$3.h],
AS_IF([test -f /usr/include/$3.h && test -r /usr/include/$3.h],
[AC_MSG_RESULT([found])],
[AC_MSG_RESULT([not found])
AC_MSG_CHECKING([for $3.h in /usr/include/slurm])
AS_IF([test -f /usr/include/slurm/$3.h],
AS_IF([test -f /usr/include/slurm/$3.h && test -r /usr/include/slurm/$3.h],
[AC_MSG_RESULT([found])
opal_check_$3_mycppflags="-I/usr/include/slurm"
$5],
Expand Down

0 comments on commit 5c59876

Please sign in to comment.