You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@pulsar.apache.org by GitBox <gi...@apache.org> on 2021/01/08 21:07:49 UTC

[GitHub] [pulsar] phijohns-tibco opened a new issue #9155: C Client CMakeLists.txt incorrectly sets the OPENSSL_ROOT_DIR

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:
users@infra.apache.org



[GitHub] [pulsar] sijie closed issue #9155: C Client CMakeLists.txt incorrectly sets the OPENSSL_ROOT_DIR

Posted by GitBox <gi...@apache.org>.
sijie closed issue #9155:
URL: https://github.com/apache/pulsar/issues/9155


   


----------------------------------------------------------------
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:
users@infra.apache.org



[GitHub] [pulsar] sijie closed issue #9155: C Client CMakeLists.txt incorrectly sets the OPENSSL_ROOT_DIR

Posted by GitBox <gi...@apache.org>.
sijie closed issue #9155:
URL: https://github.com/apache/pulsar/issues/9155


   


----------------------------------------------------------------
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:
users@infra.apache.org