phijohns-tibco opened a new issue #9155:
URL: https://github.com/apache/pulsar/issues/9155
**Describe the bug**
When attempting to build the c client library on macos with an updated
openssl the build fail because it doesn't link to the proper openssl library.
**To Reproduce**
Build the c client on apple with openssl 1.1.1i
> if (APPLE)
set(OPENSSL_INCLUDE_DIR /usr/local/opt/openssl/include/)
set(OPENSSL_ROOT_DIR /usr/local/opt/openssl/)
endif ()
set(OPENSSL_ROOT_DIR /usr/lib64/)
should instead be
>set(OPENSSL_ROOT_DIR/usr/lib64)
if (APPLE)
set(OPENSSL_INCLUDE_DIR /usr/local/opt/openssl/include/)
set(OPENSSL_ROOT_DIR /usr/local/opt/openssl/)
endif ()
----------------------------------------------------------------
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
For queries about this service, please contact Infrastructure at:
[email protected]