bind9: add missing dependencies (#22212)

This commit is contained in:
Tomoyasu Nojiri 2021-03-12 01:32:29 +09:00 committed by GitHub
parent e11f5df7dc
commit ab9580c168
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23

View File

@ -16,6 +16,12 @@ class Bind9(AutotoolsPackage):
version('9_14_6', sha256='98be7a7b6d614b519f6c8d6ec7a8a39759ae9604d87228d9dc7c034471e5433e') version('9_14_6', sha256='98be7a7b6d614b519f6c8d6ec7a8a39759ae9604d87228d9dc7c034471e5433e')
depends_on('libuv', type='link')
depends_on('pkgconfig', type='build')
depends_on('openssl', type='link')
depends_on('libiconv', type='link')
def configure_args(self): def configure_args(self):
args = ["--without-python", "--disable-linux-caps"] args = ["--without-python", "--disable-linux-caps",
'--with-openssl={0}'.format(self.spec['openssl'].prefix)]
return args return args