1
1
openmpi/opal/mca/dl/libltdl/configure.m4
Jeff Squyres 39364d315c libltdl: dl component based on libltdl
Works on any system that libltdl supports and has ltdl.h and libltdl
available.
2015-03-09 08:16:55 -07:00

124 строки
4.3 KiB
Bash

# -*- shell-script -*-
#
# Copyright (c) 2009-2015 Cisco Systems, Inc. All rights reserved.
#
# $COPYRIGHT$
#
# Additional copyrights may follow
#
# $HEADER$
#
AC_DEFUN([MCA_opal_dl_libltdl_PRIORITY], [50])
#
# Force this component to compile in static-only mode
#
AC_DEFUN([MCA_opal_dl_libltdl_COMPILE_MODE], [
AC_MSG_CHECKING([for MCA component $2:$3 compile mode])
$4="static"
AC_MSG_RESULT([$$4])
])
# MCA_event_external_POST_CONFIG()
# ---------------------------------
AC_DEFUN([MCA_opal_dl_libltdl_POST_CONFIG],[
# If we won, then do all the rest of the setup
AS_IF([test "$1" = "1"],
[
# Add some stuff to CPPFLAGS so that the rest of the source
# tree can be built
LDFLAGS="$LDFLAGS $opal_dl_libltdl_ADD_LDFLAGS"
LIBS="$LIBS $opal_dl_libltdl_ADD_LIBS"
])
])dnl
# MCA_dl_libltdl_CONFIG([action-if-can-compile],
# [action-if-cant-compile])
# ------------------------------------------------
AC_DEFUN([MCA_opal_dl_libltdl_CONFIG],[
OPAL_VAR_SCOPE_PUSH([CPPFLAGS_save LDFLAGS_save LIBS_save])
AC_CONFIG_FILES([opal/mca/dl/libltdl/Makefile])
# Add --with options
AC_ARG_WITH([libltdl],
[AC_HELP_STRING([--with-libltdl(=DIR)],
[Build libltdl support, optionally adding DIR/include, DIR/lib, and DIR/lib64 to the search path for headers and libraries])])
AC_ARG_WITH([libltdl-libdir],
[AC_HELP_STRING([--with-libltdl-libdir=DIR],
[Search for libltdl libraries in DIR])])
# Sanity check the --with values
OPAL_CHECK_WITHDIR([libltdl], [$with_libltdl],
[include/ltdl.h])
OPAL_CHECK_WITHDIR([libltdl-libdir], [$with_libltdl_libdir],
[libltdl.*])
# Defaults
opal_check_libltdl_dir_msg="compiler default"
opal_check_libltdl_libdir_msg="linker default"
# Save directory names if supplied
AS_IF([test ! -z "$with_libltdl" && test "$with_libltdl" != "yes"],
[opal_check_libltdl_dir=$with_libltdl
opal_check_libltdl_dir_msg="$opal_check_libltdl_dir (from --with-libltdl)"])
AS_IF([test ! -z "$with_libltdl_libdir" && test "$with_libltdl_libdir" != "yes"],
[opal_check_libltdl_libdir=$with_libltdl_libdir
opal_check_libltdl_libdir_msg="$opal_check_libltdl_libdir (from --with-libltdl-libdir)"])
opal_dl_libltdl_happy=no
AS_IF([test "$with_libltdl" != "no"],
[AC_MSG_CHECKING([for libltdl dir])
AC_MSG_RESULT([$opal_check_libltdl_dir_msg])
AC_MSG_CHECKING([for libltdl library dir])
AC_MSG_RESULT([$opal_check_libltdl_libdir_msg])
OPAL_CHECK_PACKAGE([opal_dl_libltdl],
[ltdl.h],
[ltdl],
[lt_dlopen],
[],
[$opal_check_libltdl_dir],
[$opal_check_libltdl_libdir],
[opal_dl_libltdl_happy=yes],
[opal_dl_libltdl_happy=no])
])
# If we have libltdl, do we have lt_dladvise?
opal_dl_libltdl_have_lt_dladvise=0
AS_IF([test "$opal_dl_libltdl_happy" = "yes"],
[CPPFLAGS_save=$CPPFLAGS
LDFLAGS_save=$LDFLAGS
LIBS_save=$LIBS
CPPFLAGS="$opal_dl_libltdl_CPPFLAGS $CPPFLAGS"
LDFLAGS="$opal_dl_libltdl_LDFLAGS $LDFLAGS"
LIBS="$opal_dl_libltdl_LIBS $LIBS"
AC_CHECK_FUNC([lt_dladvise_init],
[opal_dl_libltdl_have_lt_dladvise=1])
CPPFLAGS=$CPPFLAGS_save
LDFLAGS=$LDFLAGS_save
LIBS=$LIBS_save
])
AC_DEFINE_UNQUOTED(OPAL_DL_LIBLTDL_HAVE_LT_DLADVISE,
[$opal_dl_libltdl_have_lt_dladvise],
[Whether we have lt_dladvise or not])
AS_IF([test "$opal_dl_libltdl_happy" = "yes"],
[opal_dl_libltdl_ADD_CPPFLAGS=$opal_dl_libltdl_CPPFLAGS
opal_dl_libltdl_ADD_LDFLAGS=$opal_dl_libltdl_LDFLAGS
opal_dl_libltdl_ADD_LIBS=$opal_dl_libltdl_LIBS
$1],
[AS_IF([test ! -z "$with_libltdl" && \
test "$with_libltdl" != "no"],
[AC_MSG_WARN([Libltdl support requested (via --with-libltdl) but not found.])
AC_MSG_ERROR([Cannot continue.])])
$2])
AC_SUBST(opal_dl_libltdl_CPPFLAGS)
AC_SUBST(opal_dl_libltdl_LDFLAGS)
AC_SUBST(opal_dl_libltdl_LIBS)
OPAL_VAR_SCOPE_POP
])