118
|
1 Thu Mar 27 20:56:21 1997 marcpa (marcpa at MARCPA)
|
|
2
|
|
3 * Synced with 20.1b9.
|
|
4
|
|
5 Sun Mar 16 00:32:15 1997 marcpa (marcpa at MARCPA)
|
|
6
|
|
7 * lisp/eterm/README.term is truncated: is it just me (because
|
|
8 I'm on NT) or everyone else sees this ?
|
|
9 Answer: it is because it contains a ^Z embedded in it, therefore
|
|
10 it needs to be inserted in binary mode in CVS.
|
|
11
|
|
12 Thu Mar 13 00:19:25 1997 marcpa (marcpa at MARCPA)
|
|
13
|
|
14 * At end of compilation, there are some unresolved symbols:
|
|
15
|
|
16 link.exe @C:\TEMP\nma00115.
|
|
17 sysdep.obj : error LNK2001: unresolved external symbol _vfork
|
|
18 ../src/temacs.exe : warning LNK4088: image being generated due to /FORCE
|
|
19 option; image may not run
|
|
20
|
|
21
|
|
22 Wed Mar 12 23:18:53 1997 marcpa (marcpa at MARCPA)
|
|
23
|
|
24 * Need to copy the nt/inc directory David originally submitted or
|
|
25 NT code won't compile.
|
|
26
|
|
27 * Need to copy nt/{config.h,paths.h,ad2c.sed,xemacs.mak} in src.
|
|
28
|
|
29 * Had to modify XEmacs sources here and there : see the diffs
|
|
30 between NT_FIRST_COMPILE and V20_1_beta9.
|
|
31
|
|
32 * Needed to patch X11R6.3 sources: (include/x11/Xmd.h:155) BOOL is
|
|
33 already defined by Windows and is a long, while X wants it to be
|
|
34 an unsigned char.
|
|
35
|
|
36 --- Xmd.h~ Thu Jun 08 23:20:40 1995
|
|
37 +++ Xmd.h Sun Mar 16 13:09:10 1997
|
|
38 @@ -150,8 +150,9 @@
|
|
39 typedef CARD16 BITS16;
|
|
40 typedef CARD8 BYTE;
|
|
41
|
|
42 +#ifndef WIN32
|
|
43 typedef CARD8 BOOL;
|
|
44 -
|
|
45 +#endif
|
|
46
|
|
47 * cpp.exe not used: cl.exe from VC++4.2 seems to handle everything
|
|
48 properly.
|
|
49
|
|
50 NOTES:
|
|
51
|
|
52 Compilation with nmake -f xemacs.mak.
|
|
53
|
|
54 Using X11R6.3 for NT.
|
|
55
|
|
56 Work started with 20.1b2.
|
|
57
|
|
58 Local Variables:
|
|
59 mode: change-log
|
|
60 End:
|