From: Bradley Nicholes Date: Fri, 8 Apr 2005 16:12:43 +0000 (+0000) Subject: Make the changes in the NetWare build for the image_map module rename X-Git-Tag: 2.1.5~224 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=caaf2823a3a037ec39d5ecb84c8ced3f11d83a2e;p=apache Make the changes in the NetWare build for the image_map module rename git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@160560 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/NWGNUmakefile b/NWGNUmakefile index 28e805327e..508dac2cfc 100644 --- a/NWGNUmakefile +++ b/NWGNUmakefile @@ -215,7 +215,7 @@ FILES_nlm_objs = \ $(OBJDIR)/mod_cgi.o \ $(OBJDIR)/mod_dir.o \ $(OBJDIR)/mod_env.o \ - $(OBJDIR)/mod_imap.o \ + $(OBJDIR)/mod_imagemap.o \ $(OBJDIR)/mod_include.o \ $(OBJDIR)/mod_log_config.o \ $(OBJDIR)/mod_mime.o \ diff --git a/os/netware/modules.c b/os/netware/modules.c index bcd0f8d161..0ba8c66bbc 100644 --- a/os/netware/modules.c +++ b/os/netware/modules.c @@ -39,7 +39,7 @@ extern module alias_module; extern module env_module; extern module log_config_module; extern module asis_module; -extern module imap_module; +extern module imagemap_module; extern module actions_module; extern module setenvif_module; extern module nwssl_module; @@ -62,7 +62,7 @@ module *ap_prelinked_modules[] = { &env_module, &log_config_module, &asis_module, - &imap_module, + &imagemap_module, &actions_module, &setenvif_module, &nwssl_module, @@ -87,7 +87,7 @@ ap_module_symbol_t ap_prelinked_module_symbols[] = { {"env_module", &env_module}, {"log_config_module", &log_config_module}, {"asis_module", &asis_module}, - {"imap_module", &imap_module}, + {"imagemap_module", &imagemap_module}, {"actions_module", &actions_module}, {"setenvif_module", &setenvif_module}, {"nwssl_module", &nwssl_module}, @@ -112,7 +112,7 @@ module *ap_preloaded_modules[] = { &env_module, &log_config_module, &asis_module, - &imap_module, + &imagemap_module, &actions_module, &setenvif_module, &nwssl_module,