You are viewing a plain text version of this content. The canonical link for it is here.
Posted to issues@nifi.apache.org by GitBox <gi...@apache.org> on 2021/09/29 15:42:04 UTC

[GitHub] [nifi-minifi-cpp] lordgamez commented on a change in pull request #1183: MINIFICPP-1652 Fix Linux docker image builds

lordgamez commented on a change in pull request #1183:
URL: https://github.com/apache/nifi-minifi-cpp/pull/1183#discussion_r718650507



##########
File path: cmake/PahoMqttC.cmake
##########
@@ -39,6 +39,7 @@ FetchContent_MakeAvailable(paho.mqtt.c-external)
 # Set dependencies and target to link to
 if (NOT OPENSSL_OFF)
     add_library(paho.mqtt.c ALIAS paho-mqtt3cs-static)
+    add_dependencies(common_ssl_obj_static OpenSSL::SSL OpenSSL::Crypto)

Review comment:
       The problem was that when paho-mqtt and the ssl library were built in parallel it could happen that the ssl headers were still not present in the ssl install dir when the paho-mqtt build needed them thus the build failed. So we need to wait for the ssl library to finish building before building the paho-mqtt.




-- 
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.

To unsubscribe, e-mail: issues-unsubscribe@nifi.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org