Hi!
I have compiled XEmacs (version 21.2; Aug 1998) with M$ Visual C++ 6.0.
Here is list of fixes that I have done.
1. nt\xemacs.mak
1.1. add glyphs-widget.c to DOC_SRC3 and glyphs-widget.obj to
TEMACS_OBJS
1.2. add gui-msw.c to DOC_SRC7 and gui-msw.obj to TEMACS_MSW_OBJS
1.3. change ^" to " on line 438 and 440 (in commands for Creation of
Installation.el)
2. nt\tiff.mak
2.1. add tif_luv.obj to LIB32_OBJS (I used tiff-v3.4beta037)
3. event-msw.c
3.1. change line 1675 from
MSG msg = { hwnd, message, wParam, lParam, GetMessageTime(), pnt
};
to
MSG msg;
msg.hwnd = hwnd;
msg.message = message;
msg.wParam = wParam;
msg.lParam = lParam;
msg.time = GetMessageTime();
msg.pt = pnt;
3.2. add ; after default: on line 2160
4. glyphs-msw.c
4.1. add ; after fname=f on line 1180
After this changes XEmacs was successfully compiled and run.
That's all, folks! :-)
Show replies by date