Skip to content
Snippets Groups Projects
Commit 25eabb39 authored by Martin Nolte's avatar Martin Nolte
Browse files

merge trunk

[[Imported from SVN: r6975]]
parents 185c9dff 577d5625
No related branches found
No related tags found
No related merge requests found
......@@ -58,7 +58,9 @@ AS_VAR_SET([$1], ["$_dune_va_tmp"$2])])
# LIBS The libraries to add.
#
# All arguments allow shell substitutions. Each argument should be suitable
# for use inside shell double quotes.
# for use inside shell double quotes. The flags given as argument here should
# not include the flags of dependend libraries that already call
# DUNE_ADD_ALL_PKG themselves; e.g. HDF5 should not add the DUNEMPI* flags.
#
# configure/shell variables:
# ALL_PKG_CPPFLAGS
......
......@@ -32,7 +32,7 @@ dnl do not use LT_INIT since we want to be compatible with libtool 1.5
AC_REQUIRE([DUNE_CHECK_MOD_DEPENDENCIES])
# convenience-variables if every found package should be used
AC_SUBST([ALL_PKG_LIBS], "$ALL_PKG_LIBS $DUNE_PKG_LIBS $LIBS")
AC_SUBST([ALL_PKG_LIBS], "$DUNE_PKG_LIBS $ALL_PKG_LIBS $LIBS")
AC_SUBST([ALL_PKG_LDFLAGS], "$LDFLAGS $DUNE_PKG_LDFLAGS $ALL_PKG_LDFLAGS")
AC_SUBST([ALL_PKG_CPPFLAGS], "$CPPFLAGS $DUNE_PKG_CPPFLAGS $ALL_PKG_CPPFLAGS")
......
......@@ -204,6 +204,8 @@ AC_DEFUN([DUNE_MPI],[
AC_SUBST(DUNEMPILIBS)
AC_SUBST(MPI_VERSION, $dune_MPI_VERSION)
# NOTE: If you intent to copy-n-paste this line, try to avoid including any
# flags of dependent libraries that call DUNE_ADD_ALL_PKG themselves.
DUNE_ADD_ALL_PKG([MPI], [\${DUNEMPICPPFLAGS}], [\${DUNEMPILDFLAGS}], [\${DUNEMPILIBS}])
AM_CONDITIONAL(MPI, [test "x$with_mpi" != "xno"])
......
......@@ -12,6 +12,11 @@
# HDF5_CPPFLAGS
# HDF5_LDFLAGS
# HDF5_LIBS
# direct_HDF5_CPPFLAGS
# direct_HDF5_LDFLAGS
# direct_HDF5_LIBS
# same as above, but without variable indirections (e.g. the contents of
# DUNEMPICPPFLAGS instead of '${DUNEMPICPPFLAGS}')
# HDF5_PARALLEL
# 1 or undef
# HAVE_HDF5
......@@ -65,17 +70,26 @@ AC_DEFUN([DUNE_PATH_HDF5],[
CPPFLAGS="$CPPFLAGS $_dune_hdf5_incpath"
direct_HDF5_CPPFLAGS="$_dune_hdf5_incpath"
nodep_HDF5_CPPFLAGS="$_dune_hdf5_incpath"
HDF5_CPPFLAGS="$_dune_hdf5_incpath"
direct_HDF5_LDFLAGS=""
nodep_HDF5_LDFLAGS=""
HDF5_LDFLAGS=""
direct_HDF5_LIBS=""
nodep_HDF5_LIBS=""
HDF5_LIBS=""
HDF5_PARALLEL=0
# test if we are parallel
AC_CHECK_DECL(H5_HAVE_PARALLEL, [dnl
CPPFLAGS="$CPPFLAGS $DUNEMPICPPFLAGS"
direct_HDF5_CPPFLAGS="$HDF5_CPPFLAGS $DUNEMPICPPFLAGS"
HDF5_CPPFLAGS="$HDF5_CPPFLAGS \${DUNEMPICPPFLAGS}"
LDFLAGS="$LDFLAGS $DUNEMPILDFLAGS"
direct_HDF5_LDFLAGS="$HDF5_LDFLAGS $DUNEMPILDFLAGS"
HDF5_LDFLAGS="$HDF5_LDFLAGS \${DUNEMPILDFLAGS}"
LIBS="$DUNEMPILIBS $LIBS"
direct_HDF5_LIBS="$DUNEMPILIBS $HDF5_LIBS"
HDF5_LIBS="\${DUNEMPILIBS} $HDF5_LIBS"
HDF5_PARALLEL=1],[],[#include"H5pubconf.h"])
......@@ -84,12 +98,16 @@ AC_DEFUN([DUNE_PATH_HDF5],[
[HAVE_HDF5=1],
[HAVE_HDF5=0])
# Just fotr the configure check, -L has to go into LIBS in the end
# Just for the configure check. In the end, -L has to go into LIBS.
LDFLAGS="$LDFLAGS $_dune_hdf5_libpath"
# test for lib
if test x$HAVE_HDF5 = x1 ; then
AC_CHECK_LIB([hdf5], [H5open],
[HDF5_LIBS="$_dune_hdf5_libpath -lhdf5 $with_hdf5_libs $HDF5_LIBS"],
[
direct_HDF5_LIBS="$_dune_hdf5_libpath -lhdf5 $with_hdf5_libs $direct_HDF5_LIBS"
nodep_HDF5_LIBS="$_dune_hdf5_libpath -lhdf5 $with_hdf5_libs $nodep_HDF5_LIBS"
HDF5_LIBS="$_dune_hdf5_libpath -lhdf5 $with_hdf5_libs $HDF5_LIBS"
],
[HAVE_HDF5=0], ["$with_hdf5_libs"])
fi
......@@ -107,8 +125,14 @@ AC_DEFUN([DUNE_PATH_HDF5],[
fi
else
# clear variables
direct_HDF5_CPPFLAGS=
nodep_HDF5_CPPFLAGS=
HDF5_CPPFLAGS=
direct_HDF5_LDFLAGS=
nodep_HDF5_LDFLAGS=
HDF5_LDFLAGS=
direct_HDF5_LIBS=
nodep_HDF5_LIBS=
HDF5_LIBS=
HDF5_PARALLEL=0
fi
......@@ -121,8 +145,8 @@ AC_DEFUN([DUNE_PATH_HDF5],[
AM_CONDITIONAL(HDF5, test x$HAVE_HDF5 = x1)
# add to global list
DUNE_ADD_ALL_PKG([HDF5], [\${HDF5_CPPFLAGS}],
[\${HDF5_LDFLAGS}], [\${HDF5_LIBS}])
DUNE_ADD_ALL_PKG([HDF5], [$nodep_HDF5_CPPFLAGS],
[$nodep_HDF5_LDFLAGS], [$nodep_HDF5_LIBS])
# reset values
LIBS="$ac_save_LIBS"
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment