]> granicus.if.org Git - apache/commitdiff
Add watchdog module to win32 build.
authorMladen Turk <mturk@apache.org>
Tue, 17 Feb 2009 17:51:17 +0000 (17:51 +0000)
committerMladen Turk <mturk@apache.org>
Tue, 17 Feb 2009 17:51:17 +0000 (17:51 +0000)
Since it can only operate as static module reference it inside modules.c

git-svn-id: https://svn.apache.org/repos/asf/httpd/httpd/trunk@745172 13f79535-47bb-0310-9956-ffa450edef68

Makefile.win
libhttpd.dsp
os/win32/modules.c

index 5adb2221d229016a33400c0e710636e32ae36158..6e02c81992939ebf65af15c10e737fffa9c5052f 100644 (file)
@@ -834,6 +834,7 @@ BEGIN {
                modules\ssl\mod_ssl.h \
                modules\mappers\mod_so.h \
                modules\mappers\mod_rewrite.h \
+               modules\mappers\mod_watchdog.h \
                modules\cache\mod_cache.h ) do \
            @copy %f "$(INSTDIR)\include" < .y > nul
        copy srclib\apr\Lib$(SHORT)\apr-1.lib           "$(INSTDIR)\lib" <.y
index 8dd7788272e8154113d647868e3d20df4c293db0..3c902378d3a07e9482b2e36703979d32335dc620 100644 (file)
@@ -423,6 +423,10 @@ SOURCE=.\modules\mappers\mod_so.c
 # End Source File
 # Begin Source File
 
+SOURCE=.\modules\mappers\mod_watchdog.c
+# End Source File
+# Begin Source File
+
 SOURCE=.\modules\arch\win32\mod_win32.c
 # End Source File
 # Begin Source File
index 252421f78ae413e366a9fb8f51a8be91eaa4d4e5..fb34b3db43cdcced77af2e3877c3cbfb3d1a6754 100644 (file)
@@ -27,6 +27,7 @@ extern module win32_module;
 extern module mpm_winnt_module;
 extern module http_module;
 extern module so_module;
+extern module watchdog_module;
 
 AP_DECLARE_DATA module *ap_prelinked_modules[] = {
   &core_module,
@@ -34,6 +35,7 @@ AP_DECLARE_DATA module *ap_prelinked_modules[] = {
   &mpm_winnt_module,
   &http_module,
   &so_module,
+  &watchdog_module,
   NULL
 };
 
@@ -43,6 +45,7 @@ ap_module_symbol_t ap_prelinked_module_symbols[] = {
   {"mpm_winnt_module", &mpm_winnt_module},
   {"http_module", &http_module},
   {"so_module", &so_module},
+  {"watchdog_module", &watchdog_module},
   {NULL, NULL}
 };
 
@@ -52,5 +55,6 @@ AP_DECLARE_DATA module *ap_preloaded_modules[] = {
   &mpm_winnt_module,
   &http_module,
   &so_module,
+  &watchdog_module,
   NULL
 };