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