diff options
author | Alexey Dokuchaev <danfe@FreeBSD.org> | 2021-11-27 08:29:56 +0000 |
---|---|---|
committer | Alexey Dokuchaev <danfe@FreeBSD.org> | 2021-11-27 08:29:57 +0000 |
commit | f8d3728a8c4d0a4a67fb07e3effffd279572339d (patch) | |
tree | 1180622e1647698a6bc48bd9085dee5977ae96e3 | |
parent | 0caae4961fcf402d0a35af8c4f26d76c633cf9e1 (diff) |
net/openmpi: unbreak the build when `net/libfabric' port is installed
Ideally, OFI option should be introduced, I've tried that first but it
does not build due to missing ENODATA definition.
Remove BROKEN_sparc64, it does not serve any useful purpose these days,
and we're not producing packages for this architecture anyways.
-rw-r--r-- | net/openmpi/Makefile | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/net/openmpi/Makefile b/net/openmpi/Makefile index ec9cac64cece..782dc2075ebe 100644 --- a/net/openmpi/Makefile +++ b/net/openmpi/Makefile @@ -9,8 +9,6 @@ COMMENT= High Performance Message Passing Library LICENSE= BSD3CLAUSE LICENSE_FILE= ${WRKSRC}/LICENSE -BROKEN_sparc64= fails to compile on sparc64 - LIB_DEPENDS= libhwloc.so.15:devel/hwloc2 \ libltdl.so:devel/libltdl \ libevent.so:devel/libevent \ @@ -37,6 +35,7 @@ CONFIGURE_ARGS+= --prefix=${PREFIX}/${MPIDIR} \ --program-prefix= \ --with-hwloc=external \ --with-libltdl \ + --without-ofi \ --enable-mpi-fortran=usempi \ --enable-mpi-cxx \ --enable-cxx-exceptions \ |