Attached is a patch file for fixing Win32/DevStudio build on 1.4.4.
It now automatically copies the config.h_win32vc7 file to the include directory when the build is started.
The config.h_win32vc7 has been updated to it actually compiles.
It also fixes problems with the ekt.c file to do with doing arithmetic on void pointers. I have no idea how even GNU allows that!
Patch file for fixing Win32/DevStudio build on 1.4.4
I believe all these patches have been independently re-invented, and are in CVS now. Let me know if I've overlooked something.
Thank you for your response. Yes some of the issues seem to have been dealt with.
However, the config.h_win32vc7 still has a problem. Can you change:
#ifdef (_MSC_VER >= 1400)
to
#if (_MSC_VER >= 1400)
Thank you again!