W dniu 20 czerwca 2010 23:21 użytkownik Kris De Gussem <kris.degussem@...400...> napisał:
There was some crap at the end of the previous mail (from the time I did not rename the mingw path). I had one compilation error:
The error is a const mismatch. Try replacing line 736 in src/extension/internal/emf-win32-inout.cpp:
myEnhMetaFileProc(HDC /*hDC*/, HANDLETABLE * /*lpHTable*/, ENHMETARECORD *lpEMFR, int /*nObj*/, LPARAM lpData)
with:
myEnhMetaFileProc(HDC /*hDC*/, HANDLETABLE * /*lpHTable*/, ENHMETARECORD const *lpEMFR, int /*nObj*/, LPARAM lpData)
Uwe: buildtool builds on a best effort basis, trying to compile everything it can before stopping. To see the errors, you need to run buildtool again; it will only try to rebuild the files that had errors. You can capture this log to a file by running buildtool like this: buildtool 2> log.txt
Regards, Krzysztof