Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
When building the latest curl 7.66.0 on Solaris 10 the build fails with
gmake[2]: Entering directory '/home/dam/mgar/pkg/curl/trunk/work/solaris10-sparc/build-isa-sparcv8plus-features-minimal/curl-7.66.0/lib' CC libcurl_la-asyn-thread.lo "asyn-thread.c", line 248: undefined symbol: AF_LOCAL cc: acomp failed for asyn-thread.c
This is because AF_LOCAL does not exist on Solaris. As a suggested workaround AF_UNIX could be used.
AF_LOCAL
AF_UNIX
The text was updated successfully, but these errors were encountered:
I wonder why this did not pop up on the continuous build environment.
Sorry, something went wrong.
why this did not pop up on the continuous build environment
That's indeed a mystery!
So does it work for you if we simply use AF_UNIX there instead?
asyn-thread: s/AF_LOCAL/AF_UNIX for Solaris
99bbe06
Reported-By: Dagobert Michelsen Fixes #4328
Yes, this seems to work and the compilation and testsuite passes.
e34ec7d
Thanks!
Successfully merging a pull request may close this issue.
When building the latest curl 7.66.0 on Solaris 10 the build fails with
This is because
AF_LOCAL
does not exist on Solaris. As a suggested workaroundAF_UNIX
could be used.The text was updated successfully, but these errors were encountered: