Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dune-common
Manage
Activity
Members
Labels
Plan
Issues
Issue boards
Milestones
Wiki
Code
Merge requests
Repository
Branches
Commits
Tags
Repository graph
Compare revisions
Build
Pipelines
Jobs
Pipeline schedules
Artifacts
Deploy
Releases
Package registry
Model registry
Operate
Environments
Terraform modules
Monitor
Incidents
Service Desk
Analyze
Value stream analytics
Contributor analytics
CI/CD analytics
Repository analytics
Model experiments
Help
Help
Support
GitLab documentation
Compare GitLab plans
Community forum
Contribute to GitLab
Provide feedback
Keyboard shortcuts
?
Snippets
Groups
Projects
Show more breadcrumbs
Core Modules
dune-common
Commits
25eabb39
Commit
25eabb39
authored
12 years ago
by
Martin Nolte
Browse files
Options
Downloads
Plain Diff
merge trunk
[[Imported from SVN: r6975]]
parents
185c9dff
577d5625
No related branches found
No related tags found
No related merge requests found
Changes
4
Hide whitespace changes
Inline
Side-by-side
Showing
4 changed files
m4/dune.m4
+3
-1
3 additions, 1 deletion
m4/dune.m4
m4/dune_all.m4
+1
-1
1 addition, 1 deletion
m4/dune_all.m4
m4/dune_mpi.m4
+2
-0
2 additions, 0 deletions
m4/dune_mpi.m4
m4/hdf5.m4
+28
-4
28 additions, 4 deletions
m4/hdf5.m4
with
34 additions
and
6 deletions
m4/dune.m4
+
3
−
1
View file @
25eabb39
...
...
@@ -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
...
...
This diff is collapsed.
Click to expand it.
m4/dune_all.m4
+
1
−
1
View file @
25eabb39
...
...
@@ -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")
...
...
This diff is collapsed.
Click to expand it.
m4/dune_mpi.m4
+
2
−
0
View file @
25eabb39
...
...
@@ -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"])
...
...
This diff is collapsed.
Click to expand it.
m4/hdf5.m4
+
28
−
4
View file @
25eabb39
...
...
@@ -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 fo
t
r 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"
...
...
This diff is collapsed.
Click to expand it.
Preview
0%
Loading
Try again
or
attach a new file
.
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Save comment
Cancel
Please
register
or
sign in
to comment