diff options
author | Danilo Egea Gondolfo <danilo@FreeBSD.org> | 2021-01-09 14:16:51 +0000 |
---|---|---|
committer | Danilo Egea Gondolfo <danilo@FreeBSD.org> | 2021-01-09 14:16:51 +0000 |
commit | 14fdff9904db0629fa4a735b234c28b8b34e9341 (patch) | |
tree | 78b43188bbfc6991342d6a890ecb6ec044db4b14 | |
parent | - Update to 1.5-19 (diff) |
net/openmpi3: Use the embedded hwloc library to workaround a conflict between hwloc and hwloc2 due sysutils/slurm-wlm.
OpenMPI3 is not compatible with hwloc2. Also, OpenMPI3 was deprecated by upstream and will be removed from the ports tree as soon as all the ports which depend on it are moved to net/openmpi.
PR: 252496
Notes
Notes:
svn path=/head/; revision=560866
-rw-r--r-- | net/openmpi3/Makefile | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/net/openmpi3/Makefile b/net/openmpi3/Makefile index a377652c0048..67c15b7b7ce5 100644 --- a/net/openmpi3/Makefile +++ b/net/openmpi3/Makefile @@ -2,6 +2,7 @@ PORTNAME= openmpi PORTVERSION= 3.1.6 +PORTREVISION= 1 CATEGORIES= net parallel MASTER_SITES= http://www.open-mpi.org/software/ompi/v${PORTVERSION:R}/downloads/ PKGNAMESUFFIX= 3 @@ -16,8 +17,7 @@ BROKEN_armv6= fails to package: pkg-static: mca_patcher_overwrite.la: No such f BROKEN_armv7= fails to package: pkg-static: mca_patcher_overwrite.la: No such file or directory BROKEN_sparc64= fails to compile on sparc64 -LIB_DEPENDS= libhwloc.so:devel/hwloc \ - libltdl.so:devel/libltdl \ +LIB_DEPENDS= libltdl.so:devel/libltdl \ libevent.so:devel/libevent \ libmunge.so:security/munge @@ -38,7 +38,7 @@ PLIST_SUB+= MPIDIR=${MPIDIR} CONFIGURE_ARGS+= --prefix=${PREFIX}/${MPIDIR} \ --mandir=${PREFIX}/${MPIDIR}/man \ --program-prefix= \ - --with-hwloc=external \ + --with-hwloc=internal \ --with-libltdl \ --enable-mpi-fortran=usempi \ --enable-mpi-cxx \ |