In a team environment on a Linux system I just pulled the latest code base from the head of the tree, and some stuff that's been working for a long time has stopped working. We have dynamic shared objects, and the APR library call faills:
err = apr_dso_load(&mod->handle, mod->path, mod->pool);
if (err ) {
fprintf (stderr, "Failed %d\n", err);
}
I get error 20019, and have no idea how to make use of this error. I can't call apr_dso_error
because I have no valid handle. The file is there, readable and as best I can tell is correct.
TIA.