Hi > cl /D"WIN32" /D"VERSION=\"3.6.0b5\"" /D"_MBCS" /W3 /EHsc /O2 /Ob1 > /DTHREAD_SAFE=1 -I"D:/Tcl/include" -I"D:/Tcl/Apache/include" -UUSE_TCL_STUBS > -c ../generic/interpool.c /Fointerpool.obj
[...] > interpool.c > d:\tcl\websh-3.6.0b5\src\generic\mod_websh.h(23) : fatal error C1083: Cannot > open include file: 'httpd.h': No such file or directory Obviously the compiler doesn't find httpd.h. Try to locate your httpd.h file and then configure your Makefile to point to the *parent* dir of the include directory. For me the following worked w/o any tweak: - Install Apache 2.2.14 to "C:\Program Files\Apache Software Foundation\Apache2.2.14\" (make sure to also install the header files) - Install the latest ActiveTcl to "C:\Program Files\ActiveTcl\8.6.0\" - Unpack websh-3.6.0b5, cd to src\win and run nmake TCL_PREFIX="C:/Program Files/ActiveTcl/8.6.0" TCL_VERSION=86 HTTPD_PREFIX="C:/Program Files/Apache Software Foundation/Apache2.2.14" clean all test apachetest -> That's it hth Ronnie -- Ronnie Brunner | [email protected] phone +41-44-247 79 79 | fax +41-44-247 70 75 Netcetera AG | 8040 Zürich | Switzerland | http://netcetera.ch --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
