summaryrefslogtreecommitdiff
path: root/lib
diff options
context:
space:
mode:
authortradke <tradke@17b73243-c579-4c4c-a9d2-2d5706c11dac>2004-11-14 11:55:10 +0000
committertradke <tradke@17b73243-c579-4c4c-a9d2-2d5706c11dac>2004-11-14 11:55:10 +0000
commite681eeaf7e0209d635c9c6e8a8c77b73091d4c79 (patch)
tree7c3ba57dac9988f5e3d90b548207821287727327 /lib
parent7936b87ffcf0d30ecde0ccc569aeecb2a96db703 (diff)
LAM libraries wants libdl. Added to MPI_LIBS.
git-svn-id: http://svn.cactuscode.org/flesh/trunk@3908 17b73243-c579-4c4c-a9d2-2d5706c11dac
Diffstat (limited to 'lib')
-rw-r--r--lib/make/extras/MPI/LAM10
1 files changed, 5 insertions, 5 deletions
diff --git a/lib/make/extras/MPI/LAM b/lib/make/extras/MPI/LAM
index bc3d767b..2e1cf1f2 100644
--- a/lib/make/extras/MPI/LAM
+++ b/lib/make/extras/MPI/LAM
@@ -6,7 +6,7 @@
# @desc
# Configure Cactus to compile with the LAM version of MPI.
# @enddesc
-# @version $Header: /mnt/data2/cvs2svn/cvs-repositories/Cactus/lib/make/extras/MPI/LAM,v 1.9 2004-10-25 11:27:05 tradke Exp $
+# @version $Header: /mnt/data2/cvs2svn/cvs-repositories/Cactus/lib/make/extras/MPI/LAM,v 1.10 2004-11-14 11:55:10 tradke Exp $
# @@*/
echo ' LAM selected'
@@ -64,12 +64,12 @@ if test -z "$LAM_LIB_DIR" -o -z "$LAM_INC_DIR" ; then
fi
if test -z "$LAM_INC_DIR"; then
- echo " Using no explicit LAM include path"
+ echo ' Using no explicit LAM include path'
else
echo " Using \"$LAM_INC_DIR\" as LAM include path"
fi
if test -z "$LAM_LIB_DIR"; then
- echo " Using no explicit LAM library path"
+ echo ' Using no explicit LAM library path'
else
echo " Using \"$LAM_LIB_DIR\" as LAM library path"
fi
@@ -77,9 +77,9 @@ fi
# LAM libs changed in versions newer than 6.4
if test -r "$LAM_LIB_DIR/libtrillium.a" ; then
- MPI_LIBS='mpi tstdio args t trillium"'
+ MPI_LIBS='mpi tstdio args t trillium'
else
- MPI_LIBS="mpi lam pthread"
+ MPI_LIBS='mpi lam dl pthread'
fi
MPI_INC_DIRS="$LAM_INC_DIR"