Permalink
Name already in use
A tag already exists with the provided branch name. Many Git commands accept both tag and branch names, so creating this branch may cause unexpected behavior. Are you sure you want to create this branch?
bee-files/openssl_compat102.be0
Go to fileThis commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
OpenSSL 1.1.x is not compatible with 1.0.x, so keep `/usr/lib/libssl.so.1.0.0` and `/usr/lib/libcrypto.so.1.0.0`, and the engines around. Below is an error example. $ host 26-Nov-2018 18:39:28.273 ENGINE_by_id failed (crypto failure) 26-Nov-2018 18:39:28.273 error:25070067:DSO support routines:DSO_load:could not load the shared library:dso_lib.c:233: 26-Nov-2018 18:39:28.273 error:260B6084:engine routines:DYNAMIC_LOAD:dso not found:eng_dyn.c:467: 26-Nov-2018 18:39:28.273 error:2606A074:engine routines:ENGINE_by_id:no such engine:eng_list.c:391:id=gost host: dst_lib_init: crypto failure
executable file
10 lines (8 sloc)
429 Bytes
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/usr/bin/env beesh | |
# BEE_VERSION openssl_compat102-1.0.2q-0 | |
mee_install() { | |
cd ${D} | |
start_cmd tar xpf /src/mariux/beeroot/packages/openssl1-1.0.2q-0.x86_64.bee.tar.bz2 /usr/lib/libssl.so.1.0.0 | |
start_cmd tar xpf /src/mariux/beeroot/packages/openssl1-1.0.2q-0.x86_64.bee.tar.bz2 /usr/lib/libcrypto.so.1.0.0 | |
start_cmd tar xpf /src/mariux/beeroot/packages/openssl1-1.0.2q-0.x86_64.bee.tar.bz2 /usr/lib/engines/ | |
} |