Skip to content

Commit

Permalink
configury: look for PMI header in DIR provided by --with-pmi=DIR
Browse files Browse the repository at this point in the history
Signed-off-by: Gilles Gouaillardet <gilles@rist.or.jp>
  • Loading branch information
ggouaillardet committed Feb 26, 2018
1 parent 75acb17 commit 83dd8cd
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 83dd8cd

Please sign in to comment.