mpich: update build requirements (#13966)

To build from git, MPICH will need newer autoconf, automake, and libtool than
typically available on many systems.
This commit is contained in:
Rob Latham 2019-12-03 17:13:52 -06:00 committed by Adam J. Stewart
parent c7dbb4f103
commit 92ee0659e2

View File

@ -104,6 +104,12 @@ class Mpich(AutotoolsPackage):
depends_on('pmix', when='pmi=pmix')
# building from git requires regenerating autotools files
depends_on('automake@1.15:', when='@develop', type=("build"))
depends_on('libtool@2.4.4:', when='@develop', type=("build"))
depends_on("m4", when="@develop", type=("build")),
depends_on("autoconf@2.67:", when='@develop', type=("build"))
conflicts('device=ch4', when='@:3.2')
conflicts('netmod=ofi', when='@:3.1.4')
conflicts('netmod=ucx', when='device=ch3')