nettle: remove openssl dep (#43770)
This commit is contained in:
parent
6be07da201
commit
d210425eef
1 changed files with 6 additions and 2 deletions
|
@ -26,7 +26,11 @@ class Nettle(AutotoolsPackage, GNUMirrorPackage):
|
||||||
|
|
||||||
depends_on("gmp")
|
depends_on("gmp")
|
||||||
depends_on("m4", type="build")
|
depends_on("m4", type="build")
|
||||||
depends_on("openssl")
|
|
||||||
|
def flag_handler(self, name, flags):
|
||||||
|
if name == "cflags":
|
||||||
|
flags.append(self.compiler.c99_flag)
|
||||||
|
return (flags, None, None)
|
||||||
|
|
||||||
def configure_args(self):
|
def configure_args(self):
|
||||||
return ["CFLAGS={0}".format(self.compiler.c99_flag)]
|
return ["--disable-openssl"]
|
||||||
|
|
Loading…
Reference in a new issue