-
Notifications
You must be signed in to change notification settings - Fork 1.6k
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
Failing to compile Fluent Bit with following options #2999
Comments
I took a look, the in additional to the above failures, with |
This commit changes `struct flb_tls *tls` to `void *tls` at the api in flb_upstream_create_url. Since flb_upstream_create_url is used both in tls and non-tls mode, it is not possible to disable this fuction in non-tls build. Instead with the API change it is possible to build with non-tls through `#if #else #fi` inside the function. This commit is part of the effort to address the issue raised in fluent#2999 where it was not possible to disable TLS to build fluent-bit. Signed-off-by: Yong Tang <[email protected]>
This commit updates flb_io.c and use FLB_HAVE_TLS so that it is possible to build with tls and non-tls. This commit is part of the effort to address the issue raised in fluent#2999 where it was not possible to disable TLS to build fluent-bit. Signed-off-by: Yong Tang <[email protected]>
This commit updates flb_http_client.h and use FLB_HAVE_TLS so that it is possible to build with tls and non-tls. SInce flb_http_client pretty much depends on TLS, this commit use FLB_HAVE_TLS to exclude build in case non-tls build is encountered. This commit is part of the effort to address the issue raised in fluent#2999 where it was not possible to disable TLS to build fluent-bit. Signed-off-by: Yong Tang <[email protected]>
This commit updates flb_lib.c and use FLB_HAVE_TLS so that it is possible to build with tls and non-tls. This commit is part of the effort to address the issue raised in fluent#2999 where it was not possible to disable TLS to build fluent-bit. Signed-off-by: Yong Tang <[email protected]>
This commit updates flb_help.c and use FLB_HAVE_TLS so that it is possible to build with tls and non-tls. This commit is part of the effort to address the issue raised in fluent#2999 where it was not possible to disable TLS to build fluent-bit. Signed-off-by: Yong Tang <[email protected]>
This commit updates CMakeLists.txt so that it is possible to build with TLS and non-TLS selectively. This commit is part of the effort to address the issue raised in fluent#2999 where it was not possible to disable TLS to build fluent-bit. Signed-off-by: Yong Tang <[email protected]>
This issue is stale because it has been open 30 days with no activity. Remove stale label or comment or this will be closed in 5 days. |
This issue was closed because it has been stalled for 5 days with no activity. |
The text was updated successfully, but these errors were encountered: