plugin resource build workaround
several of the plugins in their resource file (*.rc) include afxres.h which (at least for my installations) does not exist or at least not in the default include path for MSVC 7 standard nor MinGW.
Locally I change
#include "afxres.h"
to
#ifndef _INC_WINDOWS
#define _INC_WINDOWS
#include <winresrc.h>
#endif
which seems to work for all my tested compilers. Would it be possible to do this in the NSIS cvs sources or is there other uses of afxres.h that I'm overlooking?
Thanks,
Jeremy