155
|
1 Thu May 29 23:11:21 1997 davidh
|
|
2
|
|
3 * Synced with 20.3b2.
|
|
4
|
|
5 * Removed nt/README.src, nt/src.m.windowsnt.h nt/src.s.windowsnt.h.
|
|
6
|
|
7 * Updated README from marcpa.
|
|
8
|
|
9 * Added example Win32.cf and site.def files for X.
|
|
10
|
|
11 * Added sed.exe into nt/.
|
|
12
|
|
13 * Modified nt/xemacs.mak to pass correct flags to lwlib compile.
|
|
14
|
|
15 * Added extra .elc files to ensure make-docfile gets all symbols.
|
|
16
|
|
17 * Modified balloon_help.c to compile (#if'd max definition)
|
|
18
|
|
19 * Modified src/event-Xt.c so as not to add signal_event_pipe to
|
|
20 be selected on - this is a hack until I can work out a better
|
|
21 way. Thanks to Ben Wing for help on this.
|
|
22
|
118
|
23 Thu Mar 27 20:56:21 1997 marcpa (marcpa at MARCPA)
|
|
24
|
|
25 * Synced with 20.1b9.
|
|
26
|
|
27 Sun Mar 16 00:32:15 1997 marcpa (marcpa at MARCPA)
|
|
28
|
|
29 * lisp/eterm/README.term is truncated: is it just me (because
|
|
30 I'm on NT) or everyone else sees this ?
|
|
31 Answer: it is because it contains a ^Z embedded in it, therefore
|
|
32 it needs to be inserted in binary mode in CVS.
|
|
33
|
|
34 Thu Mar 13 00:19:25 1997 marcpa (marcpa at MARCPA)
|
|
35
|
|
36 * At end of compilation, there are some unresolved symbols:
|
|
37
|
|
38 link.exe @C:\TEMP\nma00115.
|
|
39 sysdep.obj : error LNK2001: unresolved external symbol _vfork
|
|
40 ../src/temacs.exe : warning LNK4088: image being generated due to /FORCE
|
|
41 option; image may not run
|
|
42
|
|
43
|
|
44 Wed Mar 12 23:18:53 1997 marcpa (marcpa at MARCPA)
|
|
45
|
|
46 * Need to copy the nt/inc directory David originally submitted or
|
|
47 NT code won't compile.
|
|
48
|
|
49 * Need to copy nt/{config.h,paths.h,ad2c.sed,xemacs.mak} in src.
|
|
50
|
|
51 * Had to modify XEmacs sources here and there : see the diffs
|
|
52 between NT_FIRST_COMPILE and V20_1_beta9.
|
|
53
|
|
54 * Needed to patch X11R6.3 sources: (include/x11/Xmd.h:155) BOOL is
|
|
55 already defined by Windows and is a long, while X wants it to be
|
|
56 an unsigned char.
|
|
57
|
|
58 --- Xmd.h~ Thu Jun 08 23:20:40 1995
|
|
59 +++ Xmd.h Sun Mar 16 13:09:10 1997
|
|
60 @@ -150,8 +150,9 @@
|
|
61 typedef CARD16 BITS16;
|
|
62 typedef CARD8 BYTE;
|
|
63
|
|
64 +#ifndef WIN32
|
|
65 typedef CARD8 BOOL;
|
|
66 -
|
|
67 +#endif
|
|
68
|
|
69 * cpp.exe not used: cl.exe from VC++4.2 seems to handle everything
|
|
70 properly.
|
|
71
|
|
72 NOTES:
|
|
73
|
|
74 Compilation with nmake -f xemacs.mak.
|
|
75
|
|
76 Using X11R6.3 for NT.
|
|
77
|
|
78 Work started with 20.1b2.
|
|
79
|
|
80 Local Variables:
|
|
81 mode: change-log
|
|
82 End:
|