gnutls: Xcode 12 seems to break building Guile extensions #38
Unanswered
sharris40
asked this question in
Everyday usage
Replies: 1 comment
-
All bugs should be reported upstream first. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
-
I believe the postinstall script for gnutls will fail when building from source on Xcode 12 due to a bug in the configure script. The script checks if the Guile function
scm_from_locale_string
is available in the libraries, but the check doesn't include the prototype from libguile/strings.h. I'm not sure if this is intentional due to past changes in Guile's header structures, but in any case, the check now fails due to implicit function declarations now being an error. This causes the Guile extensions to be disabled and the postinstall script to fail.I fixed it for myself by adding the following patch and running autoreconf before configure. As I said, I do not know if this would be appropriate for upstream, or even for Homebrew, so I have not filed an issue.
Beta Was this translation helpful? Give feedback.
All reactions