The setup.h will be copied to a build-specific directory (so you can
have different settings for different kinds of builds if desired.) For
the unicode debug DLL build it should end up in
%WXDIR%\lib\vc_dll\mswud, but in your command line above it is adding a
-I flag for the hybrid build: %WXDIR%\lib\vc_dll\mswuh, so the cokmpiler
isn't finding it. You'll need to add a --debug flag to the setup.py
command line.
I tried the '--debug' flag but it wasn't recognized (although it seemed to
pick it up fine for the build_ext step previously.) Here's my attempt:
C:\build_dir\eanta\wxPython-src-2.6.2.1\wxPython>..\..\..\Python-2.4.2\PCbui
ld\python.exe setup.py install --debug UNICODE=1 MONOLITHIC=1
Preparing CORE...
Preparing GLCANVAS...
Preparing STC...
Preparing ACTIVEX...
Preparing GIZMOS...
Preparing ANIMATE...
usage: setup.py [global_opts] cmd1 [cmd1_opts] [cmd2 [cmd2_opts] ...]
or: setup.py --help [cmd1 cmd2 ...]
or: setup.py --help-commands
or: setup.py cmd --help
error: option --debug not recognized
C:\build_dir\eanta\wxPython-src-2.6.2.1\wxPython>
-David