Hello, Kurt Roeckx, on Sat 02 Jul 2016 15:03:32 +0200, wrote: > 1:error:25066067:DSO support routines:dlfcn_load:could not load the shared > library:crypto/dso/dso_dlfcn.c:111:filename(.././engines/ossltest): > .././engines/ossltest: cannot open shared object file: No such file or > directory
.././engines/ossltest doesn't exist, but ossltest.so does. It looks like that openssl just doesn't know that GNU/Hurd uses the .so suffix for DSO: crypto/include/internal/dso_conf.h # define DSO_EXTENSION "" it should be .so configdata.pm dso_extension => "", shared_extension => "", shared_extension_simple => "", they should be .so I don't know where in openssl's configuration script it should be fixed, but upstream can probably help. Samuel