Open
Conversation
- Conditionalize glibcLocales (Linux only) - Fix nested function in zauth_module.c (not supported by Clang) - Skip system-linux-proc tests on macOS (/proc doesn't exist) Co-Authored-By: Claude Opus 4.5 <noreply@anthropic.com>
supersven
requested changes
Feb 6, 2026
|
|
||
| static ngx_int_t zauth_token_var (ngx_http_request_t * r, ngx_http_variable_value_t * v, uintptr_t data) { | ||
| ZauthContext const * ctx = ngx_http_get_module_ctx(r, zauth_module); | ||
| // this function checks if the signature has been validated successfully, |
Contributor
There was a problem hiding this comment.
Have you considered to use Nix's gccStdenv? You may try to override it here: https://github.com/wireapp/wire-server/blob/develop/nix/default.nix#L14-L14
E.g.
nginz = pkgs.callPackage ./nginz.nix { stdenv = pkgs.gccStdenv };
This would save us the headache to 💯 ensure that this introduces no regression. 😸
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
Add this suggestion to a batch that can be applied as a single commit.This suggestion is invalid because no changes were made to the code.Suggestions cannot be applied while the pull request is closed.Suggestions cannot be applied while viewing a subset of changes.Only one suggestion per line can be applied in a batch.Add this suggestion to a batch that can be applied as a single commit.Applying suggestions on deleted lines is not supported.You must change the existing code in this line in order to create a valid suggestion.Outdated suggestions cannot be applied.This suggestion has been applied or marked resolved.Suggestions cannot be applied from pending reviews.Suggestions cannot be applied on multi-line comments.Suggestions cannot be applied while the pull request is queued to merge.Suggestion cannot be applied right now. Please check back later.
Summary
glibcLocalesto Linux only (not available on Darwin)zauth_module.c- Clang doesn't support GCC's nested functions extensionsystem-linux-proctests on macOS since/procfilesystem doesn't existTest plan
nix developbuilds successfully on macOS🤖 Generated with Claude Code