Skip to content
GitLab
Explore
Sign in
Primary navigation
Search or go to…
Project
D
dune-istl
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
Andreas Brostrøm
dune-istl
Commits
a93818c9
Commit
a93818c9
authored
12 years ago
by
Christoph Grüninger
Browse files
Options
Downloads
Patches
Plain Diff
[superlu(-dist).m4] Fix case --with-superlu=yes, cf FS#1242.
Thanks for the patch to Bård Skaflestad. [[Imported from SVN: r1778]]
parent
03cfaf0b
No related branches found
No related tags found
No related merge requests found
Changes
3
Hide whitespace changes
Inline
Side-by-side
Showing
3 changed files
COPYING
+2
-1
2 additions, 1 deletion
COPYING
m4/superlu-dist.m4
+2
-2
2 additions, 2 deletions
m4/superlu-dist.m4
m4/superlu.m4
+2
-2
2 additions, 2 deletions
m4/superlu.m4
with
6 additions
and
5 deletions
COPYING
+
2
−
1
View file @
a93818c9
...
...
@@ -23,8 +23,9 @@ Copyright holders:
2011 Elias Pipping
2007 Sreejith Pulloor Kuttanikkad
2009 Atgeirr Rasmussen
2004--2012 Oliver Sander
2008--2012 Uli Sack
2004--2012 Oliver Sander
2013 Bård Skaflestad
2006--2010 Martin Weiser
2011--2012 Matthias Wohlmuth
...
...
This diff is collapsed.
Click to expand it.
m4/superlu-dist.m4
+
2
−
2
View file @
a93818c9
...
...
@@ -57,12 +57,12 @@ AC_DEFUN([DUNE_PATH_SUPERLU_DIST],[
[AC_HELP_STRING([--with-superlu-dist],[user defined path to SuperLUDist library])],
[dnl
if test "$withval" != no ; then
# get absolute path
with_superlu_dist=`eval cd $withval 2>&1 && pwd`
if test "$withval" = yes; then
# Search in default locations
_slu_dist_search_default
else
# get absolute path
with_superlu_dist=`eval cd $withval 2>&1 && pwd`
# Search for the headers in the specified location
_slu_dist_lib_path("$with_superlu_dist", "superlu_ddefs.h")
fi
...
...
This diff is collapsed.
Click to expand it.
m4/superlu.m4
+
2
−
2
View file @
a93818c9
...
...
@@ -152,12 +152,12 @@ AC_DEFUN([DUNE_PATH_SUPERLU],[
[AC_HELP_STRING([--with-superlu],[user defined path to SuperLU library])],
[dnl
if test x"$withval" != xno ; then
# get absolute path
with_superlu=`eval cd $withval 2>&1 && pwd`
if test x"$withval" = xyes; then
# Search in default locations
_slu_search_default
else
# get absolute path
with_superlu=`eval cd $withval 2>&1 && pwd`
# Search for the headers in the specified location
_slu_search_versions(["$with_superlu"])
fi
...
...
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