python (65.2k questions)
javascript (44.3k questions)
reactjs (22.7k questions)
java (20.8k questions)
c# (17.4k questions)
html (16.3k questions)
r (13.7k questions)
android (13k questions)
Delphi Android app: Could not load SSL Library
I am developing an Android 32-bit app in Delphi. I need to use OpenSSL libraries in my app in order to connect to an MQTT broker.
I am using OpenSSL 1.0.2t armeabi-v7a libcrypto.a and libssl.a static ...
Miguel Mar
Votes: 0
Answers: 1
How to statically link libssl and libcrypto when using cygwin?
cmake_minimum_required(VERSION 3.17)
project(test)
set(CMAKE_CXX_STANDARD 17)
add_executable(test main.cpp)
target_link_libraries(test ssl crypto)
when use the CMakeLists.txt above, it can link th...
today man
Votes: 0
Answers: 1
Library not loaded: libssl.1.1.dylib (LoadError) when trying to run rails server and connect to mysql
Recently I updated my MacOS to Monterey 12.3 which included updates for xcode.
After that I am not able to run the rails application that I have been working on. I keep getting this error when I try t...
ls168
Votes: 0
Answers: 4
libssl1.1 dependency conflict on Ubuntu 21.10
I'm new to ubuntu and I'm trying to install nodejs npm but I get the error:
The following packages have unmet dependencies:
libssl-dev : Depends: libssl1.1 (= 1.1.1l-1ubuntu1) but 1.1.1l-1ubuntu1.1 i...
Roshan Shrivastava
Votes: 0
Answers: 1