From 24c8105bc75e91ee6baff659a241047ef0f360ae Mon Sep 17 00:00:00 2001 From: Greg Stein Date: Sat, 15 Jul 2000 01:07:42 +0000 Subject: [PATCH] ap_dso_init() isn't needed. if/when a platform needs it, then ap_initialize() can be used to init DSO support. or set up a lazy initialization for it. solves the questions, "when do I call it? can I call it more than once?" Submitted by: Ben Collins-Sussman git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@85849 13f79535-47bb-0310-9956-ffa450edef68 --- modules/mappers/mod_so.c | 3 --- 1 file changed, 3 deletions(-) diff --git a/modules/mappers/mod_so.c b/modules/mappers/mod_so.c index fa7c46035f..90f01db345 100644 --- a/modules/mappers/mod_so.c +++ b/modules/mappers/mod_so.c @@ -158,9 +158,6 @@ static void *so_sconf_create(ap_pool_t *p, server_rec *s) soc = (so_server_conf *)ap_pcalloc(p, sizeof(so_server_conf)); soc->loaded_modules = ap_make_array(p, DYNAMIC_MODULE_LIMIT, sizeof(moduleinfo)); -#ifndef NO_DLOPEN - ap_dso_init(); -#endif return (void *)soc; } -- 2.40.0