You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
i currently try to use the librdkafka library in my Project. For the Management of the Dependencies i used conan. And here is currently the problem. When i install the dependencies on the Debug Build Type and with SSL enabled it downloads the sources and builds Openssl in Version 3.1.2 and also the Librdkafka 2.0.4. The Problem is that Openssl in the Debug Build creates the libcryptod.lib and libssld.lib Files (with the d at the end). But in the src/rdkafka_ssl.c there is this pragma section:
which causes the linkage of the program to fail, because it searches for the libcrypto.lib and libssl.lib.
Know i'm not knowing how i can fix this Problem. On easy but not so nice solution would be to copy and rename the generated libcryptod.lib and libssld.lib Files.
reacted with thumbs up emoji reacted with thumbs down emoji reacted with laugh emoji reacted with hooray emoji reacted with confused emoji reacted with heart emoji reacted with rocket emoji reacted with eyes emoji
-
Hello.
i currently try to use the librdkafka library in my Project. For the Management of the Dependencies i used conan. And here is currently the problem. When i install the dependencies on the
Debug
Build Type and withSSL
enabled it downloads the sources and builds Openssl in Version 3.1.2 and also the Librdkafka 2.0.4. The Problem is that Openssl in the Debug Build creates thelibcryptod.lib
andlibssld.lib
Files (with thed
at the end). But in the src/rdkafka_ssl.c there is this pragma section:which causes the linkage of the program to fail, because it searches for the
libcrypto.lib
andlibssl.lib
.Know i'm not knowing how i can fix this Problem. On easy but not so nice solution would be to copy and rename the generated
libcryptod.lib
andlibssld.lib
Files.Beta Was this translation helpful? Give feedback.
All reactions