Posted November 27, 2022
"error while loading shared libraries: libssl.so.1.0.0: cannot open shared object file: No such file or directory"
The game uses outdated .so files that aren't included in most modern distros. This fix adds those files to the game directory and edits the start.sh file to reference them.
Thanks to massakra for this fix, that's where I found the solution first. I just zipped it up and made it easy to install.
Download here!
Dropbox mirror
If you want this to work with other Beamdog Enhanced Edition games, copy the lib folder to the game's main directory, open start.sh in a text editor and add
export LD_LIBRARY_PATH="$CURRENT_DIR/lib/"
under the
# Initialization
CURRENT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
cd "${CURRENT_DIR}"
source support/gog_com.shlib
block.
The game uses outdated .so files that aren't included in most modern distros. This fix adds those files to the game directory and edits the start.sh file to reference them.
Thanks to massakra for this fix, that's where I found the solution first. I just zipped it up and made it easy to install.
Download here!
Dropbox mirror
If you want this to work with other Beamdog Enhanced Edition games, copy the lib folder to the game's main directory, open start.sh in a text editor and add
export LD_LIBRARY_PATH="$CURRENT_DIR/lib/"
under the
# Initialization
CURRENT_DIR="$( cd "$( dirname "${BASH_SOURCE[0]}" )" && pwd )"
cd "${CURRENT_DIR}"
source support/gog_com.shlib
block.
Post edited March 08, 2023 by OneMagpie