From 8294f6de03e374749acce78e3f18a92bc1d98cee Mon Sep 17 00:00:00 2001 From: Brian Barrett Date: Fri, 17 Aug 2007 03:48:39 +0000 Subject: [PATCH] The portals_utcp component doesn't actually need the POrtals libraries and only pokes at environment variables. So don't link in the libraries, as that causes a whole other set of problems. This commit was SVN r15899. --- orte/mca/sds/portals_utcp/configure.m4 | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/orte/mca/sds/portals_utcp/configure.m4 b/orte/mca/sds/portals_utcp/configure.m4 index ef92b05e32..f1bfa1f8f0 100644 --- a/orte/mca/sds/portals_utcp/configure.m4 +++ b/orte/mca/sds/portals_utcp/configure.m4 @@ -74,6 +74,12 @@ PtlGetRank(PTL_INVALID_HANDLE, &rank, &nprocs);])], [AC_MSG_RESULT([no]) $2]) + # we don't actually need the Portals code for this component, + # so don't link against them... + sds_portals_utcp_CPPFLAGS= + sds_portals_utcp_LDFLAGS= + sds_portals_utcp_LIBS= + # substitute in the things needed to build Portals AC_SUBST([sds_portals_utcp_CPPFLAGS]) AC_SUBST([sds_portals_utcp_LDFLAGS])