Compile on 32-bits host

Questions about Wine on Linux
Locked
16bituser
Level 2
Level 2
Posts: 11
Joined: Wed Feb 02, 2022 12:02 pm

Compile on 32-bits host

Post by 16bituser »

Since commit 25f205d9ac4b6c1ac36d3cbdf03b64bd6b15762f (Date: Fri Nov 25 19:10:03 2022 +0200) I can't compile Wine any more. I get :

../wine-source/dlls/mshtml/nsio.c: In function ‘async_open’:
../wine-source/dlls/mshtml/nsio.c:1018:82: error: ‘LOAD_CMD_RELOAD’ undeclared (first use in this function)
async_start_doc_binding(window, window->pending_window, (load_type & LOAD_CMD_RELOAD) ? BINDING_REFRESH : BINDING_NAVIGATED);
^~~~~~~~~~~~~~~
../wine-source/dlls/mshtml/nsio.c:1018:82: note: each undeclared identifier is reported only once for each function it appears in
../wine-source/dlls/mshtml/nsio.c: In function ‘nsChannel_AsyncOpen’:
../wine-source/dlls/mshtml/nsio.c:1045:24: error: ‘LOAD_CMD_NORMAL’ undeclared (first use in this function); did you mean ‘CMF_NORMAL’?
UINT32 load_type = LOAD_CMD_NORMAL;
^~~~~~~~~~~~~~~
CMF_NORMAL
Makefile:115855: recipe for target 'dlls/mshtml/nsio.o' failed
make: *** [dlls/mshtml/nsio.o] Error 1

Host is Ubuntu 18.04.6 LTS i686. Should this still work?
16bituser
Level 2
Level 2
Posts: 11
Joined: Wed Feb 02, 2022 12:02 pm

Re: Compile on 32-bits host

Post by 16bituser »

I messed up. A clean checkout resolved this problem.
Locked