1
1

A fix so that 'self' only compiles if --enable-dlopen (common case).

This is because internally 'self' uses dlopen to look at the application
running to determine if it can/should be used or not.

This commit was SVN r15673.
Этот коммит содержится в:
Josh Hursey 2007-07-29 17:40:17 +00:00
родитель 1dbbfc04b7
Коммит fb90a75fc9

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

@ -20,6 +20,11 @@
AC_DEFUN([MCA_crs_self_CONFIG],[
# If we don't want FT, don't compile this component
AS_IF([test "$ompi_want_ft" = "1"],
[crs_self_good="yes"],
[$2])
# We need to be able to dlopen the executable for this component to work.
AS_IF([test "$OMPI_ENABLE_DLOPEN_SUPPORT" = "1" -a "$crs_self_good" = "yes"],
[$1],
[$2])
])dnl