wt: add missing pkgconfig dependency and fix boost version range (#9835)

wt does not build with newer versions of boost.
This commit is contained in:
Michael Kuhn 2018-11-13 16:53:44 +01:00 committed by Adam J. Stewart
parent 59a6eada53
commit 3f0fc98062

View File

@ -41,7 +41,8 @@ class Wt(CMakePackage):
# variant('fastcgi', default=False,
# description='FastCGI connector via libfcgi++')
depends_on('boost@1.46.1:')
depends_on('pkgconfig', type='build')
depends_on('boost@1.46.1:1.65')
depends_on('openssl', when='+openssl')
depends_on('libharu', when='+libharu')
depends_on('sqlite', when='+sqlite')