-
Notifications
You must be signed in to change notification settings - Fork 40
New issue
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
Build librdkafka with gssapi support for pip package, fixes #325 #352
base: main
Are you sure you want to change the base?
Conversation
f7d5cf6
to
8f52943
Compare
8f52943
to
0be7419
Compare
Signed-off-by: Tim Paine <[email protected]>
0be7419
to
66c4c14
Compare
os.environ["ACLOCAL_PATH"] = f"{aclocal_path}:{os.environ.get('ACLOCAL_PATH', '')}" | ||
except subprocess.CalledProcessError as e: | ||
print("Error obtaining Homebrew prefix for autoconf-archive:", e) | ||
aclocal_path = None |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
no need to set to none
except subprocess.CalledProcessError as e: | ||
print("Error obtaining Homebrew prefix for autoconf-archive:", e) | ||
aclocal_path = None | ||
elif platform.system() != "Windows": |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
This will do this no matter the context, i think it probably makes more sense to only do this if we’re doing a manylinux build in the docker image since thats where the problem seems to be
As title, builds
librdkafka
with GSSAPI support viacyrus-sasl
, enabling this feature for our pip packages (currently this only works on our conda packages).No windows support for now as vcpkg krb5 does not support our static build, will make a separate ticket to track
xref: microsoft/vcpkg#40320