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