Add krelloptions variant that is used to turn on a configuration option to build the thread safe lightweight libraries.

This commit is contained in:
Jim Galarowicz 2015-07-21 10:49:15 -05:00
parent 13421dc4aa
commit 64c8fd3fa1

View file

@ -8,11 +8,16 @@ class Mrnet(Package):
version('4.0.0', 'd00301c078cba57ef68613be32ceea2f') version('4.0.0', 'd00301c078cba57ef68613be32ceea2f')
version('4.1.0', '5a248298b395b329e2371bf25366115c') version('4.1.0', '5a248298b395b329e2371bf25366115c')
variant('krelloptions', default=False, description="Also build the MRNet LW threadsafe libraries")
parallel = False parallel = False
depends_on("boost") depends_on("boost")
def install(self, spec, prefix): def install(self, spec, prefix):
# Build the MRNet LW thread safe libraries when the krelloptions variant is present
if '+krelloptions' in spec:
configure("--prefix=%s" %prefix, "--enable-shared", "--enable-ltwt-threadsafe")
else:
configure("--prefix=%s" %prefix, "--enable-shared") configure("--prefix=%s" %prefix, "--enable-shared")
make() make()