that are loaded in memory. In the case of Apache 1.3, this call is blocking indefinitely. As a work around, this call is bypassed for Apache 1.3 build on NetWare only. This means that none of the loaded PHP extensions are unloaded. They will have to be manually unloaded before re-loading the Apache 1.3 again.
}
#if HAVE_LIBDL
+ #ifdef NETWARE
+ #ifdef APACHE_2_BUILD
if (module->handle) {
dlclose(module->handle);
}
+ #endif
+ #else
+ if (module->handle) {
+ dlclose(module->handle);
+ }
+ #endif
#endif
}