I was getting the following error when I ran make
"/usr/bin/ld: /usr/lib64/libldap.so.2: undefined reference to `EVP_md2@OPENSSL_3.0.0'"
I fixed it by making the following changes in CMakeLists.txt
# Find OpenSSL package
find_package(OpenSSL REQUIRED)
#target_link_libraries(${PROJECT_NAME} rt)
target_link_libraries(${PROJECT_NAME} curl OpenSSL::SSL OpenSSL::Crypto)
I was getting the following error when I ran
makeI fixed it by making the following changes in
CMakeLists.txt