78 строки
3.2 KiB
Plaintext
78 строки
3.2 KiB
Plaintext
|
dnl -*- shell-script -*-
|
||
|
dnl
|
||
|
dnl Copyright (c) 2010-2015 Cisco Systems, Inc. All rights reserved.
|
||
|
dnl $COPYRIGHT$
|
||
|
dnl
|
||
|
dnl Additional copyrights may follow
|
||
|
dnl
|
||
|
dnl $HEADER$
|
||
|
dnl
|
||
|
|
||
|
dnl There will only be one component used in this framework, and it will
|
||
|
dnl be selected at configure time by priority. Components must set
|
||
|
dnl their priorities in their configure.m4 file.
|
||
|
|
||
|
dnl We only want one winning component (vs. STOP_AT_FIRST_PRIORITY,
|
||
|
dnl which will allow all components of the same priority who succeed to
|
||
|
dnl win)
|
||
|
m4_define(MCA_opal_dl_CONFIGURE_MODE, STOP_AT_FIRST)
|
||
|
|
||
|
AC_DEFUN([MCA_opal_dl_CONFIG],[
|
||
|
OPAL_HAVE_DL_SUPPORT=0
|
||
|
|
||
|
# If --disable-dlopen was used, then have all the components fail
|
||
|
# (we still need to configure them all so that things like "make
|
||
|
# dist" work", but we just want the MCA system to (artificially)
|
||
|
# conclude that it can't build any of the components.
|
||
|
AS_IF([test "$enable_dlopen" = "no"],
|
||
|
[want_dl=0], [want_dl=1])
|
||
|
|
||
|
MCA_CONFIGURE_FRAMEWORK([opal], [dl], [$want_dl])
|
||
|
|
||
|
# If we found no suitable static dl component and dlopen support
|
||
|
# was not specifically disabled, this is an error.
|
||
|
AS_IF([test "$MCA_opal_dl_STATIC_COMPONENTS" = "" && \
|
||
|
test "$enable_dlopen" != "no"],
|
||
|
[AC_MSG_WARN([Did not find a suitable static opal dl component])
|
||
|
AC_MSG_WARN([You might need to install libltld (and its headers) or])
|
||
|
AC_MSG_WARN([specify --disable-dlopen to configure.])
|
||
|
AC_MSG_ERROR([Cannot continue])])
|
||
|
|
||
|
# If we have a winning component (which, per above, will only
|
||
|
# happen if --disable-dlopen was *not* specified), do some more
|
||
|
# logic.
|
||
|
AS_IF([test "$MCA_opal_dl_STATIC_COMPONENTS" != ""],
|
||
|
[ # We had a winner -- w00t!
|
||
|
|
||
|
OPAL_HAVE_DL_SUPPORT=1
|
||
|
# If we added any -L flags to ADD_LDFLAGS, then we (might)
|
||
|
# need to add those directories to LD_LIBRARY_PATH.
|
||
|
# Otherwise, if we try to AC RUN_IFELSE anything here in
|
||
|
# configure, it might die because it can't find the libraries
|
||
|
# we just linked against.
|
||
|
OPAL_VAR_SCOPE_PUSH([opal_dl_base_found_l opal_dl_base_token opal_dl_base_tmp opal_dl_base_dir])
|
||
|
opal_dl_base_found_l=0
|
||
|
eval "opal_dl_base_tmp=\$opal_dl_${opal_dl_winner}_ADD_LIBS"
|
||
|
for opal_dl_base_token in $opal_dl_base_tmp; do
|
||
|
case $opal_dl_base_token in
|
||
|
-l*) opal_dl_base_found_l=1 ;;
|
||
|
esac
|
||
|
done
|
||
|
AS_IF([test $opal_dl_base_found_l -eq 1],
|
||
|
[eval "opal_dl_base_tmp=\$opal_dl_${opal_dl_winner}_ADD_LDFLAGS"
|
||
|
for opal_dl_base_token in $opal_dl_base_tmp; do
|
||
|
case $opal_dl_base_token in
|
||
|
-L*)
|
||
|
opal_dl_base_dir=`echo $opal_dl_base_token | cut -c3-`
|
||
|
export LD_LIBRARY_PATH=$LD_LIBRARY_PATH:$opal_dl_base_dir
|
||
|
AC_MSG_WARN([Adding to LD_LIBRARY_PATH: $opal_dl_base_dir])
|
||
|
;;
|
||
|
esac
|
||
|
done])
|
||
|
OPAL_VAR_SCOPE_POP
|
||
|
])
|
||
|
|
||
|
AC_DEFINE_UNQUOTED([OPAL_HAVE_DL_SUPPORT], [$OPAL_HAVE_DL_SUPPORT],
|
||
|
[Whether the OPAL DL framework is functional or not])
|
||
|
])
|