On Cygwin we have shared module DLLs named mod_foo.dll. Unfortunatly
the current Makefile.tmpl does not seem to be DLL safe and we result
after installation with make install for httpd.conf with:

LoadModule mod_foo.dll
...

AddModule mod_foo.dll
...               ^^^

The attached patch fixes that problem and substitutes the .dll
extensions accordingly for the installation and pre-configuration
process.

Stipe

[EMAIL PROTECTED]
-------------------------------------------------------------------
Wapme Systems AG

M�nsterstr. 248
40470 D�sseldorf

Tel: +49-211-74845-0
Fax: +49-211-74845-299

E-Mail: [EMAIL PROTECTED]
Internet: http://www.wapme-systems.de
-------------------------------------------------------------------
wapme.net - wherever you are
diff -u apache-1.3/Makefile.tmpl apache-1.3-cygwin/Makefile.tmpl
--- apache-1.3/Makefile.tmpl    Sat Oct  6 22:01:09 2001
+++ apache-1.3-cygwin/Makefile.tmpl     Tue Jan  1 15:01:00 2002
@@ -341,7 +341,7 @@
                sed     -e 's:SharedModule:AddModule:' \
                        -e 's:modules/[^/]*/::' \
                        -e 's:[         ]lib: mod_:' \
-                       -e 's:\.[soam].*$$:.c:' >>$(SRC)/.apaci.install.conf; \
+                       -e 's:\.[soamd].*$$:.c:' >>$(SRC)/.apaci.install.conf; \
        fi
        @echo "<=== [programs]"
 

Reply via email to