Skip to content
Snippets Groups Projects
Unverified Commit f20c9716 authored by Chuck Atkins's avatar Chuck Atkins Committed by GitHub
Browse files

gnutls: workaround guile build error on macos (#11751)

parent 6bbc7e8d
No related branches found
No related tags found
No related merge requests found
......@@ -27,7 +27,10 @@ class Gnutls(AutotoolsPackage):
version('3.3.9', 'ff61b77e39d09f1140ab5a9cf52c58b6')
variant('zlib', default=True, description='Enable zlib compression support')
variant('guile', default=True, description='Enable Guile bindings')
variant('guile', default=False, description='Enable Guile bindings')
# gnutls+guile is currently broken on MacOS. See Issue #11668
conflicts('+guile', when='platform=darwin')
# Note that version 3.3.9 of gnutls doesn't support nettle 3.0.
depends_on('nettle@3.4.1:', when='@3.6.7.1:')
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment